]> SALOME platform Git repositories - modules/geom.git/blob - src/TransformationGUI/TransformationGUI_ScaleDlg.h
Salome HOME
Update copyright information
[modules/geom.git] / src / TransformationGUI / TransformationGUI_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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : TransformationGUI_ScaleDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27
28 #ifndef DIALOGBOX_SCALE_H
29 #define DIALOGBOX_SCALE_H
30
31 #include "GEOMBase_Skeleton.h"
32
33 class QGridLayout;
34 class QCheckBox;
35 class QGroupBox;
36 class QLabel;
37 class QLineEdit;
38 class QPushButton;
39 class DlgRef_SpinBox;
40
41 //=================================================================================
42 // class    : TransformationGUI_ScaleDlg
43 // purpose  :
44 //=================================================================================
45 class TransformationGUI_ScaleDlg : public GEOMBase_Skeleton
46 {
47     Q_OBJECT
48
49 public:
50     TransformationGUI_ScaleDlg(GeometryGUI* theGeometryGUI, QWidget* parent = 0,
51                                const char* name = 0, bool modal = FALSE, WFlags fl = 0);
52     ~TransformationGUI_ScaleDlg();
53
54 protected:
55     // redefined from GEOMBase_Helper
56     virtual GEOM::GEOM_IOperations_ptr createOperation();
57     virtual bool isValid (QString&);
58     virtual bool execute (ObjectList& objects);
59     virtual void addSubshapesToStudy();
60     virtual void restoreSubShapes (SALOMEDS::Study_ptr, SALOMEDS::SObject_ptr);
61
62 private :
63     void Init();
64     void enterEvent (QEvent* e);
65
66     GEOM::ListOfGO myObjects;
67     GEOM::GEOM_Object_var myPoint;   /* Central Point */
68
69     QGroupBox* GroupBox1;
70
71     QLabel* TextLabel1;
72     QLabel* TextLabel2;
73
74     QPushButton* PushButton1;
75     QPushButton* PushButton2;
76
77     QLineEdit* LineEdit1;
78     QLineEdit* LineEdit2;
79
80     QLabel* TextLabel3;
81     QLabel* TextLabel4;
82     QLabel* TextLabel5;
83
84     DlgRef_SpinBox* SpinBox_FX;
85     DlgRef_SpinBox* SpinBox_FY;
86     DlgRef_SpinBox* SpinBox_FZ;
87
88     QCheckBox* CheckBoxCopy;
89
90     QGridLayout* GroupBox1Layout;
91     QGridLayout* OwnLayout;
92
93 private slots:
94     void ClickOnOk();
95     bool ClickOnApply();
96     void ActivateThisDialog();
97     void LineEditReturnPressed();
98     void SelectionIntoArgument();
99     void SetEditCurrentArgument();
100     void ConstructorsClicked (int constructorId);
101     void ValueChangedInSpinBox();
102     void CreateCopyModeChanged (bool isCreateCopy);
103 };
104
105 #endif // DIALOGBOX_SCALE_H