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

56 lines
1.2 KiB
OpenEdge ABL

/////////////////////////////////////////////////////////////////////////////
// Name: misc.i
// Purpose: An extension module for miscelaneious stuff
//
// Author: Robin Dunn
//
// Created: 3-July-1997
// RCS-ID: $Id$
// Copyright: (c) 2003 by Total Control Software
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
%module misc
//---------------------------------------------------------------------------
%{
#include "wx/wxPython/wxPython.h"
#include "wx/wxPython/pyclasses.h"
#include "wx/wxPython/pyistream.h"
%}
//---------------------------------------------------------------------------
%import core.i
%pythoncode { wx = core }
%include _misc_rename.i
MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
// Include all the files that make up this module
%include _settings.i
%include _functions.i
%include _misc.i
%include _tipdlg.i
%include _timer.i
%include _log.i
%include _process.i
%include _joystick.i
%include _wave.i
%include _mimetype.i
%include _artprov.i
%include _config.i
%include _datetime.i
%include _dataobj.i
%include _dnd.i
%include _clipbrd.i
//---------------------------------------------------------------------------