2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2021 Philipp Spitzer, gregor herrmann, Stefan Stahl
5 * This file is part of ConfClerk.
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)
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
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/>.
20 #include "mainwindow.h"
22 #include "sqlengine.h"
24 #include "eventdialog.h"
25 #include "application.h"
27 int main(int argc, char *argv[])
29 Q_INIT_RESOURCE(icons);
31 Q_INIT_RESOURCE(data);
33 Application a(argc, argv);
34 Application::setWindowIcon(QIcon(":/confclerk.svg"));
36 // needed by QDesktopServices
37 QCoreApplication::setOrganizationName("Toastfreeware");
38 QCoreApplication::setApplicationName("ConfClerk");
39 QCoreApplication::setApplicationVersion(VERSION);
43 // If we were started with the parameters confernceid and eventid, show the corresponding event (alarm)
45 QString conferenceIdStr = argv[1];
46 QString eventIdStr = argv[2];
47 EventDialog dialog(conferenceIdStr.toInt(), eventIdStr.toInt(), &window);