]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/data.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Various global GTK-specific data
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #include "wx/object.h"
12 #include "wx/window.h"
14 #include "wx/cursor.h"
16 /* Current cursor, in order to hang on to
17 * cursor handle when setting the cursor globally */
18 wxCursor g_globalCursor
;
20 /* Don't allow event propagation during drag */
21 bool g_blockEventsOnDrag
= FALSE
;
23 /* Don't allow mouse event propagation during scroll */
24 bool g_blockEventsOnScroll
= FALSE
;
26 /* Don't allow window closing if there are open dialogs */
27 int g_openDialogs
= 0;
29 /* TRUE when the message queue is empty. this gets set to
30 FALSE by all event callbacks before anything else is done */
31 bool g_isIdle
= FALSE
;