Salome HOME
IPAL21120 SIGSEGV on Meshing attached Compound with Automatic Hexadralization
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_StandardMeshInfosDlg.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_StandardMeshInfosDlg.h
24 //  Author : Michael ZORIN
25 //  Module : SMESH
26 //  $Header: 
27 //
28 #ifndef SMESHGUI_STANDARDMESHINFOSDLG_H
29 #define SMESHGUI_STANDARDMESHINFOSDLG_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 //#include "SMESH_TypeFilter.hxx"
34 #include "SUIT_SelectionFilter.h"
35
36 // QT Includes
37 #include <qdialog.h>
38
39 class QGroupBox;
40 class QLabel;
41 class QPushButton;
42 class QLineEdit;
43 class QTextBrowser;
44 class LightApp_SelectionMgr;
45 class SMESHGUI;
46
47
48 class SMESHGUI_EXPORT SMESHGUI_StandardMeshInfosDlg : public QDialog
49
50     Q_OBJECT
51
52 public:
53     SMESHGUI_StandardMeshInfosDlg( SMESHGUI*, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
54     ~SMESHGUI_StandardMeshInfosDlg();
55
56 protected:
57     void closeEvent( QCloseEvent* e );
58     void keyPressEvent( QKeyEvent* e );
59     void windowActivationChange( bool oldActive );
60     void DumpMeshInfos();
61
62 private slots:
63     void onSelectionChanged();
64     void DeactivateActiveDialog() ;
65     void ActivateThisDialog();
66     void onStartSelection();
67     void onHelp();
68
69 private:
70     SMESHGUI*                mySMESHGUI;
71     LightApp_SelectionMgr*   mySelectionMgr; 
72     bool                     myStartSelection;
73     bool                     myIsActiveWindow;
74     
75     //Handle(SMESH_TypeFilter) myMeshFilter;
76     SUIT_SelectionFilter*    myMeshFilter;
77
78     QLabel*       myNameLab;
79     QPushButton*  mySelectBtn;
80     QLineEdit*    myMeshLine;
81     
82     QTextBrowser* myInfo;
83     
84     QGroupBox*    myMeshGroup;
85     QGroupBox*    myInfoGroup;
86     
87     QGroupBox*    myButtonsGroup;
88     QPushButton*  myOkBtn;
89     QPushButton*  myHelpBtn;
90     
91     QString       myHelpFileName;
92 };
93
94 #endif // SMESHGUI_STANDARDMESHINFOSDLG_H