Files
wxWidgets/wxPython/src/gdi.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

60 lines
1.3 KiB
OpenEdge ABL

/////////////////////////////////////////////////////////////////////////////
// Name: controls.i
// Purpose: Control (widget) classes for wxPython
//
// Author: Robin Dunn
//
// Created: 7-July-1997
// RCS-ID: $Id$
// Copyright: (c) 2003 by Total Control Software
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
%module gdi
//---------------------------------------------------------------------------
%{
#include "wx/wxPython/wxPython.h"
#include "wx/wxPython/pyclasses.h"
%}
//---------------------------------------------------------------------------
%import core.i
%pythoncode { wx = core }
%include _gdi_rename.i
MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
// Include all the files that make up this module
%include _gdiobj.i
%include _colour.i
%include _palette.i
%include _pen.i
%include _brush.i
%include _bitmap.i
%include _icon.i
%include _cursor.i
%include _region.i
%include _font.i
%include _intl.i
%include _dc.i
%include _imaglist.i
%include _stockobjs.i
%include _effects.i
//---------------------------------------------------------------------------
%init %{
// Work around a chicken/egg problem in drawlist.cpp
wxPyDrawList_SetAPIPtr();
%}
//---------------------------------------------------------------------------