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