Salome HOME
Updated copyright comment
[modules/jobmanager.git] / src / genericgui / JM_ResourceCatalog.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_RESOURCECATALOG_HXX_
21 #define _JM_RESOURCECATALOG_HXX_
22
23 #include "BL_SALOMEServices.hxx"
24
25 #include <QWidget>
26 #include <string>
27 #include <list>
28
29 class QListWidget;
30 class QListWidgetItem;
31 class QPushButton;
32
33 namespace JM 
34 {
35   class ResourceCatalog: public QWidget
36   {
37     Q_OBJECT
38
39     public:
40       ResourceCatalog(QWidget *parent, BL::SALOMEServices * salome_services, bool batch_only);
41       virtual ~ResourceCatalog();
42
43       void get_infos();
44
45       QListWidget * getQListWidget();
46
47     public slots:
48       void refresh_resource_list();
49       void item_choosed(QListWidgetItem * item);
50       void buttons_management();
51       void show_button();
52       void edit_button();
53       void add_button();
54       void remove_button();
55
56     protected:
57       QWidget* _parent;
58       BL::SALOMEServices * _salome_services;
59
60       QPushButton * _refresh_button;
61       QPushButton * _show_button;
62       QPushButton * _edit_button;
63       QPushButton * _add_button;
64       QPushButton * _remove_button;
65       QListWidget * _resource_files_list;
66       bool _batch_only;
67   };
68 }
69
70 #endif
71
72