Salome HOME
updated copyright message
[modules/yacs.git] / src / genericgui / ListJobs_GUI.hxx
1 // Copyright (C) 2006-2023  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 LISTJOBS_GUI_H
21 #define LISTJOBS_GUI_H
22
23 #include <QWidget>
24 #include "SALOME_NamingService_Wrapper.hxx"
25 #include "SALOME_Launcher.hh"
26
27 // Kind of column
28 // --------------
29
30 #define type_job   0
31 #define type_state 1
32 #define type_res   2
33 #define type_id    3
34
35 // Class for the dialog box
36 // ------------------------
37
38 class QPushButton;
39 class QTableWidget;
40 class QTableWidgetItem;
41 class QTimer;
42
43 namespace YACS
44 {
45
46   namespace ENGINE
47   {
48     class Proc;
49   }
50   namespace HMI
51   {
52     class GenericGui;
53
54     class BatchJobsListDialog: public QWidget {
55       Q_OBJECT
56
57     public:
58       BatchJobsListDialog(QString title,GenericGui* genericGui);
59       virtual ~BatchJobsListDialog();
60       
61     private:
62       QWidget* build_buttons();
63       void getSalomeLauncher();
64       void filterJobFile();
65       void filterDumpStateFile();
66
67     private slots:
68       void userOK();
69       void userCancel();
70       void userCell(QTableWidgetItem* cell);
71       void build_table();
72       void get_dump_file();
73
74     protected:
75       QTimer* _timer1, *_timer2;
76       QPushButton* _ok;
77       QTableWidget* _table;
78       QString _jobFile;
79       QString _dumpStateFile;
80       QString _filteredJobFile;
81       QString _filteredDumpStateFile;
82       QString _hostname;
83       long _id;
84       Engines::SalomeLauncher_var _salome_launcher;
85       GenericGui* _genericGui;
86       YACS::ENGINE::Proc* _proc;
87    };
88   }
89 }
90
91 #endif // LISTJOBS_GUI_H