aboutsummaryrefslogtreecommitdiffstats
path: root/verifynotification.h
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-09-14 20:19:53 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2011-09-14 20:19:53 +0000
commit141e99156c4370bb5ce19b61e070d226fa90ab8e (patch)
tree42090cf2dc87649be5d1b94ddbb753c8f4c9a599 /verifynotification.h
parentchanged verifydetailsdialog, updated todo (diff)
downloadgpg4usb-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 'verifynotification.h')
-rw-r--r--verifynotification.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/verifynotification.h b/verifynotification.h
index 7b79a0d..77e570f 100644
--- a/verifynotification.h
+++ b/verifynotification.h
@@ -19,8 +19,8 @@
* MA 02110-1301, USA.
*/
-#ifndef VERIFYNOTIFICATION_H
-#define VERIFYNOTIFICATION_H
+#ifndef __VERIFYNOTIFICATION_H__
+#define __VERIFYNOTIFICATION_H__
#include "keyserverimportdialog.h"
#include "context.h"
@@ -28,14 +28,15 @@
#include <gpgme.h>
#include <QWidget>
+QT_BEGIN_NAMESPACE
class QLabel;
class QHBoxLayout;
class QMenu;
class QPushButton;
+QT_END_NAMESPACE
/**
* @details Enumeration for the status of Verifylabel
- *
*/
typedef enum
{
@@ -47,7 +48,6 @@ typedef enum
/**
* @brief Class for handling the verifylabel shown at buttom of a textedit-page
- *
*/
class VerifyNotification : public QWidget
{
@@ -105,11 +105,11 @@ private:
QPushButton *detailsButton; /** Button shown in verifynotification */
QLabel *verifyLabel; /** Label holding the text shown in verifyNotification */
GpgME::Context *mCtx; /** GpgME Context */
- KeyList *mKeyList;
- gpgme_signature_t mSignature;
+ KeyList *mKeyList; /** Table holding the keys */
+ gpgme_signature_t mSignature; /** List holding the signatures of text */
QHBoxLayout *notificationWidgetLayout; /** Layout for verify-notification */
QVBoxLayout *verifyDetailListLayout; /** Layout for verify-detail-dialog */
QVector<QString> verifyDetailStringVector; /** Vector containing the text for labels in verifydetaildialog */
QVector<verify_label_status> verifyDetailStatusVector; /** Vector containing the status for labels in verifydetaildialog */
};
-#endif // VERIFYNOTIFICATION_H
+#endif // __VERIFYNOTIFICATION_H__