]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
93763ad5 | 2 | // Name: src/gtk1/data.cpp |
6a76384f | 3 | // Purpose: Various global GTK-specific data |
c801d85f | 4 | // Author: Robert Roebling |
dbf858b5 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
8e3f3880 WS |
13 | #ifndef WX_PRECOMP |
14 | #include "wx/object.h" | |
cdccdfab | 15 | #include "wx/window.h" |
da80ae71 | 16 | #include "wx/dc.h" |
c8326d64 | 17 | #include "wx/cursor.h" |
8e3f3880 WS |
18 | #endif |
19 | ||
83624f79 RR |
20 | /* Current cursor, in order to hang on to |
21 | * cursor handle when setting the cursor globally */ | |
238d735d | 22 | wxCursor g_globalCursor; |
c801d85f | 23 | |
83624f79 | 24 | /* Don't allow event propagation during drag */ |
93763ad5 | 25 | bool g_blockEventsOnDrag = false; |
c801d85f | 26 | |
83624f79 | 27 | /* Don't allow mouse event propagation during scroll */ |
93763ad5 | 28 | bool g_blockEventsOnScroll = false; |
76ed8f8d | 29 | |
2d68e1b4 RR |
30 | /* Don't allow window closing if there are open dialogs */ |
31 | int g_openDialogs = 0; | |
32 | ||
93763ad5 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; |