]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/gdi.i
Lots of little bug fixes, API updates, etc.
[wxWidgets.git] / wxPython / src / gdi.i
CommitLineData
7bf85405 1/////////////////////////////////////////////////////////////////////////////
d14a1e28
RD
2// Name: controls.i
3// Purpose: Control (widget) classes for wxPython
7bf85405
RD
4//
5// Author: Robin Dunn
6//
d14a1e28 7// Created: 7-July-1997
7bf85405 8// RCS-ID: $Id$
d14a1e28 9// Copyright: (c) 2003 by Total Control Software
7bf85405
RD
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
03e9bead
RD
13%module gdi
14
7bf85405
RD
15//---------------------------------------------------------------------------
16
7bf85405 17%{
d14a1e28
RD
18#include "wx/wxPython/wxPython.h"
19#include "wx/wxPython/pyclasses.h"
20
21 DECLARE_DEF_STRING(EmptyString);
96bfd053
RD
22%}
23
3ef86e32
RD
24//---------------------------------------------------------------------------
25
d14a1e28
RD
26%import core.i
27%pythoncode { wx = core }
3ef86e32
RD
28
29
d14a1e28 30// Include all the files that make up this module
3ef86e32 31
d14a1e28 32%include _gdi_rename.i
3ef86e32 33
3ef86e32 34
d14a1e28
RD
35// GDI
36%include _gdiobj.i
37%include _colour.i
38%include _palette.i
39%include _pen.i
40%include _brush.i
41%include _bitmap.i
42%include _icon.i
43%include _cursor.i
44%include _region.i
45%include _font.i
46%include _intl.i
47%include _dc.i
48%include _imaglist.i
49%include _stockobjs.i
d14a1e28 50%include _effects.i
3ef86e32
RD
51
52
7bf85405 53//---------------------------------------------------------------------------
7722248d
RD
54%init %{
55 // Work around a chicken/egg problem in drawlist.cpp
56 wxPyDrawList_SetAPIPtr();
57%}
58
0e9b78ce 59//---------------------------------------------------------------------------