X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fpublic-api%2Fadaptor-framework%2Fwindow.h;h=36488f0783901ccb91c5b92a9d754cf8e9606b66;hb=5f4496ead063fcb1bdcd7e218e777407bc018fa3;hp=e0c8d34ebd7149a278f45f31809c2e4fe14b24b0;hpb=c3460aa6e2904e52b78bdb53d8590c6bca5708fe;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/public-api/adaptor-framework/window.h b/dali/public-api/adaptor-framework/window.h index e0c8d34..36488f0 100644 --- a/dali/public-api/adaptor-framework/window.h +++ b/dali/public-api/adaptor-framework/window.h @@ -70,8 +70,93 @@ class KeyEvent; class DALI_ADAPTOR_API Window : public BaseHandle { public: + /** + * @brief Simple class for window position pairs of integers. + * + * Use this for integer position with window coordinates. + * @SINCE_2_1.43 + */ + class IntPair + { + public: + /** + * @brief Default constructor, initialises to 0. + * @SINCE_2_1.43 + */ + IntPair() + : mX(0), + mY(0) + { + }; + + /** + * @brief Constructor taking separate x and y parameters. + * @SINCE_2_1.43 + * @param[in] x The X coordinate of the window. + * @param[in] y The Y coordinate of the window. + */ + IntPair(int32_t x, int32_t y) + { + mX = x; + mY = y; + } + + /** + * @brief Returns the x coordinate. + * @SINCE_2_1.43 + * @return Y + */ + int32_t GetX() const + { + return mX; + } + + /** + * @brief Returns the y coordinate. + * @SINCE_2_1.43 + * @return Y + */ + int32_t GetY() const + { + return mY; + } + + /** + * @brief Sets the x coordinate + * @SINCE_2_1.43 + * @param[in] x the x coordinate value + */ + void SetX(int32_t x) + { + mX = x; + } + + /** + * @brief Sets the y coordinate + * @SINCE_2_1.43 + * @param[in] y the y coordinate value + */ + void SetY(int32_t y) + { + mY = y; + } + + // Default operation + public: + IntPair(const IntPair&) = default; ///< Default copy constructor + IntPair(IntPair&&) = default; ///< Default move constructor + IntPair& operator=(const IntPair&) = default; ///< Default copy assignment operator + IntPair& operator=(IntPair&&) = default; ///< Default move assignment operator + + // member data + private: + int32_t mX; + int32_t mY; + }; + +public: using WindowSize = Uint16Pair; ///< Window size type @SINCE_1_2.60 - using WindowPosition = Uint16Pair; ///< Window position type @SINCE_1_2.60 + using WindowPosition = IntPair; ///< Window position type @SINCE_2_1.43 using FocusChangeSignalType = Signal; ///< Window focus signal type @SINCE_1_4.35 using ResizeSignalType = Signal; ///< Window resized signal type @SINCE_1_4.35