]>
git.saurik.com Git - wxWidgets.git/blob - src/mgl/data.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mgl/data.cpp
3 // Purpose: wxMGL-specific global data
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
17 #include "wx/cursor.h"
19 /* Current cursor, in order to hang on to
20 * cursor handle when setting the cursor globally */
21 wxCursor g_globalCursor
;
23 /* Don't allow event propagation during drag */
24 bool g_blockEventsOnDrag
= false;
26 /* Don't allow mouse event propagation during scroll */
27 bool g_blockEventsOnScroll
= false;
29 /* Don't allow window closing if there are open dialogs */
30 int g_openDialogs
= 0;
32 /* true when the message queue is empty. this gets set to
33 false by all event callbacks before anything else is done */
34 bool g_isIdle
= false;