]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/controls.i
reSWIGged
[wxWidgets.git] / wxPython / src / controls.i
CommitLineData
7bf85405
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: controls.i
3// Purpose: Control (widget) classes for wxPython
4//
5// Author: Robin Dunn
6//
d14a1e28 7// Created: 10-June-1998
7bf85405
RD
8// RCS-ID: $Id$
9// Copyright: (c) 1998 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
03e9bead 13%module controls
7bf85405 14
d14a1e28 15//---------------------------------------------------------------------------
7bf85405 16
137b5242 17%{
d14a1e28
RD
18#include "wx/wxPython/wxPython.h"
19#include "wx/wxPython/pyclasses.h"
137b5242 20%}
b2dc1044 21
d14a1e28
RD
22//---------------------------------------------------------------------------
23
24%import core.i
25%pythoncode { wx = core }
5b29df3f 26%pythoncode { __docfilter__ = wx.__docfilter__ }
d14a1e28 27
b2dc1044
RD
28%include _controls_rename.i
29
30MAKE_CONST_WXSTRING_NOSWIG(PanelNameStr);
31MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
32MAKE_CONST_WXSTRING_NOSWIG(ControlNameStr);
33
699e192b
RD
34%{
35 const wxArrayString wxPyEmptyStringArray;
36%}
37
d14a1e28
RD
38
39// Include all the files that make up this module
40
d14a1e28
RD
41
42//%include _control.i <-- It's in core so other modules don't have to %import controls.i
43%include _button.i
44%include _checkbox.i
45%include _choice.i
46%include _combobox.i
47%include _gauge.i
48%include _statctrls.i
49%include _listbox.i
50%include _textctrl.i
51%include _scrolbar.i
52%include _spin.i
53%include _radio.i
54%include _slider.i
55%include _tglbtn.i
56%include _notebook.i
57%include _toolbar.i
58%include _listctrl.i
59%include _treectrl.i
60%include _dirctrl.i
61%include _pycontrol.i
62%include _cshelp.i
dd9f7fea 63%include _dragimg.i
d14a1e28
RD
64
65
66//---------------------------------------------------------------------------
67//---------------------------------------------------------------------------