]> git.saurik.com Git - wxWidgets.git/commit - wxPython/src/msw/html.cpp
New typemaps for wxString when compiling for Python 2.0 and beyond
authorRobin Dunn <robin@alldunn.com>
Tue, 21 Nov 2000 03:44:14 +0000 (03:44 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 21 Nov 2000 03:44:14 +0000 (03:44 +0000)
commit185d7c3ee4c6e4a9ddaf811ae38e57d68a0fdff3
tree692dcccfaa090d0df57ae856456666532ebbcd93
parentbaeea2909cd262b8f132479654ea673601220910
New typemaps for wxString when compiling for Python 2.0 and beyond
that allow Unicode objects to be passed as well as String objects.  If
a Unicode object is passed PyString_AsStringAndSize is used to convert
it to a wxString using the default encoding.

Fixed the generic buttons so tool tips work for them.

Fixed a bug in the demo's tree control.

Added a listbox to the listbox demo that shows how to find items with
a patching prefix as keys are typed.

Added code to the wxListCtrl demo to show how to get text from a
column in report mode.

Added code to the toolbar demo to clear the long help from the status
bar after 2 seconds.

Added wxJoystick.

Fixed wxTimer so it can be used as described in the docs, either with
a Notify method in a subclass, or sending an event to a wxEvtHandler
object, (usually a window.)

Added wxNotifyEvent.Allow()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8764 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
55 files changed:
wxPython/BUILD.unix.txt
wxPython/CHANGES.txt
wxPython/b.bat
wxPython/contrib/glcanvas/msw/glcanvas.cpp
wxPython/contrib/ogl/ogl.cpp
wxPython/contrib/ogl/oglbasic.cpp
wxPython/contrib/ogl/oglcanvas.cpp
wxPython/contrib/ogl/oglshapes.cpp
wxPython/contrib/ogl/oglshapes2.cpp
wxPython/contrib/stc/stc_.cpp
wxPython/demo/GenericButtons.py
wxPython/demo/Main.py
wxPython/demo/wxButton.py
wxPython/demo/wxListBox.py
wxPython/demo/wxListCtrl.py
wxPython/demo/wxToolBar.py
wxPython/my_distutils.py
wxPython/setup.py
wxPython/src/_defs.i
wxPython/src/_extras.py
wxPython/src/events.i
wxPython/src/helpers.cpp
wxPython/src/image.i
wxPython/src/libpy.c
wxPython/src/misc2.i
wxPython/src/msw/calendar.cpp
wxPython/src/msw/clip_dnd.cpp
wxPython/src/msw/cmndlgs.cpp
wxPython/src/msw/controls.cpp
wxPython/src/msw/controls2.cpp
wxPython/src/msw/events.cpp
wxPython/src/msw/events.py
wxPython/src/msw/filesys.cpp
wxPython/src/msw/frames.cpp
wxPython/src/msw/gdi.cpp
wxPython/src/msw/grid.cpp
wxPython/src/msw/html.cpp
wxPython/src/msw/htmlhelp.cpp
wxPython/src/msw/image.cpp
wxPython/src/msw/mdi.cpp
wxPython/src/msw/misc.cpp
wxPython/src/msw/misc2.cpp
wxPython/src/msw/misc2.py
wxPython/src/msw/printfw.cpp
wxPython/src/msw/sizers.cpp
wxPython/src/msw/stattool.cpp
wxPython/src/msw/streams.cpp
wxPython/src/msw/utils.cpp
wxPython/src/msw/windows.cpp
wxPython/src/msw/windows2.cpp
wxPython/src/msw/windows3.cpp
wxPython/src/msw/wx.cpp
wxPython/src/msw/wx.py
wxPython/src/my_typemaps.i
wxPython/wxPython/lib/buttons.py