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.cpp | |
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 'src/ui/smtp/ReceiveMailDialog.cpp')
-rw-r--r-- | src/ui/smtp/ReceiveMailDialog.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ui/smtp/ReceiveMailDialog.cpp b/src/ui/smtp/ReceiveMailDialog.cpp new file mode 100644 index 00000000..6fb8fe95 --- /dev/null +++ b/src/ui/smtp/ReceiveMailDialog.cpp @@ -0,0 +1,32 @@ +/** + * 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. + * + */ + +#include "ReceiveMailDialog.h" + +#include "ui_ReceiveMailDialog.h" + +GpgFrontend::UI::ReceiveMailDialog::ReceiveMailDialog(QWidget *parent) + : QDialog(parent), ui(std::make_shared<Ui_ReceiveMailDialog>()) { + ui->setupUi(this); +} |