]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/src/misc.i
Use a local copy of the old wxBufferedDC classes until the ones in the
[wxWidgets.git] / wxPython / src / misc.i
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: misc.i
3// Purpose: An extension module for miscelaneious stuff
4//
5// Author: Robin Dunn
6//
7// Created: 3-July-1997
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13
14%module misc
15
16//---------------------------------------------------------------------------
17
18%{
19#include "wx/wxPython/wxPython.h"
20#include "wx/wxPython/pyclasses.h"
21#include "wx/wxPython/pyistream.h"
22
23%}
24
25//---------------------------------------------------------------------------
26
27%import core.i
28%pythoncode { wx = core }
29
30%include _misc_rename.i
31
32
33MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
34
35
36// Include all the files that make up this module
37%include _settings.i
38%include _functions.i
39%include _misc.i
40%include _tipdlg.i
41%include _timer.i
42%include _log.i
43%include _process.i
44%include _joystick.i
45%include _sound.i
46%include _mimetype.i
47%include _artprov.i
48%include _config.i
49%include _datetime.i
50%include _dataobj.i
51%include _dnd.i
52%include _clipbrd.i
53
54
55//---------------------------------------------------------------------------