wxWidgets/wxPython/contrib/ogl
Robin Dunn 9416aa89ca Implemented the first phase of OOR (Original Object Return). See the
text in the demo for more details of what this means, but in a
nutshell methods such as wxWindow.GetParent or FindWindowById will now
return a shadow object of the proper type if it can.  By "proper type"
I mean that if the wxWindow pointer returned from FindWindowById
really points to a wxButton then the Python object constructed will be
of a wxButtonPtr class instead of wxWindowPtr as before.  This should
reduce or eliminiate the need for wxPyTypeCast.  (Woo Hoo!)  The
objects returned are still not the original Python object, but that is
the next step.  (Although it will probably only work on Python 2.1 and
beyond because it will use weak references.)

A few other minor tweaks and fixes and additions for things found
while doing the OOR stuff.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10197 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-05-17 22:47:09 +00:00
..
_ogldefs.i Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
_oglextras.py Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
.cvsignore Merged wxPython 2.2.2 over to the main branch 2000-10-30 21:08:42 +00:00
ogl.cpp Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
ogl.i Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
ogl.py Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglbasic.cpp Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglbasic.i Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglbasic.py Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglcanvas.cpp Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglcanvas.i Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglcanvas.py Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglhelpers.h Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglshapes2.cpp Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglshapes2.i Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglshapes2.py Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglshapes.cpp Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglshapes.i Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
oglshapes.py Implemented the first phase of OOR (Original Object Return). See the 2001-05-17 22:47:09 +00:00
README.txt merged 2.2 branch 2000-07-15 19:51:35 +00:00

Since OGL is not always bundled with distributions of wxWindows, in
order for it to be a standard part of wxPython I need to bundle it
here.  The contents of the contrib directory are copies of the
relevant parts of the main contrib directory in wxWindows.  The
build.py script in this directory will also build the needed files
from there, so you no longer have to worry about aquiring and building
additional libraries beyond wxWindows itself.