Mercurial > trustbridge
diff ui/main.cpp @ 0:cb0cde2c5eb9
Initial commit. Basically a Hello World with a Tray Icon.
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Fri, 07 Feb 2014 11:41:15 +0000 |
parents | |
children | 225a5ec20dad |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/main.cpp Fri Feb 07 11:41:15 2014 +0000 @@ -0,0 +1,32 @@ +#include "mainwindow.h" + +#include <QApplication> +#include <QSystemTrayIcon> +#include <QtPlugin> +#include <QMessageBox> + + +#ifdef Q_OS_WIN + Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin) +#else + Q_IMPORT_PLUGIN(QXcbIntegrationPlugin) +#endif + +int main(int argc, char **argv) +{ + QApplication app (argc, argv); + + if (!QSystemTrayIcon::isSystemTrayAvailable()) { + QMessageBox::critical(0, QObject::tr("m13ui"), + QObject::tr("Couldn't detect any system tray " + "on this system. This software can only " + "be used in a desktop environment.")); + return 1; + } + QApplication::setQuitOnLastWindowClosed(false); + + MainWindow mainWin; + mainWin.show(); + + return app.exec(); +}