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