2f90df854e
2. the C++ versions of wxSizer and firends, Python versions are 'depreciated' 3. wxPyEvent and wxPyCommandEvent, event classes that can carry some python objects through the event system and safely come back out again. 4. wxGridSizer and wxFlexGridSizer 5. wxValidator 6. wxPyOnDemandOutputWindow 7. several tweaks, fixes and additions of missing methods, etc. 8. and probably several other things I am forgetting since CVS was down so long... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
#----------------------------------------------------------------------------
|
|
# Name: __init__.py
|
|
# Purpose: The presence of this file turns this directory into a
|
|
# Python package.
|
|
#
|
|
# Author: Robin Dunn
|
|
#
|
|
# Created: 18-May-1999
|
|
# RCS-ID: $Id$
|
|
# Copyright: (c) 1998 by Total Control Software
|
|
# Licence: wxWindows license
|
|
#----------------------------------------------------------------------------
|
|
|
|
from sizer import *
|
|
from box import *
|
|
from border import *
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
import os
|
|
from wxPython.wx import wxMessageDialog, wxOK, wxICON_EXCLAMATION
|
|
|
|
if not os.environ.has_key('WXP_OLDSIZERS'):
|
|
dlg = wxMessageDialog(None,
|
|
"Since wxWindows now includes sizers the classes in\n"
|
|
"wxPython.lib.sizers have been depreciated. Please\n"
|
|
"see the Reference Manual for details of the new classes.\n"
|
|
"\n"
|
|
"To contiunue using wxPython.lib.sizers without this\n"
|
|
"message you can set the WXP_OLDSIZERS envronment \n"
|
|
"variable to any value.",
|
|
"Depreciated Feature",
|
|
wxOK | wxICON_EXCLAMATION)
|
|
dlg.ShowModal()
|
|
dlg.Destroy()
|
|
|
|
#----------------------------------------------------------------------------
|