Salome HOME
73081806c1af72fd63125521f2e2087c23e1dd88
[modules/yacs.git] / src / ydfx_gui / ResourceWidget.hxx
1 // Copyright (C) 2017-2020  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 RESOURCEWIDGET_HXX
21 #define RESOURCEWIDGET_HXX
22
23 #include <QtWidgets>
24 #include "AbstractResourceModel.hxx"
25
26 class YDFXWIDGETS_EXPORT ResourceWidget: public QScrollArea
27 {
28   Q_OBJECT
29   public:
30     ResourceWidget(AbstractResourceModel* model, QWidget* parent=0);
31     virtual ~ResourceWidget();
32
33   public slots:
34     virtual void updateParallelizeStatus(bool v);
35     virtual void updateWantedMachine( const QString& v);
36     virtual void updateNbprocs(int v);
37     virtual void updateRemoteDir(const QString &v);
38     virtual void updateLocalDir(const QString &v);
39     virtual void updateWckey(const QString &v);
40     virtual void updateMaxHours(int v);
41     virtual void updateMaxMinutes(int v);
42     virtual void onChoseLocaldir();
43     virtual void inputSelectionChanged();
44     virtual void addInputFiles();
45     virtual void removeInputFiles();
46   private:
47     QWidget * createClusterWidgets();
48   private:
49     AbstractResourceModel* _model;
50     QWidget * _clusterBox;
51     QLineEdit * _localdirEdit;
52     QLineEdit * _remotedirEdit;
53     QListWidget * _inputFilesList;
54     QPushButton *_removeInputFilesButton;
55 };
56
57 #endif // RESOURCEWIDGET_HXX