Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetEditor.h
1 // File:        ModuleBase_WidgetEditor.h
2 // Created:     25 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef ModuleBase_WidgetEditor_H
6 #define ModuleBase_WidgetEditor_H
7
8 #include <ModuleBase.h>
9 #include "ModuleBase_WidgetDoubleValue.h"
10
11 #include <QObject>
12 #include <QStringList>
13
14 class ModelAPI_Feature;
15 class QLineEdit;
16
17 /**\class ModuleBase_WidgetEditor
18  * \ingroup GUI
19  * \brief Custom widget. An abstract class to be redefined to fill with some GUI controls
20  */
21 class MODULEBASE_EXPORT ModuleBase_WidgetEditor : public ModuleBase_WidgetDoubleValue
22 {
23 Q_OBJECT
24  public:
25   /// Constructor
26   /// \theParent the parent object
27   /// \theParent the parent object
28   /// \theData the widget configuation. The attribute of the model widget is obtained from
29   ModuleBase_WidgetEditor(QWidget* theParent, const Config_WidgetAPI* theData,
30                           const std::string& theParentId);
31   /// Constructor
32   /// \theParent the parent object
33   /// \theParent the parent object
34   /// \theData the widget configuation. The attribute of the model widget is obtained from
35   ModuleBase_WidgetEditor(QWidget* theParent, const std::string& theAttribute);
36
37   /// Destructor
38   virtual ~ModuleBase_WidgetEditor();
39
40   /// Set focus to the first control of the current widget. The focus policy of the control is checked.
41   /// If the widget has the NonFocus focus policy, it is skipped.
42   /// \return the state whether the widget can accept the focus
43   virtual bool focusTo();
44
45   /// Creates an editor for the real value and set the new value to the feature
46   /// \param theFeature the model feature
47   /// \param theAttribute the feature attribute
48   static void editFeatureValue(FeaturePtr theFeature, const std::string theAttribute);
49
50  private:
51   FeaturePtr myFeature;  ///< the current widget feature
52   QStringList myFeatureKinds;  ///< the kinds of possible features
53 };
54
55 #endif