X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLineEdit.h;h=a977963c02f18d37f73c1a561e5721a6c3937ba1;hb=d0e479afb535cd9d6542d53302428a5c8e99485f;hp=09d02fae3dda726b77069c7d06698577806b09a3;hpb=f1cd93fd02a54259f72e3191d037323a496b2bef;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLineEdit.h b/src/ModuleBase/ModuleBase_WidgetLineEdit.h index 09d02fae3..a977963c0 100644 --- a/src/ModuleBase/ModuleBase_WidgetLineEdit.h +++ b/src/ModuleBase/ModuleBase_WidgetLineEdit.h @@ -20,35 +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: - ModuleBase_WidgetLineEdit(QWidget* theParent, - const Config_WidgetAPI* theData, - const std::string& theParentId); + /// Constructor + /// \param theParent the parent object + /// \param theData the widget configuration. + /// \param thePlaceHolder a string of placeholder + ModuleBase_WidgetLineEdit( QWidget* theParent, + const Config_WidgetAPI* theData, + const std::string& thePlaceHolder ); 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(); + /// Redefinition of virtual method + virtual QList getControls() const; - /// Returns the internal parent wiget control, that can be shown anywhere - /// \returns the widget - QWidget* getControl() const; + /// Returns true if the event is processed. + virtual bool processEnter(); - /// Returns list of widget controls - /// \return a control list - virtual QList getControls() const; +protected: + /// Saves the internal parameters to the given feature + /// \return True in success + virtual bool storeValueCustom(); - public slots: - void onTextChanged(); + /// Redefinition of virtual method + virtual bool restoreValueCustom(); - private: +private: + /// A line edit control QLineEdit* myLineEdit; - QWidget* myMainWidget; }; #endif /* MODULEBASE_WIDGETFILESELECTOR_H_ */