X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fwindow-system%2Fcommon%2Fwindow-base.h;h=a9e340f3ea5111452414a823e06b157ad040229b;hb=09c9ade5cb3bacc5e17dd628c8c3a6253eebb425;hp=165a69adbe8e95110b155905ea1d3747097250ea;hpb=5857bd428012add8c63c6a306f44fbe6ac040821;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/window-system/common/window-base.h b/dali/internal/window-system/common/window-base.h index 165a69a..a9e340f 100644 --- a/dali/internal/window-system/common/window-base.h +++ b/dali/internal/window-system/common/window-base.h @@ -309,6 +309,12 @@ public: virtual void GetDpi( unsigned int& dpiHorizontal, unsigned int& dpiVertical ) = 0; /** + * @brief Return the orientation of the surface. + * @return The orientation + */ + virtual int GetOrientation() const = 0; + + /** * @brief Get the screen rotation angle of the window */ virtual int GetScreenRotationAngle() = 0; @@ -318,6 +324,11 @@ public: */ virtual void SetWindowRotationAngle( int degree ) = 0; + /** + * @brief Get the rotation angle of the window + */ + virtual int GetWindowRotationAngle() = 0; + /** * @brief Inform the window rotation is completed */ @@ -328,6 +339,17 @@ public: */ virtual void SetTransparency( bool transparent ) = 0; + /** + * @copydoc Dali::Window::SetParent() + */ + virtual void SetParent( Any parent ) = 0; + + /** + * @brief Check whether the window is matched or not. + * @return The result of matched. + */ + virtual bool IsMatchedWindow( Any window ) = 0; + // Signals /**