Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
20 //
21 //
22 //
23 //  File   : BasicGUI_CurveDlg.h
24 //  Author : Alexander SLADKOV
25 //  Module : GEOM
26
27 #ifndef BASICGUI_CURVE_H
28 #define BASICGUI_CURVE_H
29
30 #include "GEOMBase_Skeleton.h"
31 #include "DlgRef_1Sel_QTD.h"
32
33 #include "BasicGUI.h"
34
35 #include <list>
36
37 #if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
38 #define BASICGUI_WNT_EXPORT __declspec( dllexport )
39 #else
40 #define BASICGUI_WNT_EXPORT
41 #endif
42
43 //=================================================================================
44 // class    : BasicGUI_CurveDlg
45 // purpose  :
46 //=================================================================================
47 class BasicGUI_CurveDlg : public GEOMBase_Skeleton
48
49     Q_OBJECT
50
51 public:
52     BasicGUI_CurveDlg(GeometryGUI* theGeometryGUI, QWidget* parent = 0,
53                       const char* name = 0, bool modal = FALSE, WFlags fl = 0);
54     ~BasicGUI_CurveDlg();
55
56 protected:
57     // redefined from GEOMBase_Helper
58     virtual GEOM::GEOM_IOperations_ptr createOperation();
59     virtual bool isValid( QString& );
60     virtual bool execute( ObjectList& objects );
61
62     virtual void closeEvent( QCloseEvent* e );    
63
64 private :
65     void Init();
66     void enterEvent(QEvent* e);
67
68     DlgRef_1Sel_QTD* GroupPoints;
69     GEOM::ListOfGO_var myPoints;
70     list<GEOM::GEOM_Object_var> myOrderedSel;//!< This list used for managing orderes selection
71
72 private slots:
73     void ClickOnOk();
74     void ClickOnCancel();
75     bool ClickOnApply();
76
77     void ActivateThisDialog();
78     void DeactivateActiveDialog();    
79     
80     void ConstructorsClicked( int );
81     void LineEditReturnPressed();
82     void SelectionIntoArgument();
83     void SetEditCurrentArgument();
84
85 };
86
87 #endif // BASICGUI_CURVE_H