Salome HOME
0020321: EDF : Some windows do not appear depending on the platform (MinimumSizeHint())
[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, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_WHATISDLG_H
27 #define SMESHGUI_WHATISDLG_H
28
29 // Qt includes
30 #include <QDialog>
31
32 // IDL includes
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SMESH_Mesh)
35
36 class QGroupBox;
37 class QLabel;
38 class QLineEdit;
39 class QPushButton;
40 class QRadioButton;
41 class QTextBrowser;
42 class SMESHGUI;
43 class SMESH_Actor;
44 class SVTK_Selector;
45 class LightApp_SelectionMgr;
46 class SMESH_LogicalFilter;
47
48 //=================================================================================
49 // class    : SMESHGUI_WhatIsDlg
50 // purpose  :
51 //=================================================================================
52 class SMESHGUI_WhatIsDlg : public QDialog
53
54   Q_OBJECT
55    
56 public:
57   SMESHGUI_WhatIsDlg( SMESHGUI* );
58   ~SMESHGUI_WhatIsDlg();
59   
60 private:
61   void                          Init( bool = true );
62   void                          closeEvent( QCloseEvent* );
63   void                          enterEvent( QEvent* );         /* mouse enter the QWidget */
64   void                          hideEvent( QHideEvent* );      /* ESC key */
65   void                          keyPressEvent( QKeyEvent* );
66
67   SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
68   LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
69
70   SVTK_Selector*                mySelector;
71
72   bool                          myBusy;
73   SMESH::SMESH_Mesh_var         myMesh;
74   SMESH_Actor*                  myActor;
75   SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
76
77   QGroupBox*                    GroupSelections;
78   QRadioButton*                 RadioButtonNodes;
79   QRadioButton*                 RadioButtonElements;
80   QGroupBox*                    GroupButtons;
81   QPushButton*                  buttonOk;
82   QPushButton*                  buttonHelp;
83   QGroupBox*                    GroupArguments;
84   QGroupBox*                    GroupMesh;
85   QLabel*                       TextLabelElements;
86   QLineEdit*                    LineEditElements;
87   QLabel*                       MeshLabel;
88   QLineEdit*                    MeshName;
89
90   QTextBrowser*                 Info;
91     
92   QString                       myHelpFileName;
93
94 private slots:
95   void                          SelectionsClicked( int );
96   void                          ClickOnOk();
97   void                          ClickOnCancel();
98   void                          ClickOnHelp();
99   void                          SelectionIntoArgument();
100   void                          DeactivateActiveDialog();
101   void                          ActivateThisDialog();
102   void                          onTextChange( const QString& );
103 };
104
105 #endif // SMESHGUI_WHATISDLG_H