Salome HOME
e261ed585589f2fd8de45e7944b42996f0094d3b
[modules/geom.git] / src / GEOMGUI / GeometryGUI_ScaleDlg.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_ScaleDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_SCALE_H
30 #define DIALOGBOX_SCALE_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <gp_Pnt.hxx>
36
37 #include <qvariant.h>
38 #include <qdialog.h>
39
40 class QVBoxLayout; 
41 class QHBoxLayout; 
42 class QGridLayout;
43 class QButtonGroup;
44 class QGroupBox;
45 class QLabel;
46 class QLineEdit;
47 class QPushButton;
48 class QRadioButton;
49 class GeometryGUI;
50
51
52 //=================================================================================
53 // class    : GeometryGUI_ScaleDlg
54 // purpose  :
55 //=================================================================================
56 class GeometryGUI_ScaleDlg : public QDialog
57
58     Q_OBJECT
59
60 public:
61     GeometryGUI_ScaleDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
62     ~GeometryGUI_ScaleDlg();
63
64 private :
65  
66     void closeEvent( QCloseEvent* e ) ;
67     void enterEvent( QEvent* e );
68     void Init(SALOME_Selection* Sel) ;
69     void MakeScaleSimulationAndDisplay( const TopoDS_Shape& S ) ;
70
71     GEOM::GEOM_Gen_var myGeom ;                /* Current GeomI object */
72     GeometryGUI*          myGeomGUI ;             /* Current GeomGUI object */
73     TopoDS_Shape          mySimulationTopoDs ;    /* Shape used for simulation display */
74     SALOME_Selection*     mySelection ;           /* User shape selection */    
75     gp_Pnt                myPoint1 ;              /* Points containing the vector */
76     TopoDS_Shape          myBaseTopo ;
77     GEOM::GEOM_Shape_var        myGeomShape ;           /* is myBaseTopo */
78     Standard_Real         myFactor ;
79     bool                  myOkPoint1 ;            /* true when myPoint1 is defined */
80     bool                  myOkBaseTopo ;          /* true when myBaseTopo is defined */
81     int                   myConstructorId ;       /* Current constructor id = radio button id */ 
82     QLineEdit*            myEditCurrentArgument;  /* Current LineEdit */
83     Handle(GEOM_ShapeTypeFilter) myVertexFilter;  /* filter for selection */
84
85     QButtonGroup* GroupConstructors;
86     QRadioButton* Constructor1;
87     QGroupBox* GroupC1;
88     QLabel* TextLabelC1A1;
89     QLabel* TextLabelC1A2;
90     QPushButton* SelectButtonC1A1;
91     QPushButton* SelectButtonC1A2;
92     QLineEdit* LineEditC1A1;
93     QLineEdit* LineEditC1A2;
94     QLineEdit* LineEditC1A3;
95     QLabel* TextLabelC1A3;
96     QGroupBox* GroupButtons;
97     QPushButton* buttonApply;
98     QPushButton* buttonOk;
99     QPushButton* buttonCancel;
100
101 private slots :
102     
103     void ConstructorsClicked(int constructorId);
104     void ClickOnOk();
105     void ClickOnCancel();
106     void ClickOnApply();
107     void SetEditCurrentArgument() ;
108     void SelectionIntoArgument() ;
109     void LineEditReturnPressed() ;
110     void DeactivateActiveDialog() ;
111     void ActivateThisDialog() ; 
112     void TextChangedInLineEdit(const QString& newText) ;
113
114 protected:
115     QGridLayout* GeometryGUI_ScaleDlgLayout;
116     QGridLayout* GroupConstructorsLayout;
117     QGridLayout* GroupC1Layout;
118     QGridLayout* GroupButtonsLayout;
119 };
120
121 #endif // DIALOGBOX_SCALE_H