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