Salome HOME
Fix for problem: Preferences-Mesh-General tab: Display modes ?Nodes? and ?Shrink...
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_StandardMeshInfosDlg.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_StandardMeshInfosDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef SMESHGUI_STANDARDMESHINFOSDLG_H
30 #define SMESHGUI_STANDARDMESHINFOSDLG_H
31
32 //#include "SMESH_TypeFilter.hxx"
33 #include "SUIT_SelectionFilter.h"
34
35 // QT Includes
36 #include <qdialog.h>
37
38 class QGroupBox;
39 class QLabel;
40 class QPushButton;
41 class QLineEdit;
42 class QTextBrowser;
43 class SalomeApp_SelectionMgr;
44 class SMESHGUI;
45
46
47 class SMESHGUI_StandardMeshInfosDlg : public QDialog
48
49     Q_OBJECT
50
51 public:
52     SMESHGUI_StandardMeshInfosDlg( SMESHGUI*, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
53     ~SMESHGUI_StandardMeshInfosDlg();
54
55 protected:
56     void closeEvent( QCloseEvent* e );
57     void windowActivationChange( bool oldActive );
58     void DumpMeshInfos();
59
60 private slots:
61     void onSelectionChanged();
62     void DeactivateActiveDialog() ;
63     void ActivateThisDialog();
64     void onStartSelection();
65
66 private:
67     SMESHGUI*                mySMESHGUI;
68     SalomeApp_SelectionMgr*  mySelectionMgr; 
69     bool                     myStartSelection;
70     bool                     myIsActiveWindow;
71     
72     //Handle(SMESH_TypeFilter) myMeshFilter;
73     SUIT_SelectionFilter*    myMeshFilter;
74
75     QLabel*       myNameLab;
76     QPushButton*  mySelectBtn;
77     QLineEdit*    myMeshLine;
78     
79     QTextBrowser* myInfo;
80     
81     QGroupBox*    myMeshGroup;
82     QGroupBox*    myInfoGroup;
83     
84     QGroupBox*    myButtonsGroup;
85     QPushButton*  myOkBtn;
86 };
87
88 #endif // SMESHGUI_STANDARDMESHINFOSDLG_H