diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-08-18 23:37:41 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-08-18 23:37:41 +0000 |
commit | 1c20e7187fa2022da66559a498dd643cd7381c16 (patch) | |
tree | ce0835996a26fb3e8baedc538ea3fe22154f5764 /verifynotification.h | |
parent | add almost unconfigured doxygen conf-file, which outputs qch for qtcreator (diff) | |
download | gpg4usb-1c20e7187fa2022da66559a498dd643cd7381c16.tar.gz gpg4usb-1c20e7187fa2022da66559a498dd643cd7381c16.zip |
changed verifylabellist back to one verifylabel and updated TODO
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@516 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'verifynotification.h')
-rw-r--r-- | verifynotification.h | 35 |
1 files changed, 10 insertions, 25 deletions
diff --git a/verifynotification.h b/verifynotification.h index 2da80bd..289ccbb 100644 --- a/verifynotification.h +++ b/verifynotification.h @@ -26,7 +26,7 @@ public: * Return Values: none * Change on members: none */ - void setVerifyLabel(QString text); + void setVerifyLabel(QString text, QString status); /**************************************************************************************** * Name: showImportAction * Description: show the action in detailsmenu @@ -35,7 +35,6 @@ public: * Change on members: none */ void showImportAction(); - /**************************************************************************************** * Name: hideImportAction * Description: hide the action in detailsmenu @@ -46,41 +45,27 @@ public: void hideImportAction(); /**************************************************************************************** - * Name: addVerifyLabel - * Description: add the Label labeled "text" to verifylabellist - * Parameters: QString containing the text and - * status string (should be "ok","warning", or "critical") + * Name: setVerifyDetailText + * Description: set the text of verify-detail dialog + * Parameters: QString containing the text * Return Values: none - * Change on members: Label is added to verifyList + * Change on members: verifyDetailText changes to text */ - void addVerifyLabel(QString text, QString status); + void setVerifyDetailText(QString text); /**************************************************************************************** * Name: keysNotInList * Description: List holding the keys in signature, which are not in the keylist */ QStringList *keysNotInList; - QWidget *verifyLabelList; - QVBoxLayout *verifyLabelListLayout; + // set text shown in verifydetails dialog + signals: public slots: - /**************************************************************************************** - * Name: importFromKeyserver - * Description: import signaturekey missing in keylist from keyserver - * Parameters: none - * Return Values: none - * Change on members: none - */ + // import missing key from keyserver void importFromKeyserver(); - - /**************************************************************************************** - * Name: showVerifyDetails - * Description: show verify details dialog - * Parameters: none - * Return Values: none - * Change on members: none - */ + // show verify details void showVerifyDetails(); private: |