diff options
Diffstat (limited to 'src/ui/smtp/ReceiveMailDialog.h')
-rw-r--r-- | src/ui/smtp/ReceiveMailDialog.h | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/src/ui/smtp/ReceiveMailDialog.h b/src/ui/smtp/ReceiveMailDialog.h index b21b4b6d..2ccb2664 100644 --- a/src/ui/smtp/ReceiveMailDialog.h +++ b/src/ui/smtp/ReceiveMailDialog.h @@ -41,21 +41,38 @@ namespace GpgFrontend::UI { class IMAPFolder; +/** + * @brief + * + */ class ReceiveMailDialog : public QDialog { Q_OBJECT public: + /** + * @brief Construct a new Receive Mail Dialog object + * + * @param parent + */ explicit ReceiveMailDialog(QWidget* parent); private slots: - void slotRefreshData(); + /** + * @brief + * + */ + void slot_refresh_data(); private: - std::shared_ptr<Ui_ReceiveMailDialog> ui; + std::shared_ptr<Ui_ReceiveMailDialog> ui_; ///< + std::vector<std::shared_ptr<IMAPFolder>> folders_; ///< + /** + * @brief + * + * @param parent_folder + */ void list_sub_folders(IMAPFolder* parent_folder, const std::shared_ptr<vmime::net::folder>&); - - std::vector<std::shared_ptr<IMAPFolder>> folders; }; } // namespace GpgFrontend::UI |