aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/keypair_details/KeyNewUIDDialog.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2022-01-22 15:42:43 +0000
committerSaturneric <[email protected]>2022-01-22 15:42:43 +0000
commit92da87923ca3ceee7a63143cddd6b88d1fc6b2fb (patch)
tree96f29ee61701ade3d89728861b0cc646a0396633 /src/ui/keypair_details/KeyNewUIDDialog.h
parent<doc, refactor>(ui): Tidy up part of the code of ui and related parts (diff)
downloadGpgFrontend-92da87923ca3ceee7a63143cddd6b88d1fc6b2fb.tar.gz
GpgFrontend-92da87923ca3ceee7a63143cddd6b88d1fc6b2fb.zip
<refactor>(ui): tidy up codes and add comments.
1. tidy up keypair_details.
Diffstat (limited to '')
-rw-r--r--src/ui/keypair_details/KeyNewUIDDialog.h41
1 files changed, 31 insertions, 10 deletions
diff --git a/src/ui/keypair_details/KeyNewUIDDialog.h b/src/ui/keypair_details/KeyNewUIDDialog.h
index 2e38a7f4..bc035ff3 100644
--- a/src/ui/keypair_details/KeyNewUIDDialog.h
+++ b/src/ui/keypair_details/KeyNewUIDDialog.h
@@ -33,30 +33,51 @@ class KeyNewUIDDialog : public QDialog {
Q_OBJECT
public:
+ /**
+ * @brief Construct a new Key New U I D Dialog object
+ *
+ * @param key
+ * @param parent
+ */
KeyNewUIDDialog(const KeyId& key, QWidget* parent = nullptr);
signals:
- void signalUIDCreated();
+ /**
+ * @brief
+ *
+ */
+ void SignalUIDCreated();
private slots:
- void slotCreateNewUID();
+ /**
+ * @brief
+ *
+ */
+ void slot_create_new_uid();
private:
- GpgKey mKey;
+ GpgKey m_key_; ///<
- QLineEdit* name{};
- QLineEdit* email{};
- QLineEdit* comment{};
+ QLineEdit* name_{}; ///<
+ QLineEdit* email_{}; ///<
+ QLineEdit* comment_{}; ///<
- QPushButton* createButton{};
+ QPushButton* create_button_{}; ///<
- QStringList errorMessages;
- QLabel* errorLabel{};
+ QStringList error_messages_; ///<
+ QLabel* error_label_{}; ///<
- QRegularExpression re_email{
+ QRegularExpression re_email_{
R"((?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\]))"};
+ /**
+ * @brief
+ *
+ * @param str
+ * @return true
+ * @return false
+ */
bool check_email_address(const QString& str);
};
} // namespace GpgFrontend::UI