Salome HOME
c36370f421faa513f9cbf9209e2a5f071aebfa1e
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_WhatIsDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  SMESH SMESHGUI : GUI for SMESH component
23 //  File   : SMESHGUI_WhatIsDlg.h
24 //  Author : Vladimir TURIN
25 //  Module : SMESH
26 //  $Header: 
27 //
28 #ifndef SMESHGUI_WHATISDLG_H
29 #define SMESHGUI_WHATISDLG_H
30
31 #include "LightApp_SelectionMgr.h"
32
33 #include "SMESH_LogicalFilter.hxx"
34
35 // QT Includes
36 #include <qdialog.h>
37
38 class QGridLayout; 
39 class QButtonGroup;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class QCheckBox;
46 class QTextBrowser;
47 class SMESHGUI;
48 class SMESHGUI_SpinBox;
49 class SMESH_Actor;
50 class SVTK_ViewWindow;
51 class SVTK_Selector;
52
53 // IDL Headers
54 #include <SALOMEconfig.h>
55 #include CORBA_SERVER_HEADER(SMESH_Mesh)
56
57
58 //=================================================================================
59 // class    : SMESHGUI_WhatIsDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_WhatIsDlg : public QDialog
63
64   Q_OBJECT
65     
66 public:
67
68   SMESHGUI_WhatIsDlg( SMESHGUI*,
69                       const char* name = 0,
70                       bool modal = FALSE,
71                       WFlags fl = 0);
72   ~SMESHGUI_WhatIsDlg();
73   
74 private:
75
76   void Init (bool ResetControls = true);
77   void closeEvent (QCloseEvent*);
78   void enterEvent (QEvent*);                             /* mouse enter the QWidget */
79   void hideEvent (QHideEvent*);                          /* ESC key */
80   void keyPressEvent(QKeyEvent*);
81
82   SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
83   LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
84
85   SVTK_Selector*                mySelector;
86
87   bool                          myBusy;
88   SMESH::SMESH_Mesh_var         myMesh;
89   SMESH_Actor*                  myActor;
90   SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
91
92   QButtonGroup* GroupSelections;
93   QRadioButton* RadioButtonNodes;
94   QRadioButton* RadioButtonElements;
95   QGroupBox* GroupButtons;
96   QPushButton* buttonOk;
97   QPushButton* buttonHelp;
98   QGroupBox* GroupArguments;
99   QGroupBox* GroupMesh;
100   QLabel* TextLabelElements;
101   QLineEdit* LineEditElements;
102   QLabel* MeshLabel;
103   QLabel* MeshName;
104
105   QTextBrowser* Info;
106     
107   QString myHelpFileName;
108
109 private slots:
110
111   void SelectionsClicked(int selectionId);
112   void ClickOnOk();
113   void ClickOnCancel();
114   void ClickOnHelp();
115   void SelectionIntoArgument() ;
116   void DeactivateActiveDialog() ;
117   void ActivateThisDialog() ;
118   void onTextChange(const QString&);
119     
120 protected:
121
122   QGridLayout* SMESHGUI_WhatIsDlgLayout;
123   QGridLayout* GroupSelectionsLayout;
124   QGridLayout* GroupMeshLayout;
125   QGridLayout* GroupButtonsLayout;
126   QGridLayout* GroupArgumentsLayout;
127 };
128
129 #endif // SMESHGUI_WHATISDLG_H