aboutsummaryrefslogtreecommitdiffstats
path: root/editorpage.h
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-07-11 00:59:10 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-07-11 00:59:10 +0000
commita4f8dff6faaec18ffc43ce47f254e219a336a034 (patch)
treeb5835929fd142b4b800ea9d43ceccf17d880826e /editorpage.h
parentremoved margins in attachment-table (diff)
downloadgpg4usb-a4f8dff6faaec18ffc43ce47f254e219a336a034.tar.gz
gpg4usb-a4f8dff6faaec18ffc43ce47f254e219a336a034.zip
added Qlabel at the buttom of textedit for verify
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@491 34ebc366-c3a9-4b3c-9f84-69acf7962910
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();
};