gui/src/app.cpp
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #include <corbo-gui/main_window.h>
26 
27 #include <QApplication>
28 
29 #if defined(_WIN32) && defined(_MINGW)
30 #include <QtPlugin>
31 Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
32 #endif // defined
33 
34 void parseArguments(int argc, char** argv, bool* show_console);
35 
36 int main(int argc, char** argv)
37 {
38  bool show_console = false;
39  parseArguments(argc, argv, &show_console);
40 
41  QApplication app(argc, argv);
42  // set organization and application name which is required for storing app data
43  app.setOrganizationName(corbo::gui::OrganizationName);
44  app.setApplicationName(corbo::gui::ApplicationName);
45 
46  corbo::gui::corboMainWindow main_window;
47  main_window.show();
48 
49 #ifdef _WIN32
50  if (!show_console) FreeConsole();
51 #endif
52 
53  // enter main application event-loop
54  return app.exec();
55 }
56 
57 void parseArguments(int argc, char** argv, bool* show_console)
58 {
59  if (show_console) *show_console = false;
60 
61  for (int i = 1; i < argc; ++i)
62  {
63  if (strcmp(argv[i], "-c") == 0 || strcmp(argv[i], "--c") == 0 || strcmp(argv[i], "-console") == 0) // show console
64  {
65  if (show_console) *show_console = true;
66  }
67  }
68 }
corbo::gui::OrganizationName
const QString OrganizationName
Definition: main_window.h:94
main
int main(int argc, char **argv)
Definition: gui/src/app.cpp:36
corbo::gui::corboMainWindow
GUI main window.
Definition: main_window.h:112
parseArguments
void parseArguments(int argc, char **argv, bool *show_console)
Definition: gui/src/app.cpp:57
corbo::gui::ApplicationName
const QString ApplicationName
Definition: main_window.h:95
main_window.h


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:36