27 #ifndef __KEYGENDIALOG_H__
28 #define __KEYGENDIALOG_H__
30 #include "core/GpgContext.h"
31 #include "core/GpgGenKeyInfo.h"
32 #include "ui/GpgFrontendUI.h"
33 #include "ui/dialog/GeneralDialog.h"
59 void SignalKeyGenerated();
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])+)\]))"};
89 std::unique_ptr<GenKeyInfo> gen_key_info_ =
90 std::make_unique<GenKeyInfo>();
96 QLineEdit* passphrase_edit_{};
101 QCheckBox* no_pass_phrase_check_box_{};
104 QDateTime max_date_time_;
106 bool use_pinentry_ =
false;
112 void generate_key_dialog();
Definition: GeneralDialog.h:35
Definition: KeygenDialog.h:41
QGroupBox * create_basic_info_group_box()
Create a basic info group box object.
Definition: KeygenDialog.cpp:379
QStringList error_messages_
Definition: KeygenDialog.h:87
void slot_signing_box_changed(int state)
Definition: KeygenDialog.cpp:262
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:41
void slot_certification_box_changed(int state)
Definition: KeygenDialog.cpp:270
void refresh_widgets_state()
Definition: KeygenDialog.cpp:295
void slot_expire_box_changed()
Definition: KeygenDialog.cpp:213
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:221
void slot_authentication_box_changed(int state)
Definition: KeygenDialog.cpp:278
void set_signal_slot()
Set the signal slot object.
Definition: KeygenDialog.cpp:347
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:286
void slot_encryption_box_changed(int state)
Definition: KeygenDialog.cpp:254
bool check_email_address(const QString &str)
Definition: KeygenDialog.cpp:375
void slot_key_gen_accept()
Definition: KeygenDialog.cpp:103
Definition: FileReadTask.cpp:29