aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/KeyGroupCreationDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/dialog/KeyGroupCreationDialog.h')
-rw-r--r--src/ui/dialog/KeyGroupCreationDialog.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/ui/dialog/KeyGroupCreationDialog.h b/src/ui/dialog/KeyGroupCreationDialog.h
index 634c9148..d03c2cbc 100644
--- a/src/ui/dialog/KeyGroupCreationDialog.h
+++ b/src/ui/dialog/KeyGroupCreationDialog.h
@@ -28,11 +28,7 @@
#pragma once
-#include "core/function/gpg/GpgContext.h"
-#include "core/model/GpgKey.h"
-#include "core/typedef/GpgTypedef.h"
#include "ui/dialog/GeneralDialog.h"
-
namespace GpgFrontend::UI {
class KeyGroupCreationDialog : public GeneralDialog {
Q_OBJECT
@@ -45,7 +41,7 @@ class KeyGroupCreationDialog : public GeneralDialog {
* @param parent
*/
KeyGroupCreationDialog(int channel, QStringList key_ids,
- QWidget* parent = nullptr);
+ QWidget* parent = nullptr);
signals:
/**
@@ -74,17 +70,5 @@ class KeyGroupCreationDialog : public GeneralDialog {
QStringList error_messages_; ///<
QLabel* error_label_{}; ///<
-
- 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
- */
- auto check_email_address(const QString& str) -> bool;
};
} // namespace GpgFrontend::UI