summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2009-06-21 15:39:42 (GMT)
committerKevin Smith <git@kismith.co.uk>2009-06-21 15:39:42 (GMT)
commit706276e0fdffb0af86d8178973bbf5ae3722733d (patch)
treef7e9ec5a77ed94da4feb65c2c10aa955c74e5082 /Swift/QtUI/QtSwift.h
parentb1cc881c57dc8498e2ccdf1552421e116a01d3dd (diff)
downloadswift-706276e0fdffb0af86d8178973bbf5ae3722733d.zip
swift-706276e0fdffb0af86d8178973bbf5ae3722733d.tar.bz2
Enable netbook mode with any commandline parameters
Diffstat (limited to 'Swift/QtUI/QtSwift.h')
-rw-r--r--Swift/QtUI/QtSwift.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Swift/QtUI/QtSwift.h b/Swift/QtUI/QtSwift.h
index 5c6656a..a9b8efb 100644
--- a/Swift/QtUI/QtSwift.h
+++ b/Swift/QtUI/QtSwift.h
@@ -8,6 +8,8 @@
#include "QtChatWindowFactory.h"
#include "QtSettingsProvider.h"
+class QSplitter;
+
namespace Swift {
class Application;
class MainController;
@@ -20,7 +22,7 @@ namespace Swift {
class QtSwift : public QObject {
Q_OBJECT
public:
- QtSwift();
+ QtSwift(bool netbookMode);
~QtSwift();
private:
MainController *mainController_;
@@ -31,6 +33,7 @@ namespace Swift {
QtMainEventLoop clientMainThreadCaller_;
QtSettingsProvider *settings_;
QtSystemTray* systemTray_;
+ QSplitter* splitter_;
Application* application_;
};
}