1 | /* |
---|
2 | * Copyright (C) 2010 Ixonos Plc. |
---|
3 | * Copyright (C) 2011-2012 Philipp Spitzer, gregor herrmann |
---|
4 | * |
---|
5 | * This file is part of ConfClerk. |
---|
6 | * |
---|
7 | * ConfClerk is free software: you can redistribute it and/or modify it |
---|
8 | * under the terms of the GNU General Public License as published by the Free |
---|
9 | * Software Foundation, either version 2 of the License, or (at your option) |
---|
10 | * any later version. |
---|
11 | * |
---|
12 | * ConfClerk is distributed in the hope that it will be useful, but |
---|
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
14 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
15 | * more details. |
---|
16 | * |
---|
17 | * You should have received a copy of the GNU General Public License along with |
---|
18 | * ConfClerk. If not, see <http://www.gnu.org/licenses/>. |
---|
19 | */ |
---|
20 | #include <mainwindow.h> |
---|
21 | |
---|
22 | #include <sqlengine.h> |
---|
23 | |
---|
24 | #include "eventdialog.h" |
---|
25 | #include "application.h" |
---|
26 | |
---|
27 | #ifdef MAEMO |
---|
28 | //#include <alarmdialog.h> |
---|
29 | #include <alarmdbus.h> |
---|
30 | #include <alarmdbusadaptorp.h> |
---|
31 | #endif /* MAEMO */ |
---|
32 | |
---|
33 | |
---|
34 | int main(int argc, char *argv[]) |
---|
35 | { |
---|
36 | Q_INIT_RESOURCE(icons); |
---|
37 | Q_INIT_RESOURCE(db); |
---|
38 | Q_INIT_RESOURCE(data); |
---|
39 | |
---|
40 | Application a(argc, argv); |
---|
41 | Application::setWindowIcon(QIcon(":/confclerk.svg")); |
---|
42 | |
---|
43 | // needed by QDesktopServices |
---|
44 | QCoreApplication::setOrganizationName("Toastfreeware"); |
---|
45 | QCoreApplication::setApplicationName("ConfClerk"); |
---|
46 | QCoreApplication::setApplicationVersion(VERSION); |
---|
47 | |
---|
48 | SqlEngine::initialize(); // creates "SQLITE" DB connection |
---|
49 | |
---|
50 | QWidget *window; |
---|
51 | |
---|
52 | window = new MainWindow; |
---|
53 | |
---|
54 | |
---|
55 | #ifdef MAEMO |
---|
56 | // Alarm Dbus |
---|
57 | CAlarmDBus *alarmDBus = new CAlarmDBus(window); |
---|
58 | new AlarmDBusAdaptor(alarmDBus); |
---|
59 | QDBusConnection connection = QDBusConnection::sessionBus(); |
---|
60 | |
---|
61 | if(connection.registerObject("/ConfClerk", alarmDBus) == true) |
---|
62 | { |
---|
63 | if( connection.registerService("at.priv.toastfreeware.confclerk") == false) |
---|
64 | { |
---|
65 | if(argc>1) |
---|
66 | { |
---|
67 | QDBusInterface *interface = new QDBusInterface("at.priv.toastfreeware.confclerk", |
---|
68 | "/ConfClerk", |
---|
69 | "at.priv.toastfreeware.confclerk.AlarmInterface", |
---|
70 | connection); |
---|
71 | interface->call("Alarm",atoi(argv[1])); |
---|
72 | return 0; |
---|
73 | } |
---|
74 | } |
---|
75 | } |
---|
76 | |
---|
77 | if(argc > 1) |
---|
78 | { |
---|
79 | EventDialog dialog(atoi(argv[1]),window); |
---|
80 | dialog.exec(); |
---|
81 | } |
---|
82 | #endif |
---|
83 | |
---|
84 | window->show(); |
---|
85 | |
---|
86 | return a.exec(); |
---|
87 | } |
---|
88 | |
---|