Salome HOME
DCQ : Merge with Ecole_Ete_a6.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshInfosDlg.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_MeshInfosDlg.h
25 //  Author : Nicolas BARBEROU
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef SMESHGUI_MESHINFOSDLG_H
30 #define SMESHGUI_MESHINFOSDLG_H
31
32 // IDL Headers
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SMESH_Gen)
35 #include CORBA_SERVER_HEADER(SMESH_Mesh)
36
37 // QT Includes
38 #include <qdialog.h>
39
40 class QGroupBox;
41 class QLabel;
42 class QPushButton;
43 class SALOME_Selection;
44 class QWidgetStack;
45
46 class SMESHGUI_MeshInfosDlg : public QDialog
47
48     Q_OBJECT
49
50 public:
51     SMESHGUI_MeshInfosDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
52     ~SMESHGUI_MeshInfosDlg();
53
54 protected:
55     void closeEvent( QCloseEvent* e );
56     void windowActivationChange( bool oldActive );
57     void DumpMeshInfos();
58
59 private slots:
60     void onSelectionChanged();
61     void DeactivateActiveDialog() ;
62     void ActivateThisDialog();
63     void onStartSelection();
64
65 private:
66     SALOME_Selection*     mySelection; 
67     bool                  myStartSelection;
68     bool                  myIsActiveWindow;
69     
70     QPushButton*  mySelectBtn;
71     QLabel*       mySelectLab;
72
73     QWidgetStack* myWGStack;
74
75     QWidget*      myMeshWidget;
76     QLabel*       myMeshName;
77     QLabel*       myMeshNbNodes;
78     QLabel*       myMeshNbEdges;
79     QGroupBox*    myMeshFacesGroup;
80     QLabel*       myMeshNbFaces;
81     QLabel*       myMeshNbTriangles;
82     QLabel*       myMeshNbQuadrangles;
83     QGroupBox*    myMeshVolumesGroup;
84     QLabel*       myMeshNbVolumes;
85     QLabel*       myMeshNbTetra;
86     QLabel*       myMeshNbHexa;
87     QLabel*       myMeshNbPyra;
88     QLabel*       myMeshNbPrism;
89     
90     QWidget*      mySubMeshWidget;
91     QLabel*       mySubMeshName;
92     QLabel*       mySubMeshNbNodes;
93     QGroupBox*    mySubMeshElementsGroup;
94     QLabel*       mySubMeshNbElements;
95     QLabel*       mySubMeshNbEdges;
96     QLabel*       mySubMeshNbFaces;
97     QLabel*       mySubMeshNbVolumes;
98
99     QWidget*      myGroupWidget;
100     QLabel*       myGroupName;
101     QLabel*       myGroupType;
102     QLabel*       myGroupNb;
103
104     QGroupBox*   myButtonsGroup;
105     QPushButton* myOkBtn;
106 };
107
108 #endif // SMESHGUI_MESHINFOSDLG_H