Salome HOME
Merge from V6_main 13/12/2012
[modules/paravis.git] / src / Plugins / MedReader / ParaViewPlugin / pqExtractGroupPanel.h
1 // Copyright (C) 2010-2012  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.
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 _pqExtractGroupPanel_h
21 #define _pqExtractGroupPanel_h
22
23 #include "pqNamedObjectPanel.h"
24
25 #include <QTreeWidget>
26 class pqTreeWidgetItemObject;
27
28 class vtkSMProperty;
29
30 class pqExtractGroupPanel: public pqNamedObjectPanel
31 {
32 Q_OBJECT
33   typedef pqNamedObjectPanel Superclass;
34 public:
35   /// constructor
36   pqExtractGroupPanel(pqProxy* proxy, QWidget* p = NULL);
37   /// destructor
38   ~pqExtractGroupPanel();
39
40 public slots:
41   // accept changes made by this panel
42   //virtual void accept();
43   // reset changes made by this panel
44   //virtual void reset();
45
46 protected slots:
47
48   void updateSIL();
49
50 protected:
51   /// populate widgets with properties from the server manager
52   virtual void linkServerManagerProperties();
53
54   class pqUI;
55   pqUI* UI;
56 };
57
58 #endif
59