]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/cursor.h
1 #ifndef _WX_CURSOR_H_BASE_
2 #define _WX_CURSOR_H_BASE_
5 #include "wx/msw/cursor.h"
6 #elif defined(__WXMOTIF__)
7 #include "wx/motif/cursor.h"
8 #elif defined(__WXGTK__)
9 #include "wx/gtk/cursor.h"
10 #elif defined(__WXQT__)
11 #include "wx/qt/cursor.h"
12 #elif defined(__WXMAC__)
13 #include "wx/mac/cursor.h"
14 #elif defined(__WXPM__)
15 #include "wx/os2/cursor.h"
16 #elif defined(__WXSTUBS__)
17 #include "wx/stubs/cursor.h"
21 /* This is a small class which can be used by all ports
22 to temporarily suspend the busy cursor. Useful in modal
25 class wxBusyCursorSuspender
28 wxBusyCursorSuspender()
30 m_wasBusy
= wxIsBusy();
34 ~wxBusyCursorSuspender()