X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLineEdit.h;h=a5955f84c3ee86f606bccdd267f29c6d6bfd683d;hb=a2982d2108f929cf9e7f996cfd590c4ce59dc21c;hp=09d02fae3dda726b77069c7d06698577806b09a3;hpb=38afbd899a8645c83e17f2c24a17a2b7414911b4;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLineEdit.h b/src/ModuleBase/ModuleBase_WidgetLineEdit.h index 09d02fae3..a5955f84c 100644 --- a/src/ModuleBase/ModuleBase_WidgetLineEdit.h +++ b/src/ModuleBase/ModuleBase_WidgetLineEdit.h @@ -20,34 +20,41 @@ class QWidget; class QLineEdit; +/** +* \ingroup GUI +* Implementation of model widget for line edit widget. +* It can be defined with "stringvalue" keyword. +*/ class MODULEBASE_EXPORT ModuleBase_WidgetLineEdit : public ModuleBase_ModelWidget { Q_OBJECT public: + /// Constructor + /// \param theParent the parent object + /// \param theData the widget configuation. The attribute of the model widget is obtained from + /// \param theParentId is Id of a parent of the current attribute ModuleBase_WidgetLineEdit(QWidget* theParent, const Config_WidgetAPI* theData, const std::string& theParentId); virtual ~ModuleBase_WidgetLineEdit(); - /// Saves the internal parameters to the given feature - /// \param theObject a model feature to be changed virtual bool storeValue() const; virtual bool restoreValue(); - /// Returns the internal parent wiget control, that can be shown anywhere - /// \returns the widget QWidget* getControl() const; - /// Returns list of widget controls - /// \return a control list virtual QList getControls() const; public slots: + /// A slot for processing text changed event void onTextChanged(); private: + /// A line edit control QLineEdit* myLineEdit; + + /// A container widget QWidget* myMainWidget; };