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