Salome HOME
Merge branch 'fbt/add_header_for_mpi_compilation'
[modules/geom.git] / src / BasicGUI / BasicGUI_CurveDlg.h
1 // Copyright (C) 2007-2015  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
61 private:
62   void                               Init();
63   void                               enterEvent (QEvent*);
64
65 private:
66   QRadioButton*                      myAnaliticalBtn;
67   QRadioButton*                      myBySelectionBtn;
68   DlgRef_1Sel3Check*                 myGroupPoints;
69   BasicGUI_ParamCurveWidget*         myGroupParams;
70   QGroupBox*                         myGroupTangents;
71
72   QPushButton*                       myPushBtnV1;
73   QPushButton*                       myPushBtnV2;
74   QLineEdit*                         myLineEditV1;
75   QLineEdit*                         myLineEditV2;
76
77   QList<GEOM::GeomObjPtr>            myPoints;
78   GEOM::GeomObjPtr                   myVec1, myVec2;
79
80 private slots:
81   void                               ClickOnOk();
82   bool                               ClickOnApply();
83
84   void                               ActivateThisDialog();
85   void                               DeactivateActiveDialog();
86
87   void                               ConstructorsClicked (int);
88   void                               CheckButtonToggled();
89   void                               SelectionIntoArgument();
90   void                               SetEditCurrentArgument();
91   void                               CreationModeChanged();
92   void                               ValueChangedInSpinBox (double/*theValue*/);
93   void                               ValueChangedInSpinBox (int   /*theValue*/);
94   void                               OnEditingFinished();
95 };
96
97 #endif // BASICGUI_CURVEDLG_H