]> SALOME platform Git repositories - modules/geom.git/blob - src/BasicGUI/BasicGUI_CurveDlg.h
Salome HOME
623d35570467205899af17a5c00b40fe2ea7279b
[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 //  $Header$
27
28 #ifndef BASICGUI_CURVE_H
29 #define BASICGUI_CURVE_H
30
31 #include "GEOMBase_Skeleton.h"
32 #include "DlgRef_1Sel_QTD.h"
33
34 #include "BasicGUI.h"
35 #if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
36 #define BASICGUI_WNT_EXPORT __declspec( dllexport )
37 #else
38 #define BASICGUI_WNT_EXPORT
39 #endif
40 //#include "GEOM_ShapeTypeFilter.hxx"
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* theGeometryGUI, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 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& objects );
59
60     virtual void closeEvent( QCloseEvent* e );    
61
62 private :
63     void Init();
64     void enterEvent(QEvent* e);
65
66     GeometryGUI* myGeometryGUI;
67
68     DlgRef_1Sel_QTD* GroupPoints;
69     GEOM::ListOfGO_var myPoints;
70
71 private slots:
72     void ClickOnOk();
73     void ClickOnCancel();
74     bool ClickOnApply();
75
76     void ActivateThisDialog();
77     void DeactivateActiveDialog();    
78     
79     void ConstructorsClicked( int );
80     void LineEditReturnPressed();
81     void SelectionIntoArgument();
82     void SetEditCurrentArgument();
83
84 };
85
86 #endif // BASICGUI_CURVE_H