Salome HOME
*** empty log message ***
[modules/geom.git] / src / BasicGUI / BasicGUI_CurveDlg.h
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2003  OPEN CASCADE 
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 // File   : BasicGUI_CurveDlg.h
22 // Author : Alexander SLADKOV, Open CASCADE S.A.S. (alexander.sladkov@opencascade.com)
23 //
24
25 #ifndef BASICGUI_CURVEDLG_H
26 #define BASICGUI_CURVEDLG_H
27
28 #include <GEOMBase_Skeleton.h>
29
30 #include <list>
31
32 class DlgRef_1Sel;
33
34 //=================================================================================
35 // class    : BasicGUI_CurveDlg
36 // purpose  :
37 //=================================================================================
38 class BasicGUI_CurveDlg : public GEOMBase_Skeleton
39
40   Q_OBJECT
41
42 public:
43   BasicGUI_CurveDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
44   ~BasicGUI_CurveDlg();
45   
46 protected:
47   // redefined from GEOMBase_Helper
48   virtual GEOM::GEOM_IOperations_ptr createOperation();
49   virtual bool                       isValid( QString& );
50   virtual bool                       execute( ObjectList& );
51   
52   virtual void                       closeEvent( QCloseEvent* );
53
54 private:
55   void                               Init();
56   void                               enterEvent( QEvent* );
57
58 private:
59   DlgRef_1Sel*                       GroupPoints;
60   GEOM::ListOfGO_var                 myPoints;
61   list<GEOM::GEOM_Object_var>        myOrderedSel; //!< This list used for managing orderes selection
62
63 private slots:
64   void                               ClickOnOk();
65   bool                               ClickOnApply();
66   
67   void                               ActivateThisDialog();
68   void                               DeactivateActiveDialog();    
69   
70   void                               ConstructorsClicked( int );
71   void                               LineEditReturnPressed();
72   void                               SelectionIntoArgument();
73   void                               SetEditCurrentArgument();
74 };
75
76 #endif // BASICGUI_CURVEDLG_H