X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Ftext-controls%2Ftext-selection-toolbar.cpp;h=deb9fe33030dfae733450c4507abc304ec4e866e;hb=HEAD;hp=453b12dd71e8ffe7e37573a6fcae47a7c05cdc04;hpb=f348038a5e190e62e11c027ecfe45ee909619997;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git 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..deb9fe3 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) 2022 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,57 +36,59 @@ TextSelectionToolbar::TextSelectionToolbar() { } -TextSelectionToolbar::TextSelectionToolbar( const TextSelectionToolbar& handle ) -: Control( handle ) +TextSelectionToolbar::TextSelectionToolbar(const TextSelectionToolbar& handle) = default; + +TextSelectionToolbar& TextSelectionToolbar::operator=(const TextSelectionToolbar& handle) = default; + +TextSelectionToolbar::TextSelectionToolbar(TextSelectionToolbar&& handle) = default; + +TextSelectionToolbar& TextSelectionToolbar::operator=(TextSelectionToolbar&& handle) = default; + +TextSelectionToolbar::~TextSelectionToolbar() { } -TextSelectionToolbar& TextSelectionToolbar::operator=( const TextSelectionToolbar& handle ) +void TextSelectionToolbar::AddOption(Actor& option) { - if( &handle != this ) - { - Control::operator=( handle ); - } - return *this; + GetImpl(*this).AddOption(option); } -TextSelectionToolbar::~TextSelectionToolbar() +void TextSelectionToolbar::AddDivider(Actor& divider) { + GetImpl(*this).AddDivider(divider); } -void TextSelectionToolbar::AddOption( Actor& option ) +void TextSelectionToolbar::ResizeDividers(Size& size) { - GetImpl(*this).AddOption(option); + 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