Salome HOME
a973ef693bf4951c8d4d8ed21b09f6227ac2f77c
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetPoint2D.h
1 // File:        ModuleBase_WidgetPoint2D.h
2 // Created:     25 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef ModuleBase_WidgetPoint2D_H
6 #define ModuleBase_WidgetPoint2D_H
7
8 #include <ModuleBase.h>
9 #include "ModuleBase_WidgetCustom.h"
10
11 #include <QObject>
12
13 class ModelAPI_Feature;
14
15 class QGroupBox;
16 class QDoubleSpinBox;
17
18 /**\class ModuleBase_WidgetPoint2D
19  * \ingroup GUI
20  * \brief Custom widget. An abstract class to be redefined to fill with some GUI controls
21  */
22 class MODULEBASE_EXPORT ModuleBase_WidgetPoint2D : public ModuleBase_WidgetCustom
23 {
24   Q_OBJECT
25 public:
26   /// Constructor
27   /// \theParent the parent object
28   /// \theTitle the group box title
29   /// \theFeatureAttributeID the identifier of the feature attribute
30   ModuleBase_WidgetPoint2D(QWidget* theParent, QString theTitle,
31                            const std::string& theFeatureAttributeID);
32   /// Destructor
33   virtual ~ModuleBase_WidgetPoint2D();
34
35   /// Saves the internal parameters to the given feature
36   /// \param theFeature a model feature to be changed
37   virtual void store(boost::shared_ptr<ModelAPI_Feature> theFeature);
38
39   /// Returns the internal parent wiget control, that can be shown anywhere
40   /// \returns the widget
41   QWidget* getControl() const;
42
43 private:
44   std::string myFeatureAttributeID; ///< the identifier of the feature attribute
45   QGroupBox* myGroupBox; ///< the parent group box for all intenal widgets
46   QDoubleSpinBox* myXSpin; ///< the spin box for the X coordinate
47   QDoubleSpinBox* myYSpin; ///< the spin box for the Y coordinate
48 };
49
50 #endif