]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_InputPane.h
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/visu.git] / src / VISUGUI / VisuGUI_InputPane.h
1 //  VISU VISUGUI : GUI of VISU component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : VisuGUI_InputPane.h
25 //  Author : Oleg UVAROV
26 //  Module : VISU
27
28 #ifndef VISUGUI_INPUTPANE_H
29 #define VISUGUI_INPUTPANE_H
30
31 #include "VISUConfig.hh"
32
33 #include "SALOME_ListIO.hxx"
34
35 #include <qgroupbox.h>
36
37 class QCheckBox;
38 class QComboBox;
39 class QLineEdit;
40 class QListBoxItem;
41 class QToolButton;
42
43 class SalomeApp_Module;
44 class LightApp_SelectionMgr;
45
46 class VisuGUI_ListBox;
47 class VisuGUI_Prs3dDlg;
48 class VisuGUI_FieldFilter;
49
50 namespace VISU
51 {
52   class ColoredPrs3d_i;
53   class Result_i;
54 }
55
56 class VisuGUI_InputPane : public QGroupBox
57 {
58   Q_OBJECT
59
60 public:
61   VisuGUI_InputPane( VISU::VISUType theType,
62                      SalomeApp_Module* theModule,
63                      VisuGUI_Prs3dDlg* theDialog );
64   virtual ~VisuGUI_InputPane();
65
66 public:
67   virtual bool       check();
68   virtual void       clear();
69
70   void               initFromPrsObject( VISU::ColoredPrs3d_i* );
71   int                storeToPrsObject( VISU::ColoredPrs3d_i* );
72
73   bool               eventFilter (QObject* object, QEvent* event);
74
75 public slots:
76   virtual void       onSelectionChanged();
77   virtual void       onReInitialize( bool );
78   virtual void       changeTimeStamp( int );
79
80 private slots:
81   void               onTypeChanged();
82   void               onListDoubleClicked( QListBoxItem* theItem );
83   void               onAdd();
84   void               onRemove();
85
86 private:
87   SalomeApp_Module*  myModule;
88   VisuGUI_Prs3dDlg*  myDialog;
89   VISU::ColoredPrs3d_i* myPrs;
90
91   QGroupBox*         myUseGroupsGroupBox;
92   VisuGUI_ListBox*   myAllGroups;
93   VisuGUI_ListBox*   mySelectedGroups;
94   QToolButton*       myAddButton;
95   QToolButton*       myRemoveButton;
96
97   QGroupBox*         myDataSourceGroupBox;
98   QLineEdit*         myMedFile;
99   QLineEdit*         myMeshName;
100   QLineEdit*         myEntityName;
101   QLineEdit*         myFieldName;
102   QComboBox*         myTimeStamps;
103   QCheckBox*         myReInit;
104
105   VISU::Result_var   myResult;
106   int                myEntity;
107
108   VisuGUI_FieldFilter* myFieldFilter;
109   SALOME_ListIO        mySavedSelection;
110 };
111
112 #endif