-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathSketcher_PropertyPoint.hxx
71 lines (54 loc) · 1.36 KB
/
Sketcher_PropertyPoint.hxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* \file Sketcher_PropertyPoint.hxx
* \brief Header file for the class Sketcher_PropertyPoint
* \author <a href="mailto:[email protected]?subject=Sketcher_PropertyPoint.hxx">Sergei Maslov</a>
*/
#ifndef Sketcher_PropertyPoint_H
#define Sketcher_PropertyPoint_H
#include "Sketcher_Property.hxx"
#include <Geom2d_CartesianPoint.hxx>
#include <Geom_CartesianPoint.hxx>
#include <AIS_Point.hxx>
//class editing point
class Sketcher_PropertyPoint : public Sketcher_Property
{
Q_OBJECT
public:
//methods
/**
* \fn Sketcher_PropertyPoint( QWidget* parent, const char* name, WFlags fl )
* \brief Constructs a Sketcher_PropertyPoint which is a child of 'parent', with the name 'name' and widget flags set to 'f'
* \param parent QWidget*
* \param name const char*
* \param fl WFlags
*/
Sketcher_PropertyPoint( QWidget* parent = 0, const char* name = 0);
/**
* \fn ~Sketcher_PropertyPoint()
* \brief destructor
*/
~Sketcher_PropertyPoint();
private:
//method
/**
* \fn SetGeometry()
* \brief show object geometry in dialog window
* \return void
*/
void SetGeometry();
/**
* \fn CheckGeometry()
* \brief check geometry for change
* \return bool
*/
bool CheckGeometry();
/**
* \fn GetGeometry()
* \brief create new object
* \return bool
*/
bool GetGeometry();
//members
Handle(Geom2d_CartesianPoint) curGeom2d_Point;
};
#endif // Sketcher_PropertyPoint_H