* Returns the type of drawing context used in this window.
* @return The current type of drawing context.
*/
- inline virtual GHOST_TDrawingContextType getDrawingContextType() = 0;
+ virtual GHOST_TDrawingContextType getDrawingContextType() = 0;
/**
* Tries to install a rendering context in this window.
* Returns the window user data.
* @return The window user data.
*/
- inline virtual GHOST_TUserDataPtr getUserData() const = 0;
+ virtual GHOST_TUserDataPtr getUserData() const = 0;
/**
* Changes the window user data.
*/
virtual void setUserData(const GHOST_TUserDataPtr userData) = 0;
+ /**
+ * Returns the tablet data (pressure etc).
+ * @return The tablet data (pressure etc).
+ */
+ virtual const GHOST_TabletData* GetTabletData() = 0;
+
/***************************************************************************************
** Cursor management functionality
***************************************************************************************/