X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-demo.git;a=blobdiff_plain;f=examples%2Fvisual-transitions%2Ftransition-application.h;h=8a2a9062558b83fb25da2e6016e00cbfc11e4e98;hp=6f6e722bc2f692dee52b577045f36ae776f6e79f;hb=1b19fd140ff139b5854a1a62447faf31b175d8f6;hpb=b26d446b0cb6a316abc3a79d4fc70d0ae1b7994c diff --git a/examples/visual-transitions/transition-application.h b/examples/visual-transitions/transition-application.h index 6f6e722..8a2a906 100644 --- a/examples/visual-transitions/transition-application.h +++ b/examples/visual-transitions/transition-application.h @@ -21,9 +21,9 @@ #include //#include #include -#include "beat-control.h" #include #include +#include "beat-control.h" // Internal includes @@ -32,54 +32,51 @@ using namespace Dali::Toolkit; namespace Demo { - class TransitionApplication : public ConnectionTracker { public: - static const int NUMBER_OF_ACTION_BUTTONS=4; - static const int NUMBER_OF_VISUAL_BUTTONS=10; + static const int NUMBER_OF_ACTION_BUTTONS = 4; + static const int NUMBER_OF_VISUAL_BUTTONS = 10; public: // Constructor - TransitionApplication( Application& application ); + TransitionApplication(Application& application); // Destructor ~TransitionApplication(); // Init signal handler - void Create( Application& application ); + void Create(Application& application); // Create the GUI components - Toolkit::TextLabel CreateTitle( std::string title ); - Actor CreateContentPane(); + Toolkit::TextLabel CreateTitle(std::string title); + Actor CreateContentPane(); // Key event handler - void OnKeyEvent( const KeyEvent& event ); + void OnKeyEvent(const KeyEvent& event); - bool OnActionButtonClicked( Button button ); - bool OnVisualButtonClicked( Actor actor, const TouchEvent& touch ); + bool OnActionButtonClicked(Button button); + bool OnVisualButtonClicked(Actor actor, const TouchEvent& touch); static const char* DEMO_THEME_ONE_PATH; private: - /** Create a visual map * * @param[in] index The index of the visual to create * @param[out] map The map to generate */ - void CreateVisualMap( int index, Property::Map& map ); + void CreateVisualMap(int index, Property::Map& map); - Application& mApplication; - TextLabel mTitle; - BeatControl mBeatControl; - PushButton mActionButtons[NUMBER_OF_ACTION_BUTTONS]; - BeatControl mVisualButtons[NUMBER_OF_VISUAL_BUTTONS]; + Application& mApplication; + TextLabel mTitle; + BeatControl mBeatControl; + PushButton mActionButtons[NUMBER_OF_ACTION_BUTTONS]; + BeatControl mVisualButtons[NUMBER_OF_VISUAL_BUTTONS]; Property::Index mVisualIndex; Property::Index mActionIndex; }; } // Namespace Demo - #endif // DALI_DEMO_TRANSITION_APPLICATION_H