Salome HOME
sources v1.2c
[modules/geom.git] / src / GEOMGUI / GeometryGUI_CenterMassDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry 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   : GeometryGUI_CenterMassDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27
28 #ifndef DIALOGBOX_CMASS_H
29 #define DIALOGBOX_CMASS_H
30
31 #include "SALOME_Selection.h"
32 #include "GEOM_ShapeTypeFilter.hxx"
33
34 #include <BRepGProp.hxx>
35 #include <GProp_GProps.hxx>
36 #include <GProp_PrincipalProps.hxx>
37
38 #include <qvariant.h>
39 #include <qdialog.h>
40
41 class QVBoxLayout; 
42 class QHBoxLayout; 
43 class QGridLayout; 
44 class QButtonGroup;
45 class QGroupBox;
46 class QLabel;
47 class QLineEdit;
48 class QPushButton;
49 class QRadioButton;
50 class GeometryGUI;
51
52 //=================================================================================
53 // class    : GeometryGUI_CenterMassDlg
54 // purpose  :
55 //=================================================================================
56 class GeometryGUI_CenterMassDlg : public QDialog
57
58     Q_OBJECT
59
60 public:
61     GeometryGUI_CenterMassDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
62     ~GeometryGUI_CenterMassDlg();
63
64 private:
65
66     void Init( SALOME_Selection* Sel ) ;
67     void closeEvent( QCloseEvent* e ) ;
68     void enterEvent ( QEvent * ) ;                /* mouse enter the QWidget */
69     bool CalculateAndDisplayCenterMass() ;
70
71     GEOM::GEOM_Gen_var myGeom ;                /* Current GeomI object */
72     GeometryGUI*          myGeomGUI ;             /* Current GeomGUI object */
73     SALOME_Selection*     mySelection ;           /* User shape selection */
74     TopoDS_Shape          mySimulationTopoDs;     /* Shape used for simulation display */
75
76     GEOM::GEOM_Shape_var        myGeomShape ;           /* is myBase */
77     TopoDS_Shape          myShape ;               /* Shape argument */
78     gp_Pnt                myCenterMass ;
79     bool                  myOkCenterMass ;        /* true after center of mass simulation calculation */
80     
81     int                   myConstructorId ;       /* Current constructor id = radio button id */
82     QLineEdit*            myEditCurrentArgument;  /* Current LineEdit */
83
84     QGroupBox* GroupButtons;
85     QPushButton* buttonOk;
86     QPushButton* buttonCancel;
87     QPushButton* buttonApply;
88     QButtonGroup* GroupConstructors;
89     QRadioButton* Constructor1;
90     QGroupBox* GroupC1;
91     QPushButton* SelectButtonC1A1;
92     QLineEdit* LineEdit_X;
93     QLabel* TextLabel_Z;
94     QLineEdit* LineEdit_Z;
95     QLabel* TextLabelC1A1;
96     QLineEdit* LineEdit_Y;
97     QLabel* TextLabel_Y;
98     QLabel* TextLabel_X;
99     QLabel* TextLabel_Center;
100     QLineEdit* LineEditC1A1;
101
102 private slots:
103
104     void ConstructorsClicked(int constructorId);
105     void ClickOnCancel();
106     void ClickOnOk() ;
107     void ClickOnApply();
108     void SetEditCurrentArgument() ;
109     void LineEditReturnPressed() ;
110     void SelectionIntoArgument() ;
111     void DeactivateActiveDialog() ;
112     void ActivateThisDialog() ;
113
114 protected:
115     QGridLayout* GeometryGUI_CenterMassDlgLayout;
116     QGridLayout* GroupButtonsLayout;
117     QGridLayout* GroupConstructorsLayout;
118     QGridLayout* GroupC1Layout;
119 };
120
121 #endif // DIALOGBOX_CMASS_H