Version: 9.12.0
BasicGUI_CurveDlg.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2023 CEA, EDF, 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;
41 
42 //=================================================================================
43 // class : BasicGUI_CurveDlg
44 // purpose :
45 //=================================================================================
47 {
48  Q_OBJECT
49 
50 public:
51  BasicGUI_CurveDlg (GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0);
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;
72 
73  QPushButton* myPushBtnV1;
74  QPushButton* myPushBtnV2;
75  QLineEdit* myLineEditV1;
76  QLineEdit* myLineEditV2;
77 
78  QList<GEOM::GeomObjPtr> myPoints;
80 
81 private slots:
82  void ClickOnOk();
83  bool ClickOnApply();
84 
85  void ActivateThisDialog();
87 
88  void ConstructorsClicked (int);
89  void CheckButtonToggled();
90  void SelectionIntoArgument();
92  void CreationModeChanged();
93  void ValueChangedInSpinBox (double/*theValue*/);
94  void ValueChangedInSpinBox (int /*theValue*/);
95  void OnEditingFinished();
96 };
97 
98 #endif // BASICGUI_CURVEDLG_H
std::list< GEOM::GEOM_Object_ptr > ObjectList
Definition: GEOMBase_Helper.h:46
Definition: BasicGUI_CurveDlg.h:47
void ActivateThisDialog()
Definition: BasicGUI_CurveDlg.cxx:387
void SelectionIntoArgument()
Definition: BasicGUI_CurveDlg.cxx:351
QList< GEOM::GeomObjPtr > myPoints
Definition: BasicGUI_CurveDlg.h:78
virtual void addSubshapesToStudy()
Definition: BasicGUI_CurveDlg.cxx:540
QLineEdit * myLineEditV1
Definition: BasicGUI_CurveDlg.h:75
void enterEvent(QEvent *)
Definition: BasicGUI_CurveDlg.cxx:411
void ValueChangedInSpinBox(double)
Definition: BasicGUI_CurveDlg.cxx:571
GEOM::GeomObjPtr myVec1
Definition: BasicGUI_CurveDlg.h:79
void Init()
Definition: BasicGUI_CurveDlg.cxx:170
QPushButton * myPushBtnV1
Definition: BasicGUI_CurveDlg.h:73
virtual bool execute(ObjectList &)
Definition: BasicGUI_CurveDlg.cxx:459
void CheckButtonToggled()
Definition: BasicGUI_CurveDlg.cxx:308
void ConstructorsClicked(int)
Definition: BasicGUI_CurveDlg.cxx:237
bool ClickOnApply()
Definition: BasicGUI_CurveDlg.cxx:341
QPushButton * myPushBtnV2
Definition: BasicGUI_CurveDlg.h:74
GEOM::GeomObjPtr myVec2
Definition: BasicGUI_CurveDlg.h:79
void OnEditingFinished()
Definition: BasicGUI_CurveDlg.cxx:589
DlgRef_1Sel3Check * myGroupPoints
Definition: BasicGUI_CurveDlg.h:69
BasicGUI_ParamCurveWidget * myGroupParams
Definition: BasicGUI_CurveDlg.h:70
BasicGUI_CurveDlg(GeometryGUI *, QWidget *=0, bool=false, Qt::WindowFlags=0)
Definition: BasicGUI_CurveDlg.cxx:59
virtual bool isValid(QString &)
Definition: BasicGUI_CurveDlg.cxx:430
void SetEditCurrentArgument()
Definition: BasicGUI_CurveDlg.cxx:277
virtual GEOM::GEOM_IOperations_ptr createOperation()
Definition: BasicGUI_CurveDlg.cxx:421
void ClickOnOk()
Definition: BasicGUI_CurveDlg.cxx:330
void DeactivateActiveDialog()
Definition: BasicGUI_CurveDlg.cxx:401
QRadioButton * myAnaliticalBtn
Definition: BasicGUI_CurveDlg.h:67
QLineEdit * myLineEditV2
Definition: BasicGUI_CurveDlg.h:76
virtual QList< GEOM::GeomObjPtr > getSourceObjects()
Definition: BasicGUI_CurveDlg.cxx:550
QRadioButton * myBySelectionBtn
Definition: BasicGUI_CurveDlg.h:68
void CreationModeChanged()
Definition: BasicGUI_CurveDlg.cxx:558
~BasicGUI_CurveDlg()
Definition: BasicGUI_CurveDlg.cxx:162
QGroupBox * myGroupTangents
Definition: BasicGUI_CurveDlg.h:71
Definition: BasicGUI_ParamCurveWidget.h:35
Definition: DlgRef.h:221
Definition: GEOMBase_Skeleton.h:53
Definition: GeometryGUI.h:74
GenericObjPtr< GEOM::GEOM_Object > GeomObjPtr
Definition: GEOM_GenericObjPtr.h:218