-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
72 lines (66 loc) · 2.01 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//========================================================================
//
// Copyright (C) 2020 Matthieu Bruel <Matthieu.Bruel@gmail.com>
//
// This file is a part of ex0days : https://github.com/mbruel/ex0days
//
// ngPost is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; version 3.0 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General Public
// License along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
// USA.
//
//========================================================================
#include "Ex0days.h"
#include <csignal>
#include <iostream>
#include <QCoreApplication>
#if defined( Q_OS_WIN )
#include <windows.h>
#endif
void handleShutdown(int signal)
{
Q_UNUSED(signal)
std::cout << "Closing the application...\n";
std::cout.flush();
qApp->quit();
}
int main(int argc, char *argv[])
{
signal(SIGINT, &handleShutdown);// shut down on ctrl-c
signal(SIGTERM, &handleShutdown);// shut down on killall
// qDebug() << "argc: " << argc;
Ex0days app(argc, argv);
app.checkForNewVersion();
if (app.useHMI())
{
#if defined( Q_OS_WIN )
::ShowWindow( ::GetConsoleWindow(), SW_HIDE ); //hide console window
#endif
return app.startHMI();
}
else if (app.parseCommandLine(argc, argv))
{
app.startEventLoop();
#ifdef __DEBUG__
std::cout << app.appName() << " closed properly!\n";
std::cout.flush();
#endif
return 0;
}
else
{
#ifdef __DEBUG__
std::cout << "Nothing to do...\n";
std::cout.flush();
#endif
return 0;
}
}