Salome HOME
Create LICENSE
[modules/jobmanager.git] / src / genericgui / JM_SalomeResource.hxx
1 // Copyright (C) 2009-2024  CEA, EDF
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_SALOMERESOURCE_HXX_
21 #define _JM_SALOMERESOURCE_HXX_
22
23 #include "BL_SALOMEServices.hxx"
24
25 #include <QDialog>
26 #include <string>
27
28 class QCheckBox;
29 class QLineEdit;
30 class QListWidget;
31
32 namespace JM 
33 {
34   class SalomeResource: public QDialog
35   {
36     Q_OBJECT
37
38     public:
39       SalomeResource(QWidget *parent, BL::SALOMEServices * salome_services, 
40                      const std::string & resource_name);
41       virtual ~SalomeResource();
42
43       void get_infos();
44
45     protected:
46       QWidget* _parent;
47       BL::SALOMEServices * _salome_services;
48       std::string _resource_name;
49
50       // widget
51       QLineEdit * _name_line;
52       QLineEdit * _hostname_line;
53       QLineEdit * _protocol_line;
54       QLineEdit * _username_line;
55       QLineEdit * _applipath_line;
56       QListWidget * _componentList;
57       QCheckBox * _can_launch_batch_jobs;
58       QCheckBox * _can_run_containers;
59       QLineEdit * _working_directory;
60       QLineEdit * _os_line;
61       QLineEdit * _mem_mb_line;
62       QLineEdit * _cpu_clock_line;
63       QLineEdit * _nb_node_line;
64       QLineEdit * _nb_proc_per_node_line;
65       QLineEdit * _batch_line;
66       QLineEdit * _mpiImpl_line;
67       QLineEdit * _iprotocol_line;
68   };
69 }
70
71 #endif
72