aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/VerifyNotification.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-06-04 20:37:57 +0000
committerSaturneric <[email protected]>2021-06-04 20:37:57 +0000
commit9581b6799502f88acaccb14407bb1b7143c0ef71 (patch)
tree26b1a7bceeac20abbd47543291c6400bcc2890bc /include/ui/VerifyNotification.h
parentAdd an operation to change the expiration date of the subkey. (diff)
downloadGpgFrontend-9581b6799502f88acaccb14407bb1b7143c0ef71.tar.gz
GpgFrontend-9581b6799502f88acaccb14407bb1b7143c0ef71.zip
Update the verification function.
Make the format of the generated ciphertext more beautiful. Adjust the width of the key list on the homepage. Add fingerprint display of subkey. Fix the compatibility issue of getKeyByFpr interface subkey. Improve the comprehensiveness of information processing for verification results. Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to '')
-rw-r--r--include/ui/VerifyNotification.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ui/VerifyNotification.h b/include/ui/VerifyNotification.h
index 044e68d4..bf700c1a 100644
--- a/include/ui/VerifyNotification.h
+++ b/include/ui/VerifyNotification.h
@@ -46,7 +46,7 @@ typedef enum {
VERIFY_ERROR_OK = 0,
VERIFY_ERROR_WARN = 1,
VERIFY_ERROR_CRITICAL = 2,
- VERIFY_ERROR_NEUTRAL [[maybe_unused]] = 3,
+ VERIFY_ERROR_NEUTRAL = 3,
} verify_label_status;
/**
@@ -110,6 +110,8 @@ private:
[[maybe_unused]] QVector<QString> verifyDetailStringVector; /** Vector containing the text for labels in verifydetaildialog */
[[maybe_unused]] QVector<verify_label_status> verifyDetailStatusVector; /** Vector containing the status for labels in verifydetaildialog */
+ bool printSigner(QTextStream &stream, gpgme_signature_t sign);
+
};
#endif // __VERIFYNOTIFICATION_H__