summaryrefslogtreecommitdiffstats
path: root/src/ndgui.h
diff options
context:
space:
mode:
authorNiklas2011-10-25 18:57:40 +0200
committerNiklas2011-10-25 18:57:40 +0200
commite942d5d431346439533910bf649b10ec17463c03 (patch)
treec6d16dc9c1376d51c587eaa8049d2fafa080a8e6 /src/ndgui.h
parentno working (diff)
downloadfbgui-e942d5d431346439533910bf649b10ec17463c03.tar.gz
fbgui-e942d5d431346439533910bf649b10ec17463c03.tar.xz
fbgui-e942d5d431346439533910bf649b10ec17463c03.zip
fixed some bugs. show log screen is now bigger and opens a scrollbar automatically. debug screens added. fixed continue in debug mode, added progress indicator for all screens.
Diffstat (limited to 'src/ndgui.h')
-rw-r--r--src/ndgui.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ndgui.h b/src/ndgui.h
index d8adf63..69a9f83 100644
--- a/src/ndgui.h
+++ b/src/ndgui.h
@@ -5,6 +5,7 @@
#include <QtWebKit>
#include <QVariant>
+#include "fbgui.h"
#include "loggerengine.h"
#include "networkdiscovery.h"
@@ -79,6 +80,19 @@ private:
QString _manualConfInterfaces;
+ // QSplitter to split the main window in two resizable frames.
+ QSplitter* _splitter;
+ // QTextEdit implementing a minimalistic debug console.
+ QTextEdit* _debugConsole;
+
+ // triggers toggleDebugConsole()
+ QAction* _toggleDebugConsole;
+
+
+ void setupLayout();
+ void createDebugConsole();
+ void toggleDebugConsole();
+
};