aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/smtp/SenderPicker.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/smtp/SenderPicker.h')
-rw-r--r--src/ui/smtp/SenderPicker.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/ui/smtp/SenderPicker.h b/src/ui/smtp/SenderPicker.h
index 6efeeaf2..ce8cd8e6 100644
--- a/src/ui/smtp/SenderPicker.h
+++ b/src/ui/smtp/SenderPicker.h
@@ -35,16 +35,31 @@ namespace GpgFrontend::UI {
class KeyList;
+/**
+ * @brief
+ *
+ */
class SenderPicker : public QDialog {
Q_OBJECT
public:
+ /**
+ * @brief Construct a new Sender Picker object
+ *
+ * @param current_key_id
+ * @param parent
+ */
explicit SenderPicker(const KeyId& current_key_id, QWidget* parent = nullptr);
- GpgFrontend::KeyId getCheckedSender();
+ /**
+ * @brief Get the Checked Sender object
+ *
+ * @return GpgFrontend::KeyId
+ */
+ GpgFrontend::KeyId GetCheckedSender();
private:
- KeyList* key_list_;
+ KeyList* key_list_; ///<
};
} // namespace GpgFrontend::UI