X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-demo.git;a=blobdiff_plain;f=examples%2Ftext-label%2Fexpanding-buttons.h;h=4a78270a1a1b2b335d772ba7aa320f79a1062fa5;hp=1ccede88bdcac1982f0cadd3582548b720aef2e8;hb=1b19fd140ff139b5854a1a62447faf31b175d8f6;hpb=b26d446b0cb6a316abc3a79d4fc70d0ae1b7994c diff --git a/examples/text-label/expanding-buttons.h b/examples/text-label/expanding-buttons.h index 1ccede8..4a78270 100644 --- a/examples/text-label/expanding-buttons.h +++ b/examples/text-label/expanding-buttons.h @@ -2,7 +2,7 @@ #define DALI_DEMO_EXPANDING_BUTTONS_CONTROL_H /* - * Copyright (c) 2018 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. @@ -21,7 +21,6 @@ namespace Demo { - namespace Internal { class ExpandingButtons; @@ -32,10 +31,7 @@ class ExpandingButtons; */ class ExpandingButtons : public Dali::Toolkit::Control { - - public: // Construction / destruction - /** * Create an uninitialized handle */ @@ -55,24 +51,23 @@ public: // Construction / destruction /** * Copy Constructor */ - ExpandingButtons( const ExpandingButtons& expandingButtons ); + ExpandingButtons(const ExpandingButtons& expandingButtons); /** * Assignment Operator */ - ExpandingButtons& operator=( const ExpandingButtons& expandingButtons ); + ExpandingButtons& operator=(const ExpandingButtons& expandingButtons); /** * Downcast */ - static ExpandingButtons DownCast( BaseHandle handle ); + static ExpandingButtons DownCast(BaseHandle handle); public: // API - /** * Add a control (button) to the Expanding button bar. Will be displayed in order of addition. */ - void RegisterButton( Control& control ); + void RegisterButton(Control& control); /** * Expand the registered buttons out from the main button. @@ -85,11 +80,10 @@ public: // API void Collapse(); public: // Signals - - /** + /** * ExpandingButtons signal type */ - typedef Dali::Signal< bool ( ExpandingButtons ) > ExpandingButtonsSignalType; + typedef Dali::Signal ExpandingButtonsSignalType; /** * This signal is emitted when the button is going to collapse. @@ -97,16 +91,15 @@ public: // Signals ExpandingButtonsSignalType& CollapsingSignal(); public: // Not for public use - /** * Create a handle from an implementation */ - ExpandingButtons( Internal::ExpandingButtons& implementation ); + ExpandingButtons(Internal::ExpandingButtons& implementation); /** * Allow the creation of an ExpandingButtons handle from an internal CustomActor pointer */ - ExpandingButtons( Dali::Internal::CustomActor* internal ); + ExpandingButtons(Dali::Internal::CustomActor* internal); }; } // namespace Demo