]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/src/misc.i
better report if the subclass factory has import problems
[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%module(package="wx") _misc
14
15//---------------------------------------------------------------------------
16
17%{
18#include "wx/wxPython/wxPython.h"
19#include "wx/wxPython/pyclasses.h"
20#include "wx/wxPython/pyistream.h"
21%}
22
23//---------------------------------------------------------------------------
24
25%import core.i
26%pythoncode { wx = _core }
27
28
29MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
30
31
32// Include all the files that make up this module
33%include _settings.i
34%include _functions.i
35%include _misc.i
36%include _tipdlg.i
37%include _timer.i
38%include _log.i
39%include _process.i
40%include _joystick.i
41%include _sound.i
42%include _mimetype.i
43%include _artprov.i
44%include _config.i
45%include _datetime.i
46%include _dataobj.i
47%include _dnd.i
48%include _clipbrd.i
49%include _display.i
50%include _stdpaths.i
51%include _power.i
52%include _about.i
53
54//---------------------------------------------------------------------------