Files
wxWidgets/wxPython/src/windows.i
Robin Dunn b2dc104421 More changes to make the autodocs be better, made all the namestrings
and such be visible to swig so the autodoc generator knows how to
rename them.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24927 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-12-20 01:01:49 +00:00

52 lines
1.2 KiB
OpenEdge ABL

/////////////////////////////////////////////////////////////////////////////
// Name: windows.i
// Purpose: SWIG definitions of various window classes
//
// Author: Robin Dunn
//
// Created: 24-June-1997
// RCS-ID: $Id$
// Copyright: (c) 2003 by Total Control Software
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
%module windows
//---------------------------------------------------------------------------
%{
#include "wx/wxPython/wxPython.h"
#include "wx/wxPython/pyclasses.h"
%}
//---------------------------------------------------------------------------
%import core.i
%pythoncode { wx = core }
%include _windows_rename.i
MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
MAKE_CONST_WXSTRING_NOSWIG(PanelNameStr);
// Include all the files that make up this module
%include _panel.i
%include _toplvl.i
%include _statusbar.i
%include _splitter.i
%include _sashwin.i
%include _popupwin.i
%include _tipwin.i
%include _vscroll.i
%include _taskbar.i
%include _cmndlgs.i
%include _mdi.i
%include _pywindows.i
%include _printfw.i
//---------------------------------------------------------------------------