1
0
Fork 0

Platform/Unix/X11Display: Implement showCursor()

This commit is contained in:
Henrik Hautakoski 2020-10-17 15:07:20 +02:00
parent 10e1a9071e
commit 396f47cc22
2 changed files with 32 additions and 5 deletions

View file

@ -39,6 +39,10 @@ public :
void processEvent(const ::XEvent& event);
protected :
void createHiddenCursor();
protected :
::Display* m_disp;
@ -47,7 +51,8 @@ protected :
int m_screen;
//GC m_GC;
::Cursor m_cur_hidden;
::Cursor m_cur_last;
Vector2u m_size;
};