]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk1/data.cpp
don't allocate system fonts/colours dynamically
[wxWidgets.git] / src / gtk1 / data.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: gtk/data.cpp
3// Purpose: Various global GTK-specific 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#include "wx/defs.h"
14#include "wx/object.h"
15#include "wx/window.h"
16#include "wx/dc.h"
17#include "wx/cursor.h"
18
19/* Current cursor, in order to hang on to
20 * cursor handle when setting the cursor globally */
21wxCursor g_globalCursor;
22
23/* Don't allow event propagation during drag */
24bool g_blockEventsOnDrag = FALSE;
25
26/* Don't allow mouse event propagation during scroll */
27bool g_blockEventsOnScroll = FALSE;
28
29/* Don't allow window closing if there are open dialogs */
30int g_openDialogs = 0;
31
32/* TRUE when the message queue is empty. this gets set to
33 FALSE by all event callbacks before anything else is done */
34bool g_isIdle = FALSE;
35