]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/data.cpp
wxID_ANY usage.
[wxWidgets.git] / src / gtk / data.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
93763ad5 2// Name: src/gtk/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"
8e3f3880
WS
17#endif
18
6a76384f 19#include "wx/cursor.h"
c801d85f 20
83624f79
RR
21/* Current cursor, in order to hang on to
22 * cursor handle when setting the cursor globally */
238d735d 23wxCursor g_globalCursor;
c801d85f 24
83624f79 25/* Don't allow event propagation during drag */
93763ad5 26bool g_blockEventsOnDrag = false;
c801d85f 27
83624f79 28/* Don't allow mouse event propagation during scroll */
93763ad5 29bool g_blockEventsOnScroll = false;
76ed8f8d 30
2d68e1b4
RR
31/* Don't allow window closing if there are open dialogs */
32int g_openDialogs = 0;
33
93763ad5
WS
34/* true when the message queue is empty. this gets set to
35 false by all event callbacks before anything else is done */
36bool g_isIdle = false;