aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/widgets/InfoBoardWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ui/widgets/InfoBoardWidget.h')
-rw-r--r--include/ui/widgets/InfoBoardWidget.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/ui/widgets/InfoBoardWidget.h b/include/ui/widgets/InfoBoardWidget.h
index 9d3dbd16..f487b72c 100644
--- a/include/ui/widgets/InfoBoardWidget.h
+++ b/include/ui/widgets/InfoBoardWidget.h
@@ -26,6 +26,7 @@
#define __VERIFYNOTIFICATION_H__
#include "EditorPage.h"
+#include "FilePage.h"
#include "ui/VerifyDetailsDialog.h"
#include "gpg/result_analyse/VerifyResultAnalyse.h"
@@ -56,6 +57,10 @@ public:
void associateTextEdit(QTextEdit *edit);
+ void associateFileTreeView(FilePage *treeView);
+
+ void associateTabWidget(QTabWidget *tab);
+
void addOptionalAction(const QString& name, const std::function<void()>& action);
void resetOptionActionsMenu();
@@ -95,7 +100,11 @@ private:
QTextEdit *infoBoard;
GpgME::GpgContext *mCtx; /** GpgME Context */
KeyList *mKeyList; /** Table holding the keys */
- QTextEdit *mTextPage{ nullptr }; /** Textedit associated to the notification */
+
+ 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;