GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
GnupgTab.h
1 /*
2  * Copyright (c) 2022. Saturneric
3  *
4  * This file is part of GpgFrontend.
5  *
6  * GpgFrontend is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GpgFrontend is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GpgFrontend. If not, see <https://www.gnu.org/licenses/>.
18  *
19  * The initial version of the source code is inherited from
20  * the gpg4usb project, which is under GPL-3.0-or-later.
21  *
22  * All the source code of GpgFrontend was modified and released by
23  * Saturneric<eric@bktus.com> starting on May 12, 2021.
24  *
25  * SPDX-License-Identifier: GPL-3.0-or-later
26  */
27 
28 //
29 // Created by eric on 2022/7/23.
30 //
31 
32 #ifndef GPGFRONTEND_GNUPGTAB_H
33 #define GPGFRONTEND_GNUPGTAB_H
34 
35 #include "core/GpgContext.h"
36 #include "ui/GpgFrontendUI.h"
37 
38 namespace GpgFrontend::UI{
39 class GnupgTab: public QWidget {
40  Q_OBJECT
41  public:
47  explicit GnupgTab(QWidget* parent = nullptr);
48 };
49 }
50 
51 
52 
53 #endif // GPGFRONTEND_GNUPGTAB_H
GpgFrontend::UI
Definition: FileReadTask.cpp:31
GpgFrontend::SingletonFunctionObject< GpgContext >::GetInstance
static GpgContext & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::GpgContext::GetInfo
const GpgInfo & GetInfo() const
Get the Info object.
Definition: GpgContext.h:95
GpgFrontend::UI::GnupgTab::GnupgTab
GnupgTab(QWidget *parent=nullptr)
Construct a new Info Tab object.
Definition: GnupgTab.cpp:34
GpgFrontend::GpgContext
Definition: GpgContext.h:59
GpgFrontend::UI::GnupgTab
Definition: GnupgTab.h:39