Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lintest/fb2edit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/fb2main.hpp')
-rw-r--r--source/fb2main.hpp123
1 files changed, 123 insertions, 0 deletions
diff --git a/source/fb2main.hpp b/source/fb2main.hpp
new file mode 100644
index 0000000..01f1d0c
--- /dev/null
+++ b/source/fb2main.hpp
@@ -0,0 +1,123 @@
+#ifndef FB2MAIN_H
+#define FB2MAIN_H
+
+#include <QMainWindow>
+
+QT_BEGIN_NAMESPACE
+class QAction;
+class QDockWidget;
+class QFile;
+class QMenu;
+class QModelIndex;
+class QTextEdit;
+class QTreeView;
+class QWebInspector;
+QT_END_NAMESPACE
+
+class Fb2Scintilla;
+class Fb2WebView;
+
+class Fb2MainWindow : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ enum ViewMode { FB2, XML };
+ explicit Fb2MainWindow();
+ explicit Fb2MainWindow(const QString &filename, ViewMode mode = FB2);
+
+protected:
+ void closeEvent(QCloseEvent *event);
+
+public slots:
+ void logMessage(const QString &message);
+
+private slots:
+ void fileNew();
+ void fileOpen();
+ bool fileSave();
+ bool fileSaveAs();
+
+ void about();
+ void documentWasModified();
+ void checkScintillaUndo();
+ void treeActivated(const QModelIndex &index);
+ void treeDestroyed();
+ void logDestroyed();
+ void logShowed();
+ void viewCode();
+ void viewText();
+ void viewHead();
+ void viewTree();
+
+ void clipboardDataChanged();
+ void loadFinished(bool ok);
+ void selectionChanged();
+ void undoChanged();
+ void redoChanged();
+ void showInspector();
+ void zoomOrig();
+ void openSettings();
+
+private:
+ bool loadXML(const QString &filename);
+ QIcon icon(const QString &name);
+
+private:
+ void init();
+ void createHead();
+ void createTree();
+ void createActions();
+ void createStatusBar();
+ void readSettings();
+ void writeSettings();
+ bool maybeSave();
+ bool saveFile(const QString &fileName);
+ void setCurrentFile(const QString &fileName = QString());
+ Fb2MainWindow *findFb2MainWindow(const QString &fileName);
+
+ Fb2WebView *textEdit;
+ QWebInspector *inspector;
+ QTreeView *headTree;
+ QTextEdit *noteEdit;
+ QTextEdit *messageEdit;
+ QDockWidget *dockTree;
+ Fb2Scintilla *codeEdit;
+ QTreeView *treeView;
+ QString curFile;
+ bool isUntitled;
+
+ QToolBar *toolEdit;
+
+ QMenu
+ *menuEdit,
+ *menuText,
+ *menuView;
+
+ QAction
+ *actionBack,
+ *actionForward,
+ *actionUndo,
+ *actionRedo,
+ *actionCut,
+ *actionCopy,
+ *actionPaste,
+ *actionSelect,
+ *actionFind,
+ *actionReplace,
+ *actionInsert,
+ *actionDelete,
+ *actionImage,
+ *actionTextBold,
+ *actionTextItalic,
+ *actionTextStrike,
+ *actionTextSub,
+ *actionTextSup,
+ *actionInspect,
+ *actionZoomIn,
+ *actionZoomOut,
+ *actionZoomOrig
+ ;
+};
+
+#endif // FB2MAIN_H