aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-09-08 21:39:59 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-09-08 21:39:59 +0000
commitfd5f3b9e11d9d56a0f5de7bc62d6250f78ca1c82 (patch)
treef309e53d8b1d12ae5f32297f97b31102ef4591a3
parentbeautified verifydetail-dialog and create doxygen-docu for private methods (diff)
downloadgpg4usb-fd5f3b9e11d9d56a0f5de7bc62d6250f78ca1c82.tar.gz
gpg4usb-fd5f3b9e11d9d56a0f5de7bc62d6250f78ca1c82.zip
more docu in gpgwin.cpp and set slots in gpgwin from public to private
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@529 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r--gpgwin.h31
1 files changed, 14 insertions, 17 deletions
diff --git a/gpgwin.h b/gpgwin.h
index 859d378..8d96888 100644
--- a/gpgwin.h
+++ b/gpgwin.h
@@ -80,7 +80,7 @@ protected:
*/
void closeEvent(QCloseEvent *event);
-public slots:
+private slots:
/**
* @details encrypt the text of currently active textedit-page
* with the currently checked keys
@@ -199,30 +199,27 @@ private:
void createMenus();
/**
- * @details Create toolbars (edit,crypt and key)
+ * @details Create edit-, crypt- and key-toolbars.
*/
void createToolBars();
/**
- * @brief
- *
+ * @details Create statusbar of mainwindow.
*/
void createStatusBar();
+
/**
- * @brief
- *
+ * @details Create keylist- and attachment-dockwindows.
*/
void createDockWindows();
/**
- * @brief
- *
+ * @details Load settings from ini-file.
*/
void restoreSettings();
/**
- * @brief
- *
+ * @details Save settings to ini-file.
*/
void saveSettings();
@@ -251,13 +248,13 @@ private:
*/
int isSigned(const QByteArray &text);
- TextEdit *edit; /**< TODO */
- QMenu *fileMenu; /**< TODO */
- QMenu *editMenu; /**< TODO */
- QMenu *cryptMenu; /**< TODO */
- QMenu *helpMenu; /**< TODO */
- QMenu *keyMenu; /**< TODO */
- QMenu *viewMenu; /**< TODO */
+ TextEdit *edit; /** TODO */
+ QMenu *fileMenu; /** Submenu for file-operations*/
+ QMenu *editMenu; /** Submenu for text-operations*/
+ QMenu *cryptMenu; /** Submenu for crypt-operations */
+ QMenu *helpMenu; /** Submenu for help-operations */
+ QMenu *keyMenu; /** Submenu for key-operations */
+ QMenu *viewMenu; /** View submenu */
QMenu *importKeyMenu; /**< TODO */
QToolBar *cryptToolBar; /**< TODO */
QToolBar *editToolBar; /**< TODO */