X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetEditor.h;h=ded82628957ee54451f83046cd567772af409561;hb=5746238455553297ce5333502e6f27e6e5d9348b;hp=e2f67a0cbbf2ecd2576976f6046d2b0dbf0a76d4;hpb=712dfdf42f58bb738a0db2c051a405391151972f;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetEditor.h b/src/ModuleBase/ModuleBase_WidgetEditor.h index e2f67a0cb..ded826289 100644 --- a/src/ModuleBase/ModuleBase_WidgetEditor.h +++ b/src/ModuleBase/ModuleBase_WidgetEditor.h @@ -6,7 +6,7 @@ #define ModuleBase_WidgetEditor_H #include -#include "ModuleBase_ModelWidget.h" +#include "ModuleBase_WidgetDoubleValue.h" #include #include @@ -18,44 +18,42 @@ class QLineEdit; * \ingroup GUI * \brief Custom widget. An abstract class to be redefined to fill with some GUI controls */ -class MODULEBASE_EXPORT ModuleBase_WidgetEditor : public ModuleBase_ModelWidget +class MODULEBASE_EXPORT ModuleBase_WidgetEditor : public ModuleBase_WidgetDoubleValue { - Q_OBJECT -public: +Q_OBJECT + public: /// Constructor /// \theParent the parent object /// \theParent the parent object /// \theData the widget configuation. The attribute of the model widget is obtained from - ModuleBase_WidgetEditor(QWidget* theParent, const Config_WidgetAPI* theData); + ModuleBase_WidgetEditor(QWidget* theParent, const Config_WidgetAPI* theData, + const std::string& theParentId); + /// Constructor + /// \theParent the parent object + /// \theParent the parent object + /// \theData the widget configuation. The attribute of the model widget is obtained from + ModuleBase_WidgetEditor(QWidget* theParent, const std::string& theAttribute); + /// Destructor virtual ~ModuleBase_WidgetEditor(); - /// Saves the internal parameters to the given feature - /// \param theFeature a model feature to be changed - virtual bool storeValue(FeaturePtr theFeature) const; - - virtual bool restoreValue(FeaturePtr theFeature); - /// Set focus to the first control of the current widget. The focus policy of the control is checked. /// If the widget has the NonFocus focus policy, it is skipped. - virtual void focusTo(); - - /// Returns the internal parent wiget control, that can be shown anywhere - /// \returns the widget - QWidget* getControl() const; + /// \return the state whether the widget can accept the focus + virtual bool focusTo(); - /// Returns list of widget controls - /// \return a control list - virtual QList getControls() const; + /// Creates an editor for the real value and set the new value to the feature + /// \param theFeature the model feature + /// \param theAttribute the feature attribute + static void editFeatureValue(FeaturePtr theFeature, const std::string theAttribute); -protected slots: - /// Slot to check the editing stop - void onStopEditing(); + private slots: + /// Shous popup window under cursor for data editing + void showPopupEditor(); -private: - QLineEdit* myEditor; - FeaturePtr myFeature; ///< the current widget feature - QStringList myFeatureKinds; ///< the kinds of possible features + private: + FeaturePtr myFeature; ///< the current widget feature + QStringList myFeatureKinds; ///< the kinds of possible features }; #endif