X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetLineEdit.h;h=5b6b22e57e16848e130575753a6539beec46fb60;hb=2413ba5e387ebc030eb89aaad917991844ae518d;hp=92eff345980ebcd3fa98e57d3e4600e9c597d7ea;hpb=758a57d77b6fa3a0485fa3378a1280c7e87a74aa;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetLineEdit.h b/src/ModuleBase/ModuleBase_WidgetLineEdit.h index 92eff3459..5b6b22e57 100644 --- a/src/ModuleBase/ModuleBase_WidgetLineEdit.h +++ b/src/ModuleBase/ModuleBase_WidgetLineEdit.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + /* * ModuleBase_WidgetLineEdit.h * @@ -18,35 +20,43 @@ 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 theParentId is Id of a parent of the current attribute + /// \param thePlaceHolder a string of placeholder + ModuleBase_WidgetLineEdit( QWidget* theParent, + const Config_WidgetAPI* theData, + const std::string& theParentId, + 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() const; - 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_ */