]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
127eab18 | 2 | // Name: src/mgl/data.cpp |
6a76384f | 3 | // Purpose: wxMGL-specific global data |
32b8ec41 VZ |
4 | // Author: Robert Roebling |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
32b8ec41 VZ |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
127eab18 WS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #ifdef __BORLANDC__ | |
14 | #pragma hdrstop | |
15 | #endif | |
16 | ||
32b8ec41 | 17 | #include "wx/defs.h" |
6a76384f | 18 | #include "wx/cursor.h" |
32b8ec41 VZ |
19 | |
20 | /* Current cursor, in order to hang on to | |
21 | * cursor handle when setting the cursor globally */ | |
22 | wxCursor g_globalCursor; | |
23 | ||
24 | /* Don't allow event propagation during drag */ | |
127eab18 | 25 | bool g_blockEventsOnDrag = false; |
32b8ec41 VZ |
26 | |
27 | /* Don't allow mouse event propagation during scroll */ | |
127eab18 | 28 | bool g_blockEventsOnScroll = false; |
32b8ec41 VZ |
29 | |
30 | /* Don't allow window closing if there are open dialogs */ | |
31 | int g_openDialogs = 0; | |
32 | ||
127eab18 WS |
33 | /* true when the message queue is empty. this gets set to |
34 | false by all event callbacks before anything else is done */ | |
35 | bool g_isIdle = false; |