aboutsummaryrefslogtreecommitdiffstats
path: root/editorpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'editorpage.h')
-rw-r--r--editorpage.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/editorpage.h b/editorpage.h
index cd8ca19..e49a58c 100644
--- a/editorpage.h
+++ b/editorpage.h
@@ -23,8 +23,9 @@
#define EDITORPAGE_H
#include <QPlainTextEdit>
-class QHBoxLayout;
+class QVBoxLayout;
class QString;
+class QLabel;
class EditorPage : public QWidget
{
@@ -35,11 +36,13 @@ public:
const QString& getFilePath() const;
void setFilePath(const QString &filePath);
QPlainTextEdit *getTextPage();
+ void showVerifyLabel(bool showLabel);
private:
QPlainTextEdit *textPage;
- QHBoxLayout *mainLayout;
+ QVBoxLayout *mainLayout;
QString fullFilePath;
+ QLabel *verifyLabel;
void setSaveState();
};