summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
diff options
context:
space:
mode:
authorJonathan Bauer2011-03-21 10:51:51 +0100
committerJonathan Bauer2011-03-21 10:51:51 +0100
commit635b5c64f3107d4c01ae314fb75e02c571b51c54 (patch)
tree4d2a3a679a569f9133ca8d3d5f5159b393accde3 /src/fbgui.h
parentdebug modes. -D now needs an arg: 0 for regular terminal output, 1 for debug ... (diff)
downloadfbgui-635b5c64f3107d4c01ae314fb75e02c571b51c54.tar.gz
fbgui-635b5c64f3107d4c01ae314fb75e02c571b51c54.tar.xz
fbgui-635b5c64f3107d4c01ae314fb75e02c571b51c54.zip
transformed c syntax comments to c++ convention...
Diffstat (limited to 'src/fbgui.h')
-rw-r--r--src/fbgui.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/fbgui.h b/src/fbgui.h
index ca5420d..2d06afe 100644
--- a/src/fbgui.h
+++ b/src/fbgui.h
@@ -23,14 +23,14 @@
#include <QxtCore>
-/* Internal default settings */
+// Internal default settings
#define DEFAULT_URL "http://www.google.com"
#define DEFAULT_DOWNLOAD_DIR "/tmp/fbgui/downloads"
#define DEFAULT_CONFIG_PATH "/etc/fbgui.conf"
#define DEFAULT_UPDATE_INTERVAL 1;
-/* global settings */
+// Global settings
extern QString binPath;
extern QString downloadPath;
extern QUrl baseURL;
@@ -45,21 +45,22 @@ public:
fbgui();
private:
- /* setup procedures */
+ // setup procedures
void setupDebugSplit();
void createActions();
void checkHost() const;
- /* widgets constituing the gui */
+ // widgets constituing the gui
QWebView* _webView;
QSplitter* _splitter;
QTextEdit* _debugConsole;
- /* action list */
+ // action list
QAction* _quit;
QAction* _toggleDebug;
private slots:
+ // slots for processing actions
void toggleDebug();
};