summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
diff options
context:
space:
mode:
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();
};