GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
KeygenDialog.h
1 
27 #ifndef __KEYGENDIALOG_H__
28 #define __KEYGENDIALOG_H__
29 
30 #include "core/GpgContext.h"
31 #include "core/GpgGenKeyInfo.h"
32 #include "ui/GpgFrontendUI.h"
33 #include "ui/dialog/GeneralDialog.h"
34 
35 namespace GpgFrontend::UI {
36 
41 class KeyGenDialog : public GeneralDialog {
42  Q_OBJECT
43 
44  public:
52  explicit KeyGenDialog(QWidget* parent = nullptr);
53 
54  signals:
59  void SignalKeyGenerated();
60 
61  private:
67  QGroupBox* create_key_usage_group_box();
68 
74  QGroupBox* create_basic_info_group_box();
75 
80  QRegularExpression re_email_{
81  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])+)\]))"};
82 
87  QStringList error_messages_;
89  std::unique_ptr<GenKeyInfo> gen_key_info_ =
90  std::make_unique<GenKeyInfo>();
91  QDialogButtonBox* button_box_;
92  QLabel* error_label_{};
93  QLineEdit* name_edit_{};
94  QLineEdit* email_edit_{};
95  QLineEdit* comment_edit_{};
96  QLineEdit* passphrase_edit_{};
97  QSpinBox* key_size_spin_box_{};
98  QComboBox* key_type_combo_box_{};
99  QDateTimeEdit* date_edit_{};
100  QCheckBox* expire_check_box_{};
101  QCheckBox* no_pass_phrase_check_box_{};
102  QGroupBox* key_usage_group_box_{};
104  QDateTime max_date_time_;
105  std::vector<QCheckBox*> key_usage_check_boxes_;
106 
111  void generate_key_dialog();
112 
116  void refresh_widgets_state();
117 
122  void set_signal_slot();
123 
131  bool check_email_address(const QString& str);
132 
133  private slots:
134 
140 
145  void slot_key_gen_accept();
146 
152  void slot_encryption_box_changed(int state);
153 
159  void slot_signing_box_changed(int state);
160 
166  void slot_certification_box_changed(int state);
167 
173  void slot_authentication_box_changed(int state);
174 
180  void slot_activated_key_type(int index);
181 };
182 
183 } // namespace GpgFrontend::UI
184 
185 #endif // __KEYGENDIALOG_H__
Definition: GeneralDialog.h:35
Definition: KeygenDialog.h:41
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:366
QStringList error_messages_
Definition: KeygenDialog.h:87
void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:249
QCheckBox * expire_check_box_
Checkbox, if key should expire.
Definition: KeygenDialog.h:100
QDateTimeEdit * date_edit_
Date edit for expiration date.
Definition: KeygenDialog.h:99
QComboBox * key_type_combo_box_
Combobox for Key type.
Definition: KeygenDialog.h:98
QLineEdit * comment_edit_
Line edit for the keys comment.
Definition: KeygenDialog.h:95
QLineEdit * email_edit_
Line edit for the keys email.
Definition: KeygenDialog.h:94
KeyGenDialog(QWidget *parent=nullptr)
Definition: KeygenDialog.cpp:39
void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:257
void refresh_widgets_state()
Definition: KeygenDialog.cpp:282
void slot_expire_box_changed()
Definition: KeygenDialog.cpp:200
QGroupBox * key_usage_group_box_
Definition: KeygenDialog.h:102
QLineEdit * name_edit_
Line edit for the keys name.
Definition: KeygenDialog.h:93
QLabel * error_label_
Label containing error message.
Definition: KeygenDialog.h:92
QGroupBox * create_key_usage_group_box()
Create a key usage group box object.
Definition: KeygenDialog.cpp:208
void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:265
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:334
QDialogButtonBox * button_box_
Box for standard buttons.
Definition: KeygenDialog.h:91
QSpinBox * key_size_spin_box_
Spinbox for the keys size (in bit)
Definition: KeygenDialog.h:97
std::vector< QCheckBox * > key_usage_check_boxes_
ENCR, SIGN, CERT, AUTH.
Definition: KeygenDialog.h:105
void slot_activated_key_type(int index)
Definition: KeygenDialog.cpp:273
void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:241
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:362
void slot_key_gen_accept()
Definition: KeygenDialog.cpp:91
Definition: FileReadTask.cpp:29