]> SALOME platform Git repositories - modules/geom.git/blob - src/BlocksGUI/BlocksGUI_TrsfDlg.h
Salome HOME
NPAL 16768 Select Vertex from Vertex on Shape
[modules/geom.git] / src / BlocksGUI / BlocksGUI_TrsfDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  CEA
4 //
5 //  This library is free software; you can redistribute it and/or
6 //  modify it under the terms of the GNU Lesser General Public
7 //  License as published by the Free Software Foundation; either
8 //  version 2.1 of the License.
9 //
10 //  This library is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 //  Lesser General Public License for more details.
14 //
15 //  You should have received a copy of the GNU Lesser General Public
16 //  License along with this library; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 //
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 //
22 //
23 //  File   : BlocksGUI_TrsfDlg.h
24 //  Author : Julia DOROVSKIKH
25 //  Module : GEOM
26
27 #ifndef DIALOGBOX_BLOCK_MULTITRSF_H
28 #define DIALOGBOX_BLOCK_MULTITRSF_H
29
30 #include "GEOMBase_Skeleton.h"
31
32 class DlgRef_SpinBox;
33
34 //=================================================================================
35 // class    : BlocksGUI_TrsfDlg
36 // purpose  :
37 //=================================================================================
38 class BlocksGUI_TrsfDlg : public GEOMBase_Skeleton
39 {
40   Q_OBJECT
41
42   enum { MainObj1, Face1, Face2, MainObj2, Face1U, Face2U, Face1V, Face2V };
43   enum { SpinBox1, SpinBox2U, SpinBox2V };
44
45 public:
46   BlocksGUI_TrsfDlg (GeometryGUI*, QWidget* parent, bool modal = FALSE);
47   ~BlocksGUI_TrsfDlg();
48
49 protected:
50   // redefined from GEOMBase_Helper
51   virtual GEOM::GEOM_IOperations_ptr createOperation();
52   virtual bool                       isValid (QString& msg);
53   virtual bool                       execute (ObjectList& objects);
54
55 private:
56   void Init();
57   void enterEvent (QEvent* e);
58
59   void createSelWg (const QString&, QPixmap&, QWidget*, const int);
60   void activateSelection();
61   void enableWidgets();
62
63 private:
64   int                        myConstructorId;
65
66   GEOM::GEOM_Object_var      myShape;
67   QMap<int, int>             myFaces;
68
69   QFrame*                    myGrp1;
70   QFrame*                    myGrp2;
71
72   QMap<int, QPushButton*>    mySelBtn;
73   QMap<int, QLineEdit*>      mySelName;
74   QMap<int, DlgRef_SpinBox*> mySpinBox;
75
76 private slots:
77   void ClickOnOk();
78   bool ClickOnApply();
79   void ActivateThisDialog();
80   void ConstructorsClicked (int constructorId);
81
82   void SelectionIntoArgument();
83   void SetEditCurrentArgument();
84
85   void ValueChangedInSpinBox (double newValue);
86 };
87
88 #endif // DIALOGBOX_BLOCK_MULTITRSF_H