X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Fwindow-devel.h;h=ca90c51da96978cf598b859f9fbc78d69c6b350c;hb=1806816d0c6af45354de742d27fc6f25ddc145d5;hp=da532d3b51d2fafc3ea7da40c9a475976f240260;hpb=2db73b90b0c1e18bac6aefcc99f2f219a412df8f;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/devel-api/adaptor-framework/window-devel.h b/dali/devel-api/adaptor-framework/window-devel.h index da532d3..ca90c51 100644 --- a/dali/devel-api/adaptor-framework/window-devel.h +++ b/dali/devel-api/adaptor-framework/window-devel.h @@ -30,25 +30,6 @@ class RenderTaskList; namespace DevelWindow { -/** - * @brief Enumeration for transition effect's state. - */ -enum class EffectState -{ - NONE = 0, ///< None state - START, ///< Transition effect is started. - END ///< Transition effect is ended. -}; - -/** - * @brief Enumeration for transition effect's type. - */ -enum class EffectType -{ - NONE = 0, ///< None type - SHOW, ///< Window show effect. - HIDE, ///< Window hide effect. -}; typedef Signal< void () > EventProcessingFinishedSignalType; ///< Event Processing finished signal type @@ -58,8 +39,6 @@ typedef Signal< void (const TouchData&) > TouchSignalType; ///< Touch si typedef Signal< void (const WheelEvent&) > WheelEventSignalType; ///< Touched signal type -typedef Signal< void (Window, EffectState, EffectType) > TransitionEffectEventSignalType; ///< Effect signal type and state - /** * @brief Sets position and size of the window. This API guarantees that both moving and resizing of window will appear on the screen at once. * @@ -135,21 +114,6 @@ DALI_ADAPTOR_API TouchSignalType& TouchSignal( Window window ); DALI_ADAPTOR_API WheelEventSignalType& WheelEventSignal( Window window ); /** - * @brief This signal is emitted for transition effect. - * - * The transition animation is appeared when the window is shown/hidden. - * When the animation is started, START signal is emitted. - * Then the animation is ended, END signal is emitted, too. - * A callback of the following type may be connected: - * @code - * void YourCallbackName( Window window, EffectState state, EffectType type ); - * @endcode - * @param[in] window The window instance - * @return The signal to connect to - */ -DALI_ADAPTOR_API TransitionEffectEventSignalType& TransitionEffectEventSignal( Window window ); - -/** * @brief Sets parent window of the window. * * After setting that, these windows do together when raise-up, lower and iconified/deiconified.