1 | /* |
---|
2 | * Copyright (C) 2010 Ixonos Plc. |
---|
3 | * Copyright (C) 2011-2012 Philipp Spitzer, gregor herrmann, Stefan Stahl |
---|
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 | int main(int argc, char *argv[]) |
---|
28 | { |
---|
29 | Q_INIT_RESOURCE(icons); |
---|
30 | Q_INIT_RESOURCE(db); |
---|
31 | Q_INIT_RESOURCE(data); |
---|
32 | |
---|
33 | Application a(argc, argv); |
---|
34 | Application::setWindowIcon(QIcon(":/confclerk.svg")); |
---|
35 | |
---|
36 | // needed by QDesktopServices |
---|
37 | QCoreApplication::setOrganizationName("Toastfreeware"); |
---|
38 | QCoreApplication::setApplicationName("ConfClerk"); |
---|
39 | QCoreApplication::setApplicationVersion(VERSION); |
---|
40 | |
---|
41 | QWidget* window = new MainWindow; |
---|
42 | |
---|
43 | // If we were started with the parameters confernceid and eventid, show the corresponding event (alarm) |
---|
44 | if (argc >= 3) { |
---|
45 | QString conferenceIdStr = argv[1]; |
---|
46 | QString eventIdStr = argv[2]; |
---|
47 | EventDialog dialog(conferenceIdStr.toInt(), eventIdStr.toInt(), window); |
---|
48 | dialog.exec(); |
---|
49 | } |
---|
50 | window->show(); |
---|
51 | |
---|
52 | return a.exec(); |
---|
53 | } |
---|
54 | |
---|