summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-08-05 17:09:37 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-08-05 17:09:56 (GMT)
commit6f4fa16b1ddb0633771423a8e8d9520864ffb95d (patch)
tree3dd6c277616e72af0ae1b4704a1d608f4fe0740b /Slimber/Qt/main.cpp
parent9b335b8ef317430a7551a8f2cb86a98b4c330882 (diff)
downloadswift-6f4fa16b1ddb0633771423a8e8d9520864ffb95d.zip
swift-6f4fa16b1ddb0633771423a8e8d9520864ffb95d.tar.bz2
Slimber: Add Qt implementation.
Diffstat (limited to 'Slimber/Qt/main.cpp')
-rw-r--r--Slimber/Qt/main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/Slimber/Qt/main.cpp b/Slimber/Qt/main.cpp
new file mode 100644
index 0000000..0988e7c
--- /dev/null
+++ b/Slimber/Qt/main.cpp
@@ -0,0 +1,19 @@
+#include <QApplication>
+#include <QSystemTrayIcon>
+#include <QMessageBox>
+
+#include "QtMenulet.h"
+#include "Slimber/MainController.h"
+
+int main(int argc, char* argv[]) {
+ QApplication app(argc, argv);
+ if (!QSystemTrayIcon::isSystemTrayAvailable()) {
+QMessageBox::critical(0, QObject::tr("Systray"), QObject::tr("No system tray"));
+ return 1;
+ }
+
+ QtMenulet menulet;
+ MainController controller(&menulet);
+
+ return app.exec();
+}