102 lines
2.8 KiB
C++
102 lines
2.8 KiB
C++
/*
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef EDITORLIST_H
|
|
#define EDITORLIST_H
|
|
|
|
#include <QTabWidget>
|
|
#include <QSplitter>
|
|
#include <QWidget>
|
|
#include "utils.h"
|
|
|
|
class Editor;
|
|
class EditorList : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum class LayoutShowType{
|
|
lstLeft,
|
|
lstRight,
|
|
lstBoth
|
|
};
|
|
|
|
explicit EditorList(QTabWidget* leftPageWidget,
|
|
QTabWidget* rightPageWidget,
|
|
QSplitter* splitter,
|
|
QWidget* panel, QObject* parent = nullptr);
|
|
|
|
Editor* newEditor(const QString& filename, const QByteArray& encoding,
|
|
bool inProject, bool newFile,
|
|
QTabWidget* page=nullptr);
|
|
|
|
Editor* getEditor(int index=-1, QTabWidget* tabsWidget=nullptr) const;
|
|
|
|
bool closeEditor(Editor* editor, bool transferFocus=true, bool force=false);
|
|
|
|
bool swapEditor(Editor* editor);
|
|
|
|
bool closeAll(bool force = false);
|
|
|
|
void forceCloseEditor(Editor* editor);
|
|
|
|
Editor* getOpenedEditorByFilename(QString filename);
|
|
|
|
Editor* getEditorByFilename(QString filename);
|
|
|
|
bool getContentFromOpenedEditor(const QString& filename, QStringList& buffer);
|
|
|
|
void getVisibleEditors(Editor*& left, Editor*& right);
|
|
void updateLayout();
|
|
|
|
void beginUpdate();
|
|
void endUpdate();
|
|
void applySettings();
|
|
void applyColorSchemes(const QString& name);
|
|
bool isFileOpened(const QString& name);
|
|
int pageCount();
|
|
void selectNextPage();
|
|
void selectPreviousPage();
|
|
|
|
Editor* operator[](int index);
|
|
|
|
QTabWidget *leftPageWidget() const;
|
|
|
|
QTabWidget *rightPageWidget() const;
|
|
|
|
signals:
|
|
void editorClosed();
|
|
void editorRenamed(const QString& oldFilename, const QString& newFilename, bool firstSave);
|
|
|
|
private:
|
|
QTabWidget* getNewEditorPageControl() const;
|
|
QTabWidget* getFocusedPageControl() const;
|
|
void showLayout(LayoutShowType layout);
|
|
private slots:
|
|
void onEditorRenamed(const QString& oldFilename, const QString& newFilename, bool firstSave);
|
|
private:
|
|
LayoutShowType mLayout;
|
|
QTabWidget *mLeftPageWidget;
|
|
QTabWidget *mRightPageWidget;
|
|
QSplitter *mSplitter;
|
|
QWidget *mPanel;
|
|
int mUpdateCount;
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif // EDITORLIST_H
|