diff options
author | Saturneric <[email protected]> | 2022-01-05 14:33:08 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-05 14:33:08 +0000 |
commit | af944181eed588b103bcda19dbd69eac83a27404 (patch) | |
tree | eb35d8bf01f2af96e48cd3abf52e5c5f6c809931 /src/ui/smtp/ReceiveMailDialog.h | |
parent | <chore>(project): rename gpg_core and gpgfrontend-ui. (diff) | |
download | GpgFrontend-af944181eed588b103bcda19dbd69eac83a27404.tar.gz GpgFrontend-af944181eed588b103bcda19dbd69eac83a27404.zip |
<feature>(ui, project): start to add imap support.
1. introduce vmime library.
2. add ReceiveMailDialog and related actions in MainWindowUI.
3. add git submodule vmime.
Diffstat (limited to '')
-rw-r--r-- | src/ui/smtp/ReceiveMailDialog.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/ui/smtp/ReceiveMailDialog.h b/src/ui/smtp/ReceiveMailDialog.h new file mode 100644 index 00000000..5aa2c52e --- /dev/null +++ b/src/ui/smtp/ReceiveMailDialog.h @@ -0,0 +1,45 @@ +/** + * This file is part of GpgFrontend. + * + * GpgFrontend is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Foobar is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Foobar. If not, see <https://www.gnu.org/licenses/>. + * + * The initial version of the source code is inherited from gpg4usb-team. + * Their source code version also complies with GNU General Public License. + * + * The source code version of this software was modified and released + * by Saturneric<[email protected]> starting on May 12, 2021. + * + */ + +#ifndef GPGFRONTEND_RECEIVEMAILDIALOG_H +#define GPGFRONTEND_RECEIVEMAILDIALOG_H + +#include "ui/GpgFrontendUI.h" + +class Ui_ReceiveMailDialog; + +namespace GpgFrontend::UI { + +class ReceiveMailDialog : public QDialog { + Q_OBJECT + public: + ReceiveMailDialog(QWidget *parent); + + private: + std::shared_ptr<Ui_ReceiveMailDialog> ui; +}; + +} // namespace GpgFrontend::UI + +#endif // GPGFRONTEND_RECEIVEMAILDIALOG_H |