/* * 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 . */ #ifndef EDITORLIST_H #define EDITORLIST_H #include #include #include #include "utils.h" class Project; 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, Project *pProject, 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); void saveAll(); bool saveAllForProject(); bool projectEditorsModified(); void clearProjectEditorsModified(); bool closeAll(bool force = false); void forceCloseEditor(Editor* editor); Editor* getOpenedEditorByFilename(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); void doRemoveEditor(Editor* e); 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