]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/controls.i
Correct a compile warning
[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
d14a1e28
RD
21 DECLARE_DEF_STRING(PanelNameStr);
22 DECLARE_DEF_STRING(EmptyString);
137b5242 23 DECLARE_DEF_STRING(ControlNameStr);
137b5242 24
137b5242
RD
25%}
26
d14a1e28
RD
27//---------------------------------------------------------------------------
28
29%import core.i
30%pythoncode { wx = core }
31
32
33// Include all the files that make up this module
34
35%include _controls_rename.i
36
37//%include _control.i <-- It's in core so other modules don't have to %import controls.i
38%include _button.i
39%include _checkbox.i
40%include _choice.i
41%include _combobox.i
42%include _gauge.i
43%include _statctrls.i
44%include _listbox.i
45%include _textctrl.i
46%include _scrolbar.i
47%include _spin.i
48%include _radio.i
49%include _slider.i
50%include _tglbtn.i
51%include _notebook.i
52%include _toolbar.i
53%include _listctrl.i
54%include _treectrl.i
55%include _dirctrl.i
56%include _pycontrol.i
57%include _cshelp.i
58
59
60//---------------------------------------------------------------------------
61//---------------------------------------------------------------------------