]> SALOME platform Git repositories - modules/jobmanager.git/blob - src/standalone/main.cxx
Salome HOME
cef72e30533bfe969dfc00e7eb0255f511ee5bab
[modules/jobmanager.git] / src / standalone / main.cxx
1 // Copyright (C) 2009-2015  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include <QtGlobal>
21 #include <QtGui>
22 #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
23 #include <QtWidgets>
24 #endif
25
26 #include "BL_GenericGui.hxx"
27 #include "BL_MainWindows_Qt.hxx"
28
29 int main(int argc, char *argv[])
30 {
31   QApplication app(argc, argv);
32
33   QMainWindow main_window;
34   BL::MainWindows_Qt wrapper(&main_window);
35   BL::GenericGui * main_widget = new BL::GenericGui(&wrapper);
36   main_widget->createActions();
37   main_widget->createMenus();
38   main_widget->updateButtonsStates();
39
40   main_window.setWindowTitle("Standalone JobManager Gui");
41   main_window.show();
42
43   return app.exec();
44 }
45