]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_WidgetEditor.h
Salome HOME
db9dd1cc422f65dbef5030a98a11c92daeadd860
[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   ModuleBase_WidgetEditor(QWidget* theParent, const Config_WidgetAPI* theData);
31   /// Constructor
32   /// \param theParent the parent object
33   /// \param theAttribute The attribute of the model widget
34   ModuleBase_WidgetEditor(QWidget* theParent, const std::string& theAttribute);
35
36   /// Destructor
37   virtual ~ModuleBase_WidgetEditor();
38
39   /// Set focus to the first control of the current widget. The focus policy of the control is checked.
40   /// If the widget has the NonFocus focus policy, it is skipped.
41   /// \return the state whether the widget can accept the focus
42   virtual bool focusTo();
43
44   /// Shous popup window under cursor for data editing
45   /// \param theSendSignals a flag whether the signals should be sent or the value
46   /// is to be applyed directly
47   void showPopupEditor(const bool theSendSignals = true);
48
49   void setCursorPosition(const int theX, const int theY);
50
51 private:
52    void editedValue(double& outValue, QString& outText);
53
54  private:
55    ///< the current widget feature
56    FeaturePtr myFeature;  
57
58    ///< the kinds of possible features
59    QStringList myFeatureKinds;  
60
61    int myXPosition, myYPosition;
62 };
63
64 #endif