]> SALOME platform Git repositories - modules/geom.git/blob - src/BasicGUI/BasicGUI_CurveDlg.h
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 "GEOM_BasicGUI.hxx"
29
30 #include <GEOMBase_Skeleton.h>
31
32 #include <list>
33
34 class DlgRef_1Sel;
35
36 //=================================================================================
37 // class    : BasicGUI_CurveDlg
38 // purpose  :
39 //=================================================================================
40 class BASICGUI_EXPORT BasicGUI_CurveDlg : public GEOMBase_Skeleton
41
42   Q_OBJECT
43
44 public:
45   BasicGUI_CurveDlg( GeometryGUI*, QWidget* = 0,
46                      const char* = 0, bool = false, Qt::WindowFlags = 0 );
47   ~BasicGUI_CurveDlg();
48   
49 protected:
50   // redefined from GEOMBase_Helper
51   virtual GEOM::GEOM_IOperations_ptr createOperation();
52   virtual bool                       isValid( QString& );
53   virtual bool                       execute( ObjectList& );
54   
55   virtual void                       closeEvent( QCloseEvent* );
56
57 private:
58   void                               Init();
59   void                               enterEvent( QEvent* );
60
61 private:
62   DlgRef_1Sel*                       GroupPoints;
63   GEOM::ListOfGO_var                 myPoints;
64   list<GEOM::GEOM_Object_var>        myOrderedSel; //!< This list used for managing orderes selection
65
66 private slots:
67   void                               ClickOnOk();
68   void                               ClickOnCancel();
69   bool                               ClickOnApply();
70   
71   void                               ActivateThisDialog();
72   void                               DeactivateActiveDialog();    
73   
74   void                               ConstructorsClicked( int );
75   void                               LineEditReturnPressed();
76   void                               SelectionIntoArgument();
77   void                               SetEditCurrentArgument();
78 };
79
80 #endif // BASICGUI_CURVEDLG_H