aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/InfoBoardWidget.h
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2021-12-07 08:37:54 +0000
committerGitHub <[email protected]>2021-12-07 08:37:54 +0000
commitcc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c (patch)
tree865d2298d836c8eb36584b5d268325bca4a66a78 /src/ui/widgets/InfoBoardWidget.h
parentMerge pull request #26 from saturneric/develop (diff)
parentFix Bugs on KeyUploadDialog (diff)
downloadGpgFrontend-cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c.tar.gz
GpgFrontend-cc89ad54ab3dd4aeb3ed7afeed59a80b6e61649c.zip
Merge pull request #28 from saturneric/develop
Diffstat (limited to 'src/ui/widgets/InfoBoardWidget.h')
-rw-r--r--src/ui/widgets/InfoBoardWidget.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/ui/widgets/InfoBoardWidget.h b/src/ui/widgets/InfoBoardWidget.h
index 1a13e1a2..b7239adb 100644
--- a/src/ui/widgets/InfoBoardWidget.h
+++ b/src/ui/widgets/InfoBoardWidget.h
@@ -26,11 +26,11 @@
#define __VERIFYNOTIFICATION_H__
#include "EditorPage.h"
-#include "FilePage.h"
#include "gpg/result_analyse/VerifyResultAnalyse.h"
-#include "ui/VerifyDetailsDialog.h"
+#include "ui/details/VerifyDetailsDialog.h"
namespace GpgFrontend::UI {
+
/**
* @details Enumeration for the status of Verifylabel
*/
@@ -57,8 +57,6 @@ class InfoBoardWidget : public QWidget {
void associateTextEdit(QTextEdit* edit);
- void associateFileTreeView(FilePage* treeView);
-
void associateTabWidget(QTabWidget* tab);
void addOptionalAction(const QString& name,
@@ -100,12 +98,11 @@ class InfoBoardWidget : public QWidget {
KeyList* mKeyList; /** Table holding the keys */
QTextEdit* mTextPage{nullptr}; /** TextEdit associated to the notification */
- FilePage* mFileTreeView{
- nullptr}; /** TreeView associated to the notification */
QTabWidget* mTabWidget{
nullptr}; /** TreeView associated to the notification */
QHBoxLayout* actionButtonLayout;
+ QButtonGroup* mButtonGroup;
void deleteWidgetsInLayout(QLayout* layout, int start_index = 0);
};