X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fintegration-api%2Fscene.h;h=c53c413e432f6e69154fba5a7a742eb477d79a01;hb=7cd83f52b8fd45e3c8089016b1b6b871d5b79d68;hp=ae08e9af80cc2b3b62171fea4db79e00f9750f1b;hpb=f87aeddf469732ad0b64a6557b079e4d9ec21de9;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/integration-api/scene.h b/dali/integration-api/scene.h index ae08e9a..c53c413 100755 --- a/dali/integration-api/scene.h +++ b/dali/integration-api/scene.h @@ -55,18 +55,17 @@ class DALI_CORE_API Scene : public BaseHandle public: typedef Signal< void () > EventProcessingFinishedSignalType; ///< Event Processing finished signal type typedef Signal< void (const Dali::KeyEvent&) > KeyEventSignalType; ///< Key event signal type - typedef Signal< bool (const Dali::KeyEvent&) > KeyEventGeneratedSignalType; ///< key event generated signal type typedef Signal< void (const Dali::TouchData&) > TouchSignalType; ///< Touch signal type typedef Signal< void (const Dali::WheelEvent&) > WheelEventSignalType; ///< Touched signal type /** * @brief Create an initialized Scene handle. * - * @param[in] size The size of the scene in pixels as a Vector + * @param[in] surface Binds this rendering surface to this scene * * @return a handle to a newly allocated Dali resource. */ - static Scene New( const Size& size ); + static Scene New( Integration::RenderSurface& surface ); /** * @brief Downcast an Object handle to Scene handle. @@ -200,12 +199,12 @@ public: * * @return The root layer */ - void SetSurface( Integration::RenderSurface& surface, bool forceUpdate ); + void SetSurface( Integration::RenderSurface& surface ); /** * @brief Informs the scene that the set surface has been resized. */ - void SurfaceResized( bool forceUpdate ); + void SurfaceResized(); /** * @brief Gets the rendering surface bound to the scene @@ -255,13 +254,6 @@ public: KeyEventSignalType& KeyEventSignal(); /** - * @brief The user would connect to this signal to get a KeyEvent when KeyEvent is generated. - * - * @return The return is true if KeyEvent is consumed, otherwise false. - */ - KeyEventGeneratedSignalType& KeyEventGeneratedSignal(); - - /** * @brief This signal is emitted when the screen is touched and when the touch ends * (i.e. the down & up touch events only). *