Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_IWindow.h
| Show First 20 Lines • Show All 127 Lines • ▼ Show 20 Lines | public: | ||||
| * \param inX: The x-coordinate on the screen. | * \param inX: The x-coordinate on the screen. | ||||
| * \param inY: The y-coordinate on the screen. | * \param inY: The y-coordinate on the screen. | ||||
| * \param outX: The x-coordinate in the client rectangle. | * \param outX: The x-coordinate in the client rectangle. | ||||
| * \param outY: The y-coordinate in the client rectangle. | * \param outY: The y-coordinate in the client rectangle. | ||||
| */ | */ | ||||
| virtual void screenToClient(int32_t inX, int32_t inY, int32_t &outX, int32_t &outY) const = 0; | virtual void screenToClient(int32_t inX, int32_t inY, int32_t &outX, int32_t &outY) const = 0; | ||||
| /** | /** | ||||
| * Converts a point in screen coordinates to client rectangle coordinates | * Converts a point in client rectangle coordinates to screen coordinates. | ||||
| * \param inX: The x-coordinate in the client rectangle. | * \param inX: The x-coordinate in the client rectangle. | ||||
| * \param inY: The y-coordinate in the client rectangle. | * \param inY: The y-coordinate in the client rectangle. | ||||
| * \param outX: The x-coordinate on the screen. | * \param outX: The x-coordinate on the screen. | ||||
| * \param outY: The y-coordinate on the screen. | * \param outY: The y-coordinate on the screen. | ||||
| */ | */ | ||||
| virtual void clientToScreen(int32_t inX, int32_t inY, int32_t &outX, int32_t &outY) const = 0; | virtual void clientToScreen(int32_t inX, int32_t inY, int32_t &outX, int32_t &outY) const = 0; | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 213 Lines • Show Last 20 Lines | |||||