]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/src/windows.i
Out typemap for wxString&
[wxWidgets.git] / wxPython / src / windows.i
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: windows.i
3// Purpose: SWIG definitions of various window classes
4//
5// Author: Robin Dunn
6//
7// Created: 24-June-1997
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13
14%module windows
15
16//---------------------------------------------------------------------------
17
18%{
19#include "wx/wxPython/wxPython.h"
20#include "wx/wxPython/pyclasses.h"
21
22 DECLARE_DEF_STRING(PanelNameStr);
23 DECLARE_DEF_STRING(EmptyString);
24
25%}
26
27//---------------------------------------------------------------------------
28
29%import core.i
30%pythoncode { wx = core }
31
32%include _windows_rename.i
33
34
35// Include all the files that make up this module
36%include _panel.i
37%include _toplvl.i
38%include _statusbar.i
39%include _splitter.i
40%include _sashwin.i
41%include _popupwin.i
42%include _tipwin.i
43%include _vscroll.i
44%include _taskbar.i
45%include _cmndlgs.i
46%include _mdi.i
47%include _pywindows.i
48%include _printfw.i
49
50//---------------------------------------------------------------------------