X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftext-controls%2Ftext-field-impl.h;h=329d7b5a708b57e1cb998150fbed7d6b9ed27cdf;hp=c5723bd871ad6139d728760edf75fb345898cce8;hb=27e7fb1ad1e36527c7af8b739ec49ac19b4ff309;hpb=c7f57d1d83deccfeb8c96f6f3c583f8e155e878b diff --git a/dali-toolkit/internal/controls/text-controls/text-field-impl.h b/dali-toolkit/internal/controls/text-controls/text-field-impl.h index c5723bd..329d7b5 100755 --- a/dali-toolkit/internal/controls/text-controls/text-field-impl.h +++ b/dali-toolkit/internal/controls/text-controls/text-field-impl.h @@ -103,16 +103,6 @@ public: */ Toolkit::TextField::InputStyleChangedSignalType& InputStyleChangedSignal(); - /** - * @brief Called to select the whole texts. - */ - void SelectWholeText(); - - /** - * @brief Called to unselect the whole texts. - */ - void SelectNone(); - private: // From Control /** @@ -185,26 +175,25 @@ private: // From Control // From EditableControlInterface /** - * @copydoc Text::ControlInterface::TextChanged() + * @copydoc Text::EditableControlInterface::TextChanged() */ void TextChanged() override; /** - * @copydoc Text::ControlInterface::MaxLengthReached() + * @copydoc Text::EditableControlInterface::MaxLengthReached() */ void MaxLengthReached() override; /** - * @copydoc Text::ControlInterface::InputStyleChanged() + * @copydoc Text::EditableControlInterface::InputStyleChanged() */ void InputStyleChanged( Text::InputStyle::Mask inputStyleMask ) override; /** - * @copydoc Text::ControlInterface::AddDecoration() + * @copydoc Text::EditableControlInterface::AddDecoration() */ void AddDecoration( Actor& actor, bool needsClipping ) override; - // From SelectableControlInterface public: /** @@ -217,6 +206,31 @@ public: */ Uint32Pair GetTextSelectionRange() const override; + /** + * @copydoc Text::SelectableControlInterface::SelectWholeText() + */ + void SelectWholeText() override; + + /** + * @copydoc Text::SelectableControlInterface::SelectNone() + */ + void SelectNone() override; + + /** + * @copydoc Text::SelectableControlInterface::GetSelectedText() + */ + string GetSelectedText() const override; + + /** + * @copydoc Text::EditableControlInterface::IsEditable() + */ + bool IsEditable() const override; + + /** + * @copydoc Text::EditableControlInterface::SetEditable() + */ + void SetEditable( bool editable ) override; + private: // Implementation /**