Salome HOME
fc6485ad82d4d7eab9689d0adec33f48cc79a53d
[modules/geom.git] / src / BasicGUI / BasicGUI_CurveDlg.h
1 // Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : BasicGUI_CurveDlg.h
25 // Author : Alexander SLADKOV, Open CASCADE S.A.S. (alexander.sladkov@opencascade.com)
26
27 #ifndef BASICGUI_CURVEDLG_H
28 #define BASICGUI_CURVEDLG_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include "GEOM_GenericObjPtr.h"
32
33 #include <list>
34
35 class DlgRef_1Sel3Check;
36 class QRadioButton;
37 class QPushButton;
38 class QLineEdit;
39 class QGroupBox;
40 class BasicGUI_ParamCurveWidget;
41
42 //=================================================================================
43 // class    : BasicGUI_CurveDlg
44 // purpose  :
45 //=================================================================================
46 class BasicGUI_CurveDlg : public GEOMBase_Skeleton
47 {
48   Q_OBJECT
49
50 public:
51   BasicGUI_CurveDlg (GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0);
52   ~BasicGUI_CurveDlg();
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&);
59   virtual void                       addSubshapesToStudy();
60   virtual QList<GEOM::GeomObjPtr>    getSourceObjects();
61
62 private:
63   void                               Init();
64   void                               enterEvent (QEvent*);
65
66 private:
67   QRadioButton*                      myAnaliticalBtn;
68   QRadioButton*                      myBySelectionBtn;
69   DlgRef_1Sel3Check*                 myGroupPoints;
70   BasicGUI_ParamCurveWidget*         myGroupParams;
71   QGroupBox*                         myGroupTangents;
72
73   QPushButton*                       myPushBtnV1;
74   QPushButton*                       myPushBtnV2;
75   QLineEdit*                         myLineEditV1;
76   QLineEdit*                         myLineEditV2;
77
78   QList<GEOM::GeomObjPtr>            myPoints;
79   GEOM::GeomObjPtr                   myVec1, myVec2;
80
81 private slots:
82   void                               ClickOnOk();
83   bool                               ClickOnApply();
84
85   void                               ActivateThisDialog();
86   void                               DeactivateActiveDialog();
87
88   void                               ConstructorsClicked (int);
89   void                               CheckButtonToggled();
90   void                               SelectionIntoArgument();
91   void                               SetEditCurrentArgument();
92   void                               CreationModeChanged();
93   void                               ValueChangedInSpinBox (double/*theValue*/);
94   void                               ValueChangedInSpinBox (int   /*theValue*/);
95   void                               OnEditingFinished();
96 };
97
98 #endif // BASICGUI_CURVEDLG_H