Minor wxPython changes for wxWin 2.0

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1859 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
1999-03-05 07:23:42 +00:00
parent 9f68a1f235
commit 62abd41ede
7 changed files with 85 additions and 38 deletions

View File

@@ -9,7 +9,7 @@
# Copyright: (c) 1998 by Total Control Software
# Licence: wxWindows license
#----------------------------------------------------------------------------
VERSION=2.0b5
VERSION=2.0b6
# Set WXDIR to the root wxWindows directory for your system
WXDIR = $(WXWIN)
@@ -276,7 +276,11 @@ dist:
#------------------------------------------------------------------------
#
# $Log$
# Revision 1.4 1999/03/05 07:22:30 RD
# Minor wxPython changes for wxWin 2.0
#
# Revision 1.3 1999/02/25 07:08:33 RD
#
# wxPython version 2.0b5
#
# Revision 1.2 1999/02/20 09:03:00 RD

View File

@@ -33,8 +33,8 @@
* and things like that.
*
* $Log$
* Revision 1.7 1999/02/25 07:09:28 RD
* wxPython version 2.0b5
* Revision 1.8 1999/03/05 07:23:03 RD
* Minor wxPython changes for wxWin 2.0
*
************************************************************************/
@@ -1313,6 +1313,8 @@ SWIGEXPORT(void,initwxc)() {
PyDict_SetItemString(d,"wxCB_READONLY", PyInt_FromLong((long) wxCB_READONLY));
PyDict_SetItemString(d,"wxRA_HORIZONTAL", PyInt_FromLong((long) wxRA_HORIZONTAL));
PyDict_SetItemString(d,"wxRA_VERTICAL", PyInt_FromLong((long) wxRA_VERTICAL));
PyDict_SetItemString(d,"wxRA_SPECIFY_ROWS", PyInt_FromLong((long) wxRA_SPECIFY_ROWS));
PyDict_SetItemString(d,"wxRA_SPECIFY_COLS", PyInt_FromLong((long) wxRA_SPECIFY_COLS));
PyDict_SetItemString(d,"wxRB_GROUP", PyInt_FromLong((long) wxRB_GROUP));
PyDict_SetItemString(d,"wxGA_PROGRESSBAR", PyInt_FromLong((long) wxGA_PROGRESSBAR));
PyDict_SetItemString(d,"wxGA_HORIZONTAL", PyInt_FromLong((long) wxGA_HORIZONTAL));
@@ -1753,7 +1755,7 @@ SWIGEXPORT(void,initwxc)() {
PyDict_SetItemString(d,"wxEVT_COMMAND_TAB_SEL_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_TAB_SEL_CHANGING));
PyDict_SetItemString(d,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED));
PyDict_SetItemString(d,"wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING", PyInt_FromLong((long) wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING));
PyDict_SetItemString(d,"__version__", PyString_FromString("2.0b5"));
PyDict_SetItemString(d,"__version__", PyString_FromString("2.0b6"));
PyDict_SetItemString(d,"cvar", SWIG_globals);
SWIG_addvarlink(SWIG_globals,"wxPyDefaultPosition",_wrap_wxPyDefaultPosition_get, _wrap_wxPyDefaultPosition_set);
SWIG_addvarlink(SWIG_globals,"wxPyDefaultSize",_wrap_wxPyDefaultSize_get, _wrap_wxPyDefaultSize_set);

View File

@@ -185,6 +185,8 @@ wxCB_SORT = wxc.wxCB_SORT
wxCB_READONLY = wxc.wxCB_READONLY
wxRA_HORIZONTAL = wxc.wxRA_HORIZONTAL
wxRA_VERTICAL = wxc.wxRA_VERTICAL
wxRA_SPECIFY_ROWS = wxc.wxRA_SPECIFY_ROWS
wxRA_SPECIFY_COLS = wxc.wxRA_SPECIFY_COLS
wxRB_GROUP = wxc.wxRB_GROUP
wxGA_PROGRESSBAR = wxc.wxGA_PROGRESSBAR
wxGA_HORIZONTAL = wxc.wxGA_HORIZONTAL
@@ -1259,8 +1261,8 @@ class wxApp(wxPyApp):
#----------------------------------------------------------------------------
#
# $Log$
# Revision 1.7 1999/02/25 07:09:30 RD
# wxPython version 2.0b5
# Revision 1.8 1999/03/05 07:23:07 RD
# Minor wxPython changes for wxWin 2.0
#
# Revision 1.11 1999/02/20 09:02:55 RD
# Added wxWindow_FromHWND(hWnd) for wxMSW to construct a wxWindow from a

View File

@@ -47,7 +47,7 @@
//---------------------------------------------------------------------------
#define __version__ "2.0b5"
#define __version__ "2.0b6"
wxPoint wxPyDefaultPosition;
wxSize wxPyDefaultSize;
@@ -158,7 +158,11 @@ extern "C" SWIGEXPORT(void,initutilsc)();
/////////////////////////////////////////////////////////////////////////////
//
// $Log$
// Revision 1.8 1999/03/05 07:22:32 RD
// Minor wxPython changes for wxWin 2.0
//
// Revision 1.7 1999/02/25 07:08:37 RD
//
// wxPython version 2.0b5
//
// Revision 1.6 1999/02/20 09:03:04 RD