Salome HOME
SALOME mode correction for dimension constraints editor.
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetEditor.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_WidgetEditor.h
4 // Created:     25 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef ModuleBase_WidgetEditor_H
8 #define ModuleBase_WidgetEditor_H
9
10 #include <ModuleBase.h>
11 #include "ModuleBase_WidgetDoubleValue.h"
12
13 #include <QObject>
14 #include <QStringList>
15
16 class ModelAPI_Feature;
17 class QLineEdit;
18
19 /**\class ModuleBase_WidgetEditor
20  * \ingroup GUI
21  * \brief Custom widget. An abstract class to be redefined to fill with some GUI controls
22  */
23 class MODULEBASE_EXPORT ModuleBase_WidgetEditor : public ModuleBase_WidgetDoubleValue
24 {
25 Q_OBJECT
26  public:
27   /// Constructor
28   /// \param theParent the parent object
29   /// \param theData the widget configuation. The attribute of the model widget is obtained from
30   /// \param theParentId is Id of a parent of the current attribute
31   ModuleBase_WidgetEditor(QWidget* theParent, const Config_WidgetAPI* theData,
32                           const std::string& theParentId);
33   /// Constructor
34   /// \param theParent the parent object
35   /// \param theAttribute The attribute of the model widget
36   ModuleBase_WidgetEditor(QWidget* theParent, const std::string& theAttribute);
37
38   /// Destructor
39   virtual ~ModuleBase_WidgetEditor();
40
41   /// Set focus to the first control of the current widget. The focus policy of the control is checked.
42   /// If the widget has the NonFocus focus policy, it is skipped.
43   /// \return the state whether the widget can accept the focus
44   virtual bool focusTo();
45
46    /// Shous popup window under cursor for data editing
47    void showPopupEditor();
48
49 protected slots:
50   void onKeyReleased(QKeyEvent* theEvent);
51
52 private:
53    void editedValue(double& outValue, QString& outText);
54
55  private:
56    ///< the current widget feature
57    FeaturePtr myFeature;  
58
59    ///< the kinds of possible features
60    QStringList myFeatureKinds;  
61
62    bool myIsKeyReleasedEmitted;
63 };
64
65 #endif