Salome HOME
SMH: Preparation version 3.0.0 - merge (HEAD+POLYWORK)
[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
45 class SMESHGUI_StandardMeshInfosDlg : public QDialog
46
47     Q_OBJECT
48
49 public:
50     SMESHGUI_StandardMeshInfosDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
51     ~SMESHGUI_StandardMeshInfosDlg();
52
53 protected:
54     void closeEvent( QCloseEvent* e );
55     void windowActivationChange( bool oldActive );
56     void DumpMeshInfos();
57
58 private slots:
59     void onSelectionChanged();
60     void DeactivateActiveDialog() ;
61     void ActivateThisDialog();
62     void onStartSelection();
63
64 private:
65     SalomeApp_SelectionMgr*  mySelectionMgr; 
66     bool                     myStartSelection;
67     bool                     myIsActiveWindow;
68     
69     //Handle(SMESH_TypeFilter) myMeshFilter;
70     SUIT_SelectionFilter*    myMeshFilter;
71
72     QLabel*       myNameLab;
73     QPushButton*  mySelectBtn;
74     QLineEdit*    myMeshLine;
75     
76     QTextBrowser* myInfo;
77     
78     QGroupBox*    myMeshGroup;
79     QGroupBox*    myInfoGroup;
80     
81     QGroupBox*    myButtonsGroup;
82     QPushButton*  myOkBtn;
83 };
84
85 #endif // SMESHGUI_STANDARDMESHINFOSDLG_H