]> SALOME platform Git repositories - modules/jobmanager.git/blob - src/genericgui/JM_EditSalomeResource.hxx
Salome HOME
Merge Qt5 porting.
[modules/jobmanager.git] / src / genericgui / JM_EditSalomeResource.hxx
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 #ifndef _JM_EDITSALOMERESOURCE_HXX_
21 #define _JM_EDITSALOMERESOURCE_HXX_
22
23 #include <QtGlobal>
24 #include <QtGui>
25 #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
26 #include <QtWidgets>
27 #endif
28
29 #include <string>
30
31 #include "BL_SALOMEServices.hxx"
32
33 namespace JM 
34 {
35   class EditSalomeResource: public QDialog
36   {
37     Q_OBJECT
38
39     public:
40       EditSalomeResource(QWidget *parent,
41                          BL::SALOMEServices * salome_services,
42                          const std::string & resource_name = "");
43       virtual ~EditSalomeResource();
44
45       void get_infos();
46
47     public slots:
48       virtual void accept();
49       void add_component();
50       void remove_components();
51       void itemSelectionChanged();
52
53     protected:
54       QWidget* _parent;
55       BL::SALOMEServices * _salome_services;
56       std::string _resource_name;
57
58       // widget
59       QLineEdit * _name_line;
60       QLineEdit * _hostname_line;
61       QLineEdit * _username_line;
62       QLineEdit * _applipath_line;
63       QListWidget * _componentList;
64       QLineEdit * _os_line;
65
66       QComboBox * _protocol_line;
67       QComboBox * _iprotocol_line;
68       QComboBox * _batch_line;
69       QComboBox * _mpiImpl_line;
70
71       QSpinBox * _mem_mb_line;
72       QSpinBox * _cpu_clock_line;
73       QSpinBox * _nb_node_line;
74       QSpinBox * _nb_proc_per_node_line;
75
76       QLineEdit * _working_directory;
77       QCheckBox * _can_launch_batch_jobs;
78       QCheckBox * _can_run_containers;
79
80       QPushButton * _add_button;
81       QPushButton * _remove_button;
82   };
83 }
84
85 #endif
86