summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
diff options
context:
space:
mode:
authorJonathan Bauer2011-03-07 17:44:05 +0100
committerJonathan Bauer2011-03-07 17:44:05 +0100
commit84bd2b0925c8825b819b7b062d9f2a351f2e96b5 (patch)
treeeab941aa6ef3e52d4a2788a2c5f8b418fb4f5f26 /src/fbgui.h
parentwebkitTest.html local loading of jQuery stuff (diff)
downloadfbgui-84bd2b0925c8825b819b7b062d9f2a351f2e96b5.tar.gz
fbgui-84bd2b0925c8825b819b7b062d9f2a351f2e96b5.tar.xz
fbgui-84bd2b0925c8825b819b7b062d9f2a351f2e96b5.zip
Reworked code structure
Diffstat (limited to 'src/fbgui.h')
-rw-r--r--src/fbgui.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/fbgui.h b/src/fbgui.h
index 9bf4ce0..f72db44 100644
--- a/src/fbgui.h
+++ b/src/fbgui.h
@@ -6,18 +6,15 @@
#define DEFAULT_URL "http://www.google.com"
-class fbgui : public QObject
+class fbgui : public QMainWindow
{
Q_OBJECT
public:
- fbgui();
- ~fbgui();
- void startBrowser();
+ fbgui(QApplication *parent);
-
-private:
- fbbrowser* _fbb;
+signals:
+ void quitApp();
};
#endif // FBGUI_H