diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-09-14 20:19:53 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-09-14 20:19:53 +0000 |
commit | 141e99156c4370bb5ce19b61e070d226fa90ab8e (patch) | |
tree | 42090cf2dc87649be5d1b94ddbb753c8f4c9a599 /editorpage.h | |
parent | changed verifydetailsdialog, updated todo (diff) | |
download | gpg4usb-141e99156c4370bb5ce19b61e070d226fa90ab8e.tar.gz gpg4usb-141e99156c4370bb5ce19b61e070d226fa90ab8e.zip |
set modal and parent for key details dialog. left margin for verifynotification. More doxygen
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@532 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'editorpage.h')
-rw-r--r-- | editorpage.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/editorpage.h b/editorpage.h index bea8e07..02ba5ce 100644 --- a/editorpage.h +++ b/editorpage.h @@ -19,16 +19,18 @@ * MA 02110-1301, USA. */ -#ifndef EDITORPAGE_H -#define EDITORPAGE_H +#ifndef __EDITORPAGE_H__ +#define __EDITORPAGE_H__ #include <QPlainTextEdit> #include <QtGui> +QT_BEGIN_NAMESPACE class QVBoxLayout; class QHBoxLayout; class QString; class QLabel; +QT_END_NAMESPACE /** * @brief Class for handling a single tab of tabwidget @@ -40,7 +42,7 @@ class EditorPage : public QWidget public: /** - * @brief + * @details Add layout and add plaintextedit * * @param filePath Path of the file handled in this tab * @param parent Pointer to the parent widget @@ -61,7 +63,6 @@ public: /** * @details Return pointer tp the textedit of the currently activated tab. - * */ QPlainTextEdit *getTextPage(); @@ -88,12 +89,6 @@ private: QMenu *verifyMenu; /** The menu in the notifiaction widget */ QString fullFilePath; /** The path to the file handled in the tab */ QLabel *verifyLabel; /** The label of the verify-notification widget */ - /** - * @details bla - * - */ - void setSaveState(); - }; -#endif // TEXTPAGE_H +#endif // __TEXTPAGE_H__ |