Salome HOME
fix PAL8469. Updating the global mesh icon when local hypotheses are edited
[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 // QT Includes
33 #include <qdialog.h>
34
35 class QGroupBox;
36 class QLabel;
37 class QPushButton;
38 class SALOME_Selection;
39 class QWidgetStack;
40
41 class SMESHGUI_MeshInfosDlg : public QDialog
42
43     Q_OBJECT
44
45 public:
46     SMESHGUI_MeshInfosDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
47     ~SMESHGUI_MeshInfosDlg();
48
49 protected:
50     void closeEvent( QCloseEvent* e );
51     void windowActivationChange( bool oldActive );
52     void DumpMeshInfos();
53
54 private slots:
55     void onSelectionChanged();
56     void DeactivateActiveDialog() ;
57     void ActivateThisDialog();
58     void onStartSelection();
59
60 private:
61     SALOME_Selection*     mySelection; 
62     bool                  myStartSelection;
63     bool                  myIsActiveWindow;
64     
65     QPushButton*  mySelectBtn;
66     QLabel*       mySelectLab;
67
68     QWidgetStack* myWGStack;
69
70     QWidget*      myMeshWidget;
71     QLabel*       myMeshName;
72     QLabel*       myMeshNbNodes;
73     QLabel*       myMeshNbEdges;
74     QGroupBox*    myMeshFacesGroup;
75     QLabel*       myMeshNbFaces;
76     QLabel*       myMeshNbTriangles;
77     QLabel*       myMeshNbQuadrangles;
78     QGroupBox*    myMeshVolumesGroup;
79     QLabel*       myMeshNbVolumes;
80     QLabel*       myMeshNbTetra;
81     QLabel*       myMeshNbHexa;
82     QLabel*       myMeshNbPyra;
83     QLabel*       myMeshNbPrism;
84     
85     QWidget*      mySubMeshWidget;
86     QLabel*       mySubMeshName;
87     QLabel*       mySubMeshNbNodes;
88     QGroupBox*    mySubMeshElementsGroup;
89     QLabel*       mySubMeshNbElements;
90     QLabel*       mySubMeshNbEdges;
91     QLabel*       mySubMeshNbFaces;
92     QLabel*       mySubMeshNbVolumes;
93
94     QWidget*      myGroupWidget;
95     QLabel*       myGroupName;
96     QLabel*       myGroupType;
97     QLabel*       myGroupNb;
98
99     QGroupBox*   myButtonsGroup;
100     QPushButton* myOkBtn;
101 };
102
103 #endif // SMESHGUI_MESHINFOSDLG_H