]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/core.i
More docstrings and rearrainged a couple things.
[wxWidgets.git] / wxPython / src / core.i
CommitLineData
d14a1e28
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: core.i
3// Purpose: SWIG interface file for the CORE wxPython classes and stuff.
4//
5// Author: Robin Dunn
6//
7// Created: 22-May-1998
8// RCS-ID: $Id$
9// Copyright: (c) 1998 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13%module core
14
15
16%{
17#include "wx/wxPython/wxPython_int.h"
18#include "wx/wxPython/pyclasses.h"
19%}
20
21
22//---------------------------------------------------------------------------
23
24#ifndef SWIGXML
25%include typemaps.i
26%include my_typemaps.i
27
28%include _core_api.i
29%include _core_rename.i
30
31
32
33%native(_wxPySetDictionary) __wxPySetDictionary;
34
35%pythoncode {
36%#// Give a reference to the dictionary of this module to the C++ extension
37%#// code.
38_core._wxPySetDictionary(vars())
39
40%#// A little trick to make 'wx' be a reference to this module so wx.Names can
41%#// be used here.
42import sys as _sys
43wx = _sys.modules[__name__]
44}
45
46#endif
47
48//---------------------------------------------------------------------------
49
50%{
51 DECLARE_DEF_STRING(EmptyString);
dd9f7fea 52// DECLARE_DEF_STRING(PanelNameStr);
d14a1e28
RD
53%}
54
55//---------------------------------------------------------------------------
56// Include all the files that make up the core module
57
58// wxObject, functions and other base stuff
59%include _defs.i
60%include _obj.i
61%include _gdicmn.i
62%include _streams.i
63%include _filesys.i
64%include _image.i
65
66
67// Events, event handlers, base Windows and such
68%include _evthandler.i
69%include _event.i
70%include _app.i
1e0c8722 71%include _accel.i
d14a1e28
RD
72%include _window.i
73%include _validator.i
74%include _menu.i
75%include _control.i
76
77
78// Layout
79%include _sizers.i
80%include _gbsizer.i
81%include _constraints.i
82
83
84%pythoncode "_core_ex.py"
85
86//---------------------------------------------------------------------------
87// This code gets added to the module initialization function
88
89%init %{
90 // Initialize threading, some globals and such
91 __wxPyPreStart(d);
92
93
94 // Although these are defined in __version__ they need to be here too so
95 // that an assert can be done to ensure that the wxPython and the wxWindows
96 // versions match.
97 PyDict_SetItemString(d,"MAJOR_VERSION", PyInt_FromLong((long)wxMAJOR_VERSION ));
98 PyDict_SetItemString(d,"MINOR_VERSION", PyInt_FromLong((long)wxMINOR_VERSION ));
99 PyDict_SetItemString(d,"RELEASE_VERSION", PyInt_FromLong((long)wxRELEASE_NUMBER ));
100%}
101
102//---------------------------------------------------------------------------