]> git.saurik.com Git - wxWidgets.git/log
wxWidgets.git
22 years agoMake use of new array functions.
Stefan Neis [Sat, 31 Aug 2002 22:42:29 +0000 (22:42 +0000)] 
Make use of new array functions.
Added redraw function (by Roger Gammans).
Added Cell overflow & multiple cells (Patch 518206).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16897 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agouse include "..." instead of <...>
Gilles Depeyrot [Sat, 31 Aug 2002 22:36:13 +0000 (22:36 +0000)] 
use include "..." instead of <...>

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodisable use of #pragma interface under Mac OS X
Gilles Depeyrot [Sat, 31 Aug 2002 22:31:03 +0000 (22:31 +0000)] 
disable use of #pragma interface under Mac OS X
GNU compiler included with Mac OS X 10.2 (Jaguar) as well as August Developer
Tools update contain a bug concerning #pragma interface handling that can only
be worked around by not using them (and they are not necessary anyways)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16895 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agosymbols.txt is no longer.
Ron Lee [Sat, 31 Aug 2002 20:06:31 +0000 (20:06 +0000)] 
symbols.txt is no longer.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoForgot to add wxX11 FAQ
Julian Smart [Sat, 31 Aug 2002 19:00:47 +0000 (19:00 +0000)] 
Forgot to add wxX11 FAQ

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16893 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSome doc fixes
Julian Smart [Sat, 31 Aug 2002 16:27:35 +0000 (16:27 +0000)] 
Some doc fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16892 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years ago- applied patch that adds more i18n support to XRC handlers
Václav Slavík [Sat, 31 Aug 2002 15:37:20 +0000 (15:37 +0000)] 
- applied patch that adds more i18n support to XRC handlers
- added ; to ends of lines in gettext output - needed for older gettext tools?

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoapplied patch that adds more i18n support to XRC handlers
Václav Slavík [Sat, 31 Aug 2002 15:37:06 +0000 (15:37 +0000)] 
applied patch that adds more i18n support to XRC handlers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16890 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoAdded log.h inclusion
Julian Smart [Sat, 31 Aug 2002 12:49:19 +0000 (12:49 +0000)] 
Added log.h inclusion

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16889 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoApplied patch [ 599043 ] fix for wxTreeCtrl/MSW right-click prob
Julian Smart [Sat, 31 Aug 2002 12:12:54 +0000 (12:12 +0000)] 
Applied patch [ 599043 ] fix for wxTreeCtrl/MSW right-click prob

Benjamin I. Williams

There currently is a very significant problem with the
right-click behavior in wxTreeCtrl. The attached patch
file fixes this problem.

To better understand the problem, load up the tree
control, and start right-clicking on items. Note how
the focus rectangle does not behave properly. Next,
enable multiple selection. Now select several items,
and start right-clicking on the selected items. Note
how the selection highlights disappear.

If you try the tree sample with the generic tree
control, you will notice that the problem does not
occur, and that the tree control behaves properly.

This patch brings the MSW tree control implementation
in line with the generic implementation. This is the
same behavior that one can notice in applications such
as windows explorer and Visual Studio.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16888 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoApplied patch [ 600500 ] Tip-of-day: comments, translatable
Julian Smart [Sat, 31 Aug 2002 12:08:02 +0000 (12:08 +0000)] 
Applied patch [ 600500 ] Tip-of-day: comments, translatable

By Robert O'Connor

This is a patch to wxTip Provider classes used by the "Tip of the day" dialog.

See wx-dev archives August 2002 for discussion of the functionality design.

It does 5 things:
-Support for comments inside the tips file. The pound character (#) is used, as recommended by Vadim.
-Allows optional easy translation support to tips, by marking them as translatable for gettext, by enclosing them in a _(""). Program will translate these tips at runtime from the active catalog.
-Blank lines or lines with just spaces are automatically skipped (I had to put this in, I keep wondering why I get blank tips sometimes and it is because the text file had a empty blank line at the end of the text file).
-There is a pluggable virtual function to preprocess to modify the tip in a derived class, in case something specialized is desired, such as variable expansion, etc, as recommended by Julian and Vadim.
-Now resets the tip counter if the previous tip is past the end of the file (ie you removed some tips, or changed tip files), as discussed on wx-dev.

This patch updates:
-The classes.
-The class documentation and the Tip-of-the-day topic overview documentation.
-The dialogs example, placing some new strings for the tips.txt file which demonstrate how to use the Tip-of-the-day features for in practice.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoApplied patch [ 601072 ] wxFileName::GetLongPath error & fix
Julian Smart [Sat, 31 Aug 2002 11:42:12 +0000 (11:42 +0000)] 
Applied patch [ 601072 ] wxFileName::GetLongPath error & fix
By Michael Fielding (mfielding)

When using wxFileName::MakeRelativeTo with a new base of "x:\", the result is incorrect. It works fine when there is a subdirectory after x:\. I tracked this to a bug in GetLongPath; here is the fix.

Also, GetLongPath will now try and get as much long path as it can, failing only when part of the path cannot be found. eg

x:\existi~1\file not existing.new becomes
x:\existing directory\filenotexisting.new

instead of just staying the same.

Also, MakeRelative no longer makes filenames lowercase when it normalises them.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16886 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodisable use of #pragma interface under Mac OS X
Gilles Depeyrot [Sat, 31 Aug 2002 11:29:13 +0000 (11:29 +0000)] 
disable use of #pragma interface under Mac OS X
GNU compiler included with Mac OS X 10.2 (Jaguar) as well as August Developer
Tools update contain a bug concerning #pragma interface handling that can only
be worked around by not using them (and they are not necessary anyways)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoApplied patch [ 601957 ] wxGrid: Start editing with numberpad key
Julian Smart [Sat, 31 Aug 2002 11:25:37 +0000 (11:25 +0000)] 
Applied patch [ 601957 ] wxGrid: Start editing with numberpad key

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16883 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoAdded RTTI macros
Julian Smart [Sat, 31 Aug 2002 11:14:30 +0000 (11:14 +0000)] 
Added RTTI macros

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16882 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoWeekly updates
David Webster [Fri, 30 Aug 2002 21:54:47 +0000 (21:54 +0000)] 
Weekly updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodon't use vfork() in wxExecute()
Vadim Zeitlin [Fri, 30 Aug 2002 21:38:12 +0000 (21:38 +0000)] 
don't use vfork() in wxExecute()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16880 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodon't eat Shift-Ctrl-[XCV] keys
Vadim Zeitlin [Fri, 30 Aug 2002 21:30:28 +0000 (21:30 +0000)] 
don't eat Shift-Ctrl-[XCV] keys

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16879 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agomention that SetSelection(-1, -1) selects everything
Vadim Zeitlin [Fri, 30 Aug 2002 21:29:27 +0000 (21:29 +0000)] 
mention that SetSelection(-1, -1) selects everything

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16878 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodocumented SetSelection()
Vadim Zeitlin [Fri, 30 Aug 2002 21:28:56 +0000 (21:28 +0000)] 
documented SetSelection()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16877 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoWeekly update
David Webster [Fri, 30 Aug 2002 21:20:42 +0000 (21:20 +0000)] 
Weekly update

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16876 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoAdded another log.h
Julian Smart [Fri, 30 Aug 2002 21:19:41 +0000 (21:19 +0000)] 
Added another log.h

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16875 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agocompilation problem for compilers with old for() scoping rules
Vadim Zeitlin [Fri, 30 Aug 2002 21:13:30 +0000 (21:13 +0000)] 
compilation problem for compilers with old for() scoping rules

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16874 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agocompilation fix (missing wx/log.h include)
Vadim Zeitlin [Fri, 30 Aug 2002 21:10:28 +0000 (21:10 +0000)] 
compilation fix (missing wx/log.h include)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoAdded another log.h; removed redundant trace args
Julian Smart [Fri, 30 Aug 2002 21:06:05 +0000 (21:06 +0000)] 
Added another log.h; removed redundant trace args

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16872 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoadded Read64() and Write64() docs
Vadim Zeitlin [Fri, 30 Aug 2002 21:05:53 +0000 (21:05 +0000)] 
added Read64() and Write64() docs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoAdded log.h
Julian Smart [Fri, 30 Aug 2002 20:54:06 +0000 (20:54 +0000)] 
Added log.h

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16870 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoMods for Wine compilation
Julian Smart [Fri, 30 Aug 2002 20:34:27 +0000 (20:34 +0000)] 
Mods for Wine compilation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16869 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoTRUE, not true; FALSE not false
David Webster [Fri, 30 Aug 2002 17:04:12 +0000 (17:04 +0000)] 
TRUE, not true; FALSE not false

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16868 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodon't disable top level children in parents Enable()
Vadim Zeitlin [Fri, 30 Aug 2002 15:10:59 +0000 (15:10 +0000)] 
don't disable top level children in parents Enable()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agolost log.h fixed
Chris Elliott [Fri, 30 Aug 2002 13:57:04 +0000 (13:57 +0000)] 
lost log.h fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16866 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agolost log.h fixed
Chris Elliott [Fri, 30 Aug 2002 13:49:49 +0000 (13:49 +0000)] 
lost log.h fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16865 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoOS/2 must have positive control IDs.
David Webster [Fri, 30 Aug 2002 13:44:03 +0000 (13:44 +0000)] 
OS/2 must have positive control IDs.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16864 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agofix for 10.2 (persistent tooltips ;-)
Stefan Csomor [Fri, 30 Aug 2002 13:43:09 +0000 (13:43 +0000)] 
fix for 10.2 (persistent tooltips ;-)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16863 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoFix to allow proper positioning of child windows under OS/2 when auto layouts are...
David Webster [Fri, 30 Aug 2002 13:39:01 +0000 (13:39 +0000)] 
Fix to allow proper positioning of child windows under OS/2 when auto layouts are not being done.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16862 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoLots of updates fixing radiobox processing, checkboxes and add notebook control.
David Webster [Fri, 30 Aug 2002 13:37:52 +0000 (13:37 +0000)] 
Lots of updates fixing radiobox processing, checkboxes and add notebook control.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16861 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoadded wxSpinCtrl::SetSelection()
Vadim Zeitlin [Fri, 30 Aug 2002 01:00:04 +0000 (01:00 +0000)] 
added wxSpinCtrl::SetSelection()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoremoved wxApp::DoInit(); added wxApp::CreateMessageOutput(); fixed wxMsgOutput memory...
Vadim Zeitlin [Fri, 30 Aug 2002 00:58:34 +0000 (00:58 +0000)] 
removed wxApp::DoInit(); added wxApp::CreateMessageOutput(); fixed wxMsgOutput memory leak

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16859 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoremoved extra trailing semicolons which break compilation for some compilers
Vadim Zeitlin [Fri, 30 Aug 2002 00:39:33 +0000 (00:39 +0000)] 
removed extra trailing semicolons which break compilation for some compilers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16858 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodisable children when the parent is disabled
Vadim Zeitlin [Fri, 30 Aug 2002 00:34:08 +0000 (00:34 +0000)] 
disable children when the parent is disabled

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoloop in wxInputStream::Read() while there is data to read
Vadim Zeitlin [Thu, 29 Aug 2002 22:10:02 +0000 (22:10 +0000)] 
loop in wxInputStream::Read() while there is data to read

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agochanged wxExecute(char **) version to take wxChar **
Vadim Zeitlin [Thu, 29 Aug 2002 21:54:39 +0000 (21:54 +0000)] 
changed wxExecute(char **) version to take wxChar **

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16855 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodon't crash in wx(Flex)GridSizer with division by 0, assert instead; also factored...
Vadim Zeitlin [Thu, 29 Aug 2002 21:48:32 +0000 (21:48 +0000)] 
don't crash in wx(Flex)GridSizer with division by 0, assert instead; also factored out a lot of duplicated code in a single function

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16854 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoDocumented wxListCtrl::GetColumnCount
Mattia Barbon [Thu, 29 Aug 2002 16:46:25 +0000 (16:46 +0000)] 
Documented wxListCtrl::GetColumnCount

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoScript updates
Julian Smart [Thu, 29 Aug 2002 13:52:26 +0000 (13:52 +0000)] 
Script updates
Addition of wxOS2 configure files
required for distribution

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16852 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoUpdated Svedish translation
Mattia Barbon [Wed, 28 Aug 2002 20:24:42 +0000 (20:24 +0000)] 
Updated Svedish translation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16851 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoAdded exlicit make clean/cleanall in the sample makefile usage.
Mattia Barbon [Wed, 28 Aug 2002 20:19:26 +0000 (20:19 +0000)] 
Added exlicit make clean/cleanall in the sample makefile usage.
Added a note that makefiles are not for UNIX, just for Cugwin/MSYS/DOS
prompt.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoForgot to run autoconf before committing
Mattia Barbon [Wed, 28 Aug 2002 20:18:06 +0000 (20:18 +0000)] 
Forgot to run autoconf before committing

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16849 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoApplied Fabian Wenzel's patches to add -mthreads for threads to work
Mattia Barbon [Wed, 28 Aug 2002 20:11:12 +0000 (20:11 +0000)] 
Applied Fabian Wenzel's patches to add -mthreads for threads to work
in MinGW.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16848 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoMode distrib scripts and such
Robin Dunn [Wed, 28 Aug 2002 20:02:20 +0000 (20:02 +0000)] 
Mode distrib scripts and such

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16846 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoInstaller updates
Robin Dunn [Wed, 28 Aug 2002 17:49:58 +0000 (17:49 +0000)] 
Installer updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16845 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoFixed version number.
Stefan Neis [Wed, 28 Aug 2002 17:29:28 +0000 (17:29 +0000)] 
Fixed version number.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoAdded instructions for compiling with EMX.
Stefan Neis [Wed, 28 Aug 2002 16:28:07 +0000 (16:28 +0000)] 
Added instructions for compiling with EMX.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16843 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoUsing wxImageListType instead of wxGenericImageList
Julian Smart [Wed, 28 Aug 2002 09:31:29 +0000 (09:31 +0000)] 
Using wxImageListType instead of wxGenericImageList

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16842 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoDitribution script mods;
Julian Smart [Wed, 28 Aug 2002 08:54:00 +0000 (08:54 +0000)] 
Ditribution script mods;
Use wxImageList instead of wxGenericImageList where possible
in wxListCtrl

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSome OS/2 specific additions.
Stefan Neis [Wed, 28 Aug 2002 08:50:55 +0000 (08:50 +0000)] 
Some OS/2 specific additions.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16840 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoXmNframeChildType is not in Motif 1.2. #ifdef appropriately.
Julian Smart [Wed, 28 Aug 2002 08:28:00 +0000 (08:28 +0000)] 
XmNframeChildType is not in Motif 1.2. #ifdef appropriately.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSWIGged updates for wxMac
Robin Dunn [Wed, 28 Aug 2002 04:35:28 +0000 (04:35 +0000)] 
SWIGged updates for wxMac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSWIGged updates for wxGTK
Robin Dunn [Wed, 28 Aug 2002 04:32:45 +0000 (04:32 +0000)] 
SWIGged updates for wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16837 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoChange how the tool scripts are installed
Robin Dunn [Wed, 28 Aug 2002 04:31:25 +0000 (04:31 +0000)] 
Change how the tool scripts are installed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16836 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSome updates for the demo
Robin Dunn [Wed, 28 Aug 2002 01:39:00 +0000 (01:39 +0000)] 
Some updates for the demo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSome unicode fixes for the wxWisard wrappers
Robin Dunn [Wed, 28 Aug 2002 01:38:29 +0000 (01:38 +0000)] 
Some unicode fixes for the wxWisard wrappers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16834 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSWIGged updates for wxGTK
Robin Dunn [Tue, 27 Aug 2002 20:50:04 +0000 (20:50 +0000)] 
SWIGged updates for wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16833 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSWIGged updates for wxMac
Robin Dunn [Tue, 27 Aug 2002 20:48:24 +0000 (20:48 +0000)] 
SWIGged updates for wxMac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16832 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSome distrib updates for wxPythonOSX
Robin Dunn [Tue, 27 Aug 2002 20:45:57 +0000 (20:45 +0000)] 
Some distrib updates for wxPythonOSX

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16831 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoRemoved (broken) cross-compilation support from makefiles.
Mattia Barbon [Tue, 27 Aug 2002 20:40:33 +0000 (20:40 +0000)] 
Removed (broken) cross-compilation support from makefiles.
If you want to cross-compile you better use configure.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoCompilation fixes for wxPython's wxWizard, added wxRegionFromPoints
Robin Dunn [Tue, 27 Aug 2002 20:35:18 +0000 (20:35 +0000)] 
Compilation fixes for wxPython's wxWizard, added wxRegionFromPoints

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16829 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoHonour wxSB_WRAP in wxMotif spin button
Mattia Barbon [Tue, 27 Aug 2002 20:32:21 +0000 (20:32 +0000)] 
Honour wxSB_WRAP in wxMotif spin button

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoWhen there is no display, the default log target will log nowhere.
Mattia Barbon [Tue, 27 Aug 2002 20:31:49 +0000 (20:31 +0000)] 
When there is no display, the default log target will log nowhere.
Switch to wxLogStderr before writing the failure message.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoDon't get the string when the combobox returned CB_ERR when getting
Mattia Barbon [Tue, 27 Aug 2002 20:29:55 +0000 (20:29 +0000)] 
Don't get the string when the combobox returned CB_ERR when getting
the length.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16826 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agowxItemContainer already deletes client data; don't delete (again) the
Mattia Barbon [Tue, 27 Aug 2002 20:28:48 +0000 (20:28 +0000)] 
wxItemContainer already deletes client data; don't delete (again) the
data in the control.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16825 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agomade it compile with wxUniv (which doesn't have tooltips)
Vadim Zeitlin [Tue, 27 Aug 2002 20:26:56 +0000 (20:26 +0000)] 
made it compile with wxUniv (which doesn't have tooltips)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16824 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoanother update from Andrew V. Samoilov
Vadim Zeitlin [Tue, 27 Aug 2002 19:16:02 +0000 (19:16 +0000)] 
another update from Andrew V. Samoilov

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16823 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoforce making stats
Vadim Zeitlin [Tue, 27 Aug 2002 19:15:33 +0000 (19:15 +0000)] 
force making stats

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16822 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoapparently CW always has vsnprintf()
Vadim Zeitlin [Tue, 27 Aug 2002 19:04:42 +0000 (19:04 +0000)] 
apparently CW always has vsnprintf()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16821 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoexpanded OnExit() docs (patch 600043)
Vadim Zeitlin [Tue, 27 Aug 2002 19:01:23 +0000 (19:01 +0000)] 
expanded OnExit() docs (patch 600043)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16820 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoupdated ctor/Create() signature to match the real functions (bug #596178)
Vadim Zeitlin [Tue, 27 Aug 2002 18:59:25 +0000 (18:59 +0000)] 
updated ctor/Create() signature to match the real functions (bug #596178)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16819 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoUse the default stdio window for the gui tools
Robin Dunn [Tue, 27 Aug 2002 18:59:18 +0000 (18:59 +0000)] 
Use the default stdio window for the gui tools

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoUpdated note about the tool scripts
Robin Dunn [Tue, 27 Aug 2002 18:56:35 +0000 (18:56 +0000)] 
Updated note about the tool scripts

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoadded a section containing the preprocessor constants defined by wxWindows
Vadim Zeitlin [Tue, 27 Aug 2002 18:41:49 +0000 (18:41 +0000)] 
added a section containing the preprocessor constants defined by wxWindows
(previous -- but heavily updated -- contents of docs/symbols.txt)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agomoved the (updated) contents of this file to the manual
Vadim Zeitlin [Tue, 27 Aug 2002 18:24:26 +0000 (18:24 +0000)] 
moved the (updated) contents of this file to the manual

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16815 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agostreamlined vsnprintf() check -- now that we fall back to our own printf() version...
Vadim Zeitlin [Tue, 27 Aug 2002 18:15:43 +0000 (18:15 +0000)] 
streamlined vsnprintf() check -- now that we fall back to our own printf() version anyhow in some cases it doesn't make sense to jump through all these hoops just to avoid it (and, besides, it didn't work anyhow); suppressed vprintf() and vsscanf() checks which results we never used

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agofixed crashes in Push/PopEventHandler() if the current handler is NULL
Vadim Zeitlin [Tue, 27 Aug 2002 17:03:56 +0000 (17:03 +0000)] 
fixed crashes in Push/PopEventHandler() if the current handler is NULL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16813 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agofixed bug in SetStyle() which wouldn't reset the slant if it had been set before
Vadim Zeitlin [Tue, 27 Aug 2002 16:05:35 +0000 (16:05 +0000)] 
fixed bug in SetStyle() which wouldn't reset the slant if it had been set before

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agomy previous backwards compatible fix wasn't really very compatible
Vadim Zeitlin [Tue, 27 Aug 2002 15:37:54 +0000 (15:37 +0000)] 
my previous backwards compatible fix wasn't really very compatible

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16811 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agofixed miscasing in GetOutCode
Stefan Csomor [Tue, 27 Aug 2002 15:14:57 +0000 (15:14 +0000)] 
fixed miscasing in GetOutCode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16810 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoadded icons to virtual list mode
Vadim Zeitlin [Tue, 27 Aug 2002 09:38:11 +0000 (09:38 +0000)] 
added icons to virtual list mode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agocompilation fix
Vadim Zeitlin [Tue, 27 Aug 2002 09:26:30 +0000 (09:26 +0000)] 
compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16808 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agomention wxCHECK_VERSION
Vadim Zeitlin [Tue, 27 Aug 2002 09:20:13 +0000 (09:20 +0000)] 
mention wxCHECK_VERSION

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16807 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agodeprecated static wxWizard::Create()
Vadim Zeitlin [Tue, 27 Aug 2002 09:17:36 +0000 (09:17 +0000)] 
deprecated static wxWizard::Create()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agofixed wxVsnprintf_() compilation in ASCII mode
Vadim Zeitlin [Tue, 27 Aug 2002 09:02:12 +0000 (09:02 +0000)] 
fixed wxVsnprintf_() compilation in ASCII mode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years ago(blind) fix for BC++ compilation problem with wxPutc() redefinition
Vadim Zeitlin [Tue, 27 Aug 2002 08:56:50 +0000 (08:56 +0000)] 
(blind) fix for BC++ compilation problem with wxPutc() redefinition

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16804 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSome distrib updates for wxPythonOSX, and reSWIGged a bit
Robin Dunn [Tue, 27 Aug 2002 01:11:04 +0000 (01:11 +0000)] 
Some distrib updates for wxPythonOSX, and reSWIGged a bit

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16803 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoUpdated note about wxSTC using wxPopupWindow
Robin Dunn [Tue, 27 Aug 2002 00:58:15 +0000 (00:58 +0000)] 
Updated note about wxSTC using wxPopupWindow

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16802 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoSome little tweaks
Robin Dunn [Tue, 27 Aug 2002 00:57:19 +0000 (00:57 +0000)] 
Some little tweaks

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoDon't use a wxPopupWindow on wxGTK
Robin Dunn [Tue, 27 Aug 2002 00:56:56 +0000 (00:56 +0000)] 
Don't use a wxPopupWindow on wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoFixed warnings due to use of %d for long int params in function
Guillermo Rodriguez Garcia [Mon, 26 Aug 2002 22:54:25 +0000 (22:54 +0000)] 
Fixed warnings due to use of %d for long int params in function
wxNativeFontInfo::ToString()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16799 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years ago Applied button aligment patch.
Robert Roebling [Mon, 26 Aug 2002 21:42:44 +0000 (21:42 +0000)] 
  Applied button aligment patch.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16798 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years ago Applied zero-size patch.
Robert Roebling [Mon, 26 Aug 2002 21:27:13 +0000 (21:27 +0000)] 
  Applied zero-size patch.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16797 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

22 years agoanother fix to the wxFormatConverter bug with the formats which don't have to be...
Vadim Zeitlin [Mon, 26 Aug 2002 21:15:04 +0000 (21:15 +0000)] 
another fix to the wxFormatConverter bug with the formats which don't have to be converted

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16796 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775