X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Ftext-controls%2Ftext-selection-toolbar.cpp;h=64515fc7caa8959646f889ffb487e46faa5e2671;hp=453b12dd71e8ffe7e37573a6fcae47a7c05cdc04;hb=3d655cb57a51fee5d3a887aa36f4c6b8b77c2f7d;hpb=8c18e2ceb273e1db22547264a4466fa565081a29 diff --git a/dali-toolkit/devel-api/controls/text-controls/text-selection-toolbar.cpp b/dali-toolkit/devel-api/controls/text-controls/text-selection-toolbar.cpp index 453b12d..64515fc 100644 --- a/dali-toolkit/devel-api/controls/text-controls/text-selection-toolbar.cpp +++ b/dali-toolkit/devel-api/controls/text-controls/text-selection-toolbar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -25,10 +25,8 @@ using namespace Dali; namespace Dali { - namespace Toolkit { - TextSelectionToolbar TextSelectionToolbar::New() { return Internal::TextSelectionToolbar::New(); @@ -38,16 +36,16 @@ TextSelectionToolbar::TextSelectionToolbar() { } -TextSelectionToolbar::TextSelectionToolbar( const TextSelectionToolbar& handle ) -: Control( handle ) +TextSelectionToolbar::TextSelectionToolbar(const TextSelectionToolbar& handle) +: Control(handle) { } -TextSelectionToolbar& TextSelectionToolbar::operator=( const TextSelectionToolbar& handle ) +TextSelectionToolbar& TextSelectionToolbar::operator=(const TextSelectionToolbar& handle) { - if( &handle != this ) + if(&handle != this) { - Control::operator=( handle ); + Control::operator=(handle); } return *this; } @@ -56,39 +54,47 @@ TextSelectionToolbar::~TextSelectionToolbar() { } -void TextSelectionToolbar::AddOption( Actor& option ) +void TextSelectionToolbar::AddOption(Actor& option) { GetImpl(*this).AddOption(option); } +void TextSelectionToolbar::AddDivider(Actor& divider) +{ + GetImpl(*this).AddDivider(divider); +} + +void TextSelectionToolbar::ResizeDividers(Size& size) +{ + GetImpl(*this).ResizeDividers(size); +} -void TextSelectionToolbar::AddDivider( Actor& divider ) +void TextSelectionToolbar::RaiseAbove(Actor target) { - GetImpl(*this).AddDivider( divider ); + GetImpl(*this).RaiseAbove(target); } -void TextSelectionToolbar::ResizeDividers( Size& size ) +void TextSelectionToolbar::ScrollTo(const Vector2& position) { - GetImpl(*this).ResizeDividers( size ); + GetImpl(*this).ScrollTo(position); } -TextSelectionToolbar TextSelectionToolbar::DownCast( BaseHandle handle ) +TextSelectionToolbar TextSelectionToolbar::DownCast(BaseHandle handle) { return Control::DownCast(handle); } -TextSelectionToolbar::TextSelectionToolbar( Internal::TextSelectionToolbar& implementation ) +TextSelectionToolbar::TextSelectionToolbar(Internal::TextSelectionToolbar& implementation) : Control(implementation) { } -TextSelectionToolbar::TextSelectionToolbar( Dali::Internal::CustomActor* internal ) -: Control( internal ) +TextSelectionToolbar::TextSelectionToolbar(Dali::Internal::CustomActor* internal) +: Control(internal) { - VerifyCustomActorPointer( internal ); + VerifyCustomActorPointer(internal); } - } // namespace Toolkit } // namespace Dali