1 // Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : BlocksGUI_TrsfDlg.h
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
27 #ifndef BLOCKSGUI_TRSFDLG_H
28 #define BLOCKSGUI_TRSFDLG_H
30 #include <GEOMBase_Skeleton.h>
34 class SalomeApp_IntSpinBox;
39 //=================================================================================
40 // class : BlocksGUI_TrsfDlg
42 //=================================================================================
43 class BlocksGUI_TrsfDlg : public GEOMBase_Skeleton
47 enum { MainObj1, Face1, Face2, MainObj2, Face1U, Face2U, Face1V, Face2V };
48 enum { SpinBox1, SpinBox2U, SpinBox2V };
51 BlocksGUI_TrsfDlg (GeometryGUI*, QWidget*);
55 // redefined from GEOMBase_Helper
56 virtual GEOM::GEOM_IOperations_ptr createOperation();
57 virtual bool isValid (QString&);
58 virtual bool execute (ObjectList&);
59 virtual QList<GEOM::GeomObjPtr> getSourceObjects();
63 void enterEvent(QEvent*);
65 void createSelWg (const QString&, QPixmap&, QWidget*, const int);
66 void createSpinWg (const QString&, QWidget*, const int);
67 void activateSelection();
73 GEOM::GEOM_Object_var myShape;
74 QMap<int, int> myFaces;
76 // to initialize the first selection field with a selected object on the dialog creation
82 QMap<int, QPushButton*> mySelBtn;
83 QMap<int, QLineEdit*> mySelName;
84 QMap<int, SalomeApp_IntSpinBox*> mySpinBox;
89 void ActivateThisDialog();
90 void ConstructorsClicked (int);
92 void SelectionIntoArgument();
93 void SetEditCurrentArgument();
95 void ValueChangedInSpinBox (int);
98 #endif // BLOCKSGUI_TRSFDLG_H