diff options
Diffstat (limited to 'editorpage.h')
-rw-r--r-- | editorpage.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editorpage.h b/editorpage.h index e49a58c..9f8144c 100644 --- a/editorpage.h +++ b/editorpage.h @@ -24,6 +24,7 @@ #include <QPlainTextEdit> class QVBoxLayout; +class QHBoxLayout; class QString; class QLabel; @@ -37,10 +38,14 @@ public: void setFilePath(const QString &filePath); QPlainTextEdit *getTextPage(); void showVerifyLabel(bool showLabel); + void showNotificationWidget(QWidget *widget); private: QPlainTextEdit *textPage; QVBoxLayout *mainLayout; + QHBoxLayout *notificationWidgetLayout; + QWidget *notificationWidget; + QMenu *verifyMenu; QString fullFilePath; QLabel *verifyLabel; void setSaveState(); |