wxWidgets.git
15 years agominor change: differentiate the initial banner of test.exe from test_gui.exe
Francesco Montorsi [Mon, 1 Jun 2009 14:46:44 +0000 (14:46 +0000)] 
minor change: differentiate the initial banner of test.exe from test_gui.exe

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

15 years agoadd check about network connectivity; don't run the test if it's not available
Francesco Montorsi [Mon, 1 Jun 2009 14:45:26 +0000 (14:45 +0000)] 
add check about network connectivity; don't run the test if it's not available

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

15 years agoCloses #10495: wxDataViewCtrl needs a way to start the label editor programmatically...
Robert Roebling [Mon, 1 Jun 2009 13:57:38 +0000 (13:57 +0000)] 
Closes #10495: wxDataViewCtrl needs a way to start the label editor programmatically, also Windows port now emits vetoable ..._EDITING_STARTED event

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

15 years agofix loading ICO from socket stream: override OnSysTell and OnSysSeek rather than...
Francesco Montorsi [Mon, 1 Jun 2009 13:56:41 +0000 (13:56 +0000)] 
fix loading ICO from socket stream: override OnSysTell and OnSysSeek rather than directly SeekO/I or TellO/I; in wxICOHandler only call SeekI() if we have a non-null seek offset

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

15 years agocorrected wrong type of posErr parameter (closes #10862)
Vadim Zeitlin [Mon, 1 Jun 2009 13:04:26 +0000 (13:04 +0000)] 
corrected wrong type of posErr parameter (closes #10862)

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

15 years agofix PCH-less build
Francesco Montorsi [Mon, 1 Jun 2009 12:40:50 +0000 (12:40 +0000)] 
fix PCH-less build

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

15 years agoadd wxImage test units to test loading from both seekable and non-seekable streams
Francesco Montorsi [Mon, 1 Jun 2009 11:46:36 +0000 (11:46 +0000)] 
add wxImage test units to test loading from both seekable and non-seekable streams

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

15 years agodocument that CanRead() and GetImageCount() functions of wxImageHandlers do NOT modif...
Francesco Montorsi [Mon, 1 Jun 2009 11:43:36 +0000 (11:43 +0000)] 
document that CanRead() and GetImageCount() functions of wxImageHandlers do NOT modify the current stream position and that they require seekable streams; rename current GetImageCount() functions to DoGetImageCount() and put save-and-restore stream position logic in GetImageCount(); add comments in the various DoCanRead() and in DoGetImageCount() where the stream position is modified; remove unneeded SeekI(0) calls from DoCanRead() and DoGetImageCount() functions: they didn't allow to load images from non-seekable streams; implement forward-seeking in wxInputStream::SeekI() also for non-seekable streams

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

15 years agoadd wxURL::GetInputStream test unit; add a global IsNetworkAvailable() utility to...
Francesco Montorsi [Mon, 1 Jun 2009 11:30:50 +0000 (11:30 +0000)] 
add wxURL::GetInputStream test unit; add a global IsNetworkAvailable() utility to the test units

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

15 years agoextracted wxTextWrapper in its own header and made it public
Vadim Zeitlin [Sun, 31 May 2009 20:12:07 +0000 (20:12 +0000)] 
extracted wxTextWrapper in its own header and made it public

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

15 years agodon't redefine HAVE_STRFTIME as it can already be defined by configure (forgotten...
Vadim Zeitlin [Sun, 31 May 2009 19:40:57 +0000 (19:40 +0000)] 
don't redefine HAVE_STRFTIME as it can already be defined by configure (forgotten part of r60842)

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

15 years agoadded wxDC::CopyAttributes() and use it in wxBufferedDC to ensure that wxAutoBuffered...
Vadim Zeitlin [Sun, 31 May 2009 19:40:04 +0000 (19:40 +0000)] 
added wxDC::CopyAttributes() and use it in wxBufferedDC to ensure that wxAutoBufferedPaintDC font is correctly initialized from the window font, as it already happens with wxPaintDC that it mimics

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

15 years agoset focus to the window when the mouse is clicked in it explicitly as we don't let...
Vadim Zeitlin [Sun, 31 May 2009 19:20:20 +0000 (19:20 +0000)] 
set focus to the window when the mouse is clicked in it explicitly as we don't let the default mouse click handling take place

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

15 years agouse enhanced metafiles for wxMSW print preview: this is as accurate as previous code...
Václav Slavík [Sun, 31 May 2009 19:15:07 +0000 (19:15 +0000)] 
use enhanced metafiles for wxMSW print preview: this is as accurate as previous code, but much faster (fixes #9970)

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

15 years agoadd ability to create wxEnhMetaFileDC based on a reference DC
Václav Slavík [Sun, 31 May 2009 19:11:15 +0000 (19:11 +0000)] 
add ability to create wxEnhMetaFileDC based on a reference DC

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

15 years agodon't redefine HAVE_STRFTIME as it can already be defined by configure (closes #10861)
Vadim Zeitlin [Sun, 31 May 2009 18:57:20 +0000 (18:57 +0000)] 
don't redefine HAVE_STRFTIME as it can already be defined by configure (closes #10861)

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

15 years agogroup wxPlatformInfo functions for easier browsing; add more descriptions; link the...
Francesco Montorsi [Sun, 31 May 2009 16:34:13 +0000 (16:34 +0000)] 
group wxPlatformInfo functions for easier browsing; add more descriptions; link the related function group

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

15 years agoadded default ctor to wxMouseEventsManager, this is convenient when deriving window...
Vadim Zeitlin [Sun, 31 May 2009 14:43:01 +0000 (14:43 +0000)] 
added default ctor to wxMouseEventsManager, this is convenient when deriving window classes (which must provide default ctors to e.g. allow loading them from XRC) from it

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

15 years agodon't add client area origin when positioning the child MDI frame
Vadim Zeitlin [Sun, 31 May 2009 13:22:45 +0000 (13:22 +0000)] 
don't add client area origin when positioning the child MDI frame

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

15 years agoimprove wxTreeCtrl::ScrollTo() behaviour in the generic version and add a test for...
Vadim Zeitlin [Sun, 31 May 2009 13:08:16 +0000 (13:08 +0000)] 
improve wxTreeCtrl::ScrollTo() behaviour in the generic version and add a test for it to the sample

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

15 years agoenable OpenGL library build by default under Windows too
Vadim Zeitlin [Sun, 31 May 2009 12:55:11 +0000 (12:55 +0000)] 
enable OpenGL library build by default under Windows too

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

15 years agoremove duplicate wxUSE_GSTREAMER definition
Vadim Zeitlin [Sun, 31 May 2009 12:54:16 +0000 (12:54 +0000)] 
remove duplicate wxUSE_GSTREAMER definition

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

15 years agoadded wxTempFile::Flush() (dedicated to Theodore Ts'o and Ext4)
Vadim Zeitlin [Sun, 31 May 2009 09:49:31 +0000 (09:49 +0000)] 
added wxTempFile::Flush() (dedicated to Theodore Ts'o and Ext4)

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

15 years agoallow overriding wxUSE_GLCANVAS value in setup.h by using USE_OPENGL=1 with make...
Vadim Zeitlin [Sun, 31 May 2009 09:12:20 +0000 (09:12 +0000)] 
allow overriding wxUSE_GLCANVAS value in setup.h by using USE_OPENGL=1 with make (closes #10832)

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

15 years agoAdded wxPGProperty::SetDefaultValue(v), as a shortcut for SetAttribute(DefaultValue, v)
Jaakko Salli [Sun, 31 May 2009 08:58:38 +0000 (08:58 +0000)] 
Added wxPGProperty::SetDefaultValue(v), as a shortcut for SetAttribute(DefaultValue, v)

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

15 years agoimplement Update() properly for the generic wxListCtrl (see #10857)
Vadim Zeitlin [Sat, 30 May 2009 22:25:42 +0000 (22:25 +0000)] 
implement Update() properly for the generic wxListCtrl (see #10857)

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

15 years agodefine HAVE_LARGEFILE_SUPPORT in setup.h when large files support is available and...
Vadim Zeitlin [Sat, 30 May 2009 17:15:36 +0000 (17:15 +0000)] 
define HAVE_LARGEFILE_SUPPORT in setup.h when large files support is available and test for it in wx/filefn.h (closes #10844); document that wx/filefn.h must be included before testing for wxHAS_LARGE_(F)FILES

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

15 years agofix ANSI build compilation (closes #10846)
Vadim Zeitlin [Sat, 30 May 2009 17:02:46 +0000 (17:02 +0000)] 
fix ANSI build compilation (closes #10846)

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

15 years agoadded power, svg, taborder and xrc samples (closes #10849)
Vadim Zeitlin [Sat, 30 May 2009 16:42:51 +0000 (16:42 +0000)] 
added power, svg, taborder and xrc samples (closes #10849)

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

15 years agorefactor printf benchmarks to fit the new wxWidgets benchmarking framework; fix tests...
Francesco Montorsi [Sat, 30 May 2009 13:54:22 +0000 (13:54 +0000)] 
refactor printf benchmarks to fit the new wxWidgets benchmarking framework; fix tests and benchmarks builds (at least on linux) which were failing because of wrong order of <wx-lib> tags in the bakefiles

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

15 years agocompilation fix for wxUSE_STL==1
Vadim Zeitlin [Sat, 30 May 2009 11:46:15 +0000 (11:46 +0000)] 
compilation fix for wxUSE_STL==1

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

15 years agoMore forward-ported wxPython-bindings related cleanup from 2.9.0 branch, also documen...
Jaakko Salli [Sat, 30 May 2009 11:20:35 +0000 (11:20 +0000)] 
More forward-ported wxPython-bindings related cleanup from 2.9.0 branch, also documented wxPGProperty::GetItemAtY()

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

15 years agoForward-ported wxPython-bindings related cleanup from 2.9.0 branch
Jaakko Salli [Sat, 30 May 2009 10:49:05 +0000 (10:49 +0000)] 
Forward-ported wxPython-bindings related cleanup from 2.9.0 branch

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

15 years agoEnsure the tooltip has been created before enabling or setting the delay, or they...
Julian Smart [Fri, 29 May 2009 13:32:42 +0000 (13:32 +0000)] 
Ensure the tooltip has been created before enabling or setting the delay, or they will be no-ops.

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

15 years agoavoid leaking allocated tooltips
Francesco Montorsi [Thu, 28 May 2009 20:31:38 +0000 (20:31 +0000)] 
avoid leaking allocated tooltips

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

15 years agoremove redundant extern keywords from wxEmptyString definitions
Vadim Zeitlin [Thu, 28 May 2009 15:06:56 +0000 (15:06 +0000)] 
remove redundant extern keywords from wxEmptyString definitions

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

15 years agofixing length param, see #10846
Stefan Csomor [Thu, 28 May 2009 09:59:32 +0000 (09:59 +0000)] 
fixing length param, see #10846

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

15 years agoavoid g++ 4.3 warnings about conflict between parameter and method names (closes...
Vadim Zeitlin [Thu, 28 May 2009 09:49:20 +0000 (09:49 +0000)] 
avoid g++ 4.3 warnings about conflict between parameter and method names (closes #10843)

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

15 years agocompilation fix for STL/!UNICODE case (closes #10846)
Vadim Zeitlin [Thu, 28 May 2009 09:42:08 +0000 (09:42 +0000)] 
compilation fix for STL/!UNICODE case (closes #10846)

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

15 years agofixing non-unicode build
Stefan Csomor [Wed, 27 May 2009 19:20:22 +0000 (19:20 +0000)] 
fixing non-unicode build

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

15 years agoupdate setup for OpenVMS
Jouk Jansen [Wed, 27 May 2009 12:48:14 +0000 (12:48 +0000)] 
update setup for OpenVMS

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

15 years agomoving common code up
Stefan Csomor [Wed, 27 May 2009 12:33:27 +0000 (12:33 +0000)] 
moving common code up

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

15 years agoupdating cursor code from Dave's newer version, fixes #10798
Stefan Csomor [Wed, 27 May 2009 10:17:34 +0000 (10:17 +0000)] 
updating cursor code from Dave's newer version, fixes #10798

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

15 years agoallowing font changes on multi-line textctrls, see #10801
Stefan Csomor [Wed, 27 May 2009 09:52:23 +0000 (09:52 +0000)] 
allowing font changes on multi-line textctrls, see #10801

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

15 years agomake sure NSScrollers are always having the desired orientation, fixes #10803
Stefan Csomor [Wed, 27 May 2009 08:17:47 +0000 (08:17 +0000)] 
make sure NSScrollers are always having the desired orientation, fixes #10803

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

15 years agoSend mail notifications to wx-buildbot@googlegroups.com
Michael Wetherell [Wed, 27 May 2009 02:21:06 +0000 (02:21 +0000)] 
Send mail notifications to wx-buildbot@googlegroups.com

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

15 years agono changes, simply mention a possible misuse of API in a comment (see #60296)
Vadim Zeitlin [Mon, 25 May 2009 20:48:57 +0000 (20:48 +0000)] 
no changes, simply mention a possible misuse of API in a comment (see #60296)

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

15 years agoensure that Excel is visible and has an opened workbook (closes #10837)
Vadim Zeitlin [Mon, 25 May 2009 20:42:39 +0000 (20:42 +0000)] 
ensure that Excel is visible and has an opened workbook (closes #10837)

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

15 years agocorrect a typo in wxSplitterWindow gravity parameter name
Vadim Zeitlin [Mon, 25 May 2009 13:08:00 +0000 (13:08 +0000)] 
correct a typo in wxSplitterWindow gravity parameter name

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

15 years agoadd support for defining list control columns in XRC too (and correct a few things...
Vadim Zeitlin [Mon, 25 May 2009 13:00:28 +0000 (13:00 +0000)] 
add support for defining list control columns in XRC too (and correct a few things in previously added list items support)

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

15 years agoadded a timer updating a counter in the background to be able to easily check visuall...
Vadim Zeitlin [Sun, 24 May 2009 19:40:24 +0000 (19:40 +0000)] 
added a timer updating a counter in the background to be able to easily check visually whether the events are processed or not during the synchronous child proces execution

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

15 years agoremove wxMSW-specific (but copied into wxPalm too) wxAppTraits::AlwaysYield(), it...
Vadim Zeitlin [Sun, 24 May 2009 19:39:40 +0000 (19:39 +0000)] 
remove wxMSW-specific (but copied into wxPalm too) wxAppTraits::AlwaysYield(), it's useless now that wxEventLoop is in wxBase

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

15 years agoalways dispatch messages for the hidden window which receives process termination...
Vadim Zeitlin [Sun, 24 May 2009 19:37:02 +0000 (19:37 +0000)] 
always dispatch messages for the hidden window which receives process termination notifications; otherwise calling wxExecute(wxEXEC_SYNC) without an active event loop never returns

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

15 years agofill in the fields of wxListItem in a wxListEvent before handling the event (closes...
Vadim Zeitlin [Sun, 24 May 2009 18:04:37 +0000 (18:04 +0000)] 
fill in the fields of wxListItem in a wxListEvent before handling the event (closes #10820)

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

15 years agocorrect the inversed assert check in LVN_DELETEITEM handler (closes #10831)
Vadim Zeitlin [Sun, 24 May 2009 17:39:49 +0000 (17:39 +0000)] 
correct the inversed assert check in LVN_DELETEITEM handler (closes #10831)

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

15 years agocompilation fix for wxOSX_USE_EXPERIMENTAL_FONTDIALOG==0 (closes #10834)
Vadim Zeitlin [Sun, 24 May 2009 17:27:51 +0000 (17:27 +0000)] 
compilation fix for wxOSX_USE_EXPERIMENTAL_FONTDIALOG==0 (closes #10834)

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

15 years agoupdate CRT environment block in wxSetEnv() too
Vadim Zeitlin [Sun, 24 May 2009 15:33:33 +0000 (15:33 +0000)] 
update CRT environment block in wxSetEnv() too

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

15 years agowxUSE_GSTREAMER is Unix-specific, remove it from common wx/setup_inc.h; it also requi...
Vadim Zeitlin [Sun, 24 May 2009 09:40:15 +0000 (09:40 +0000)] 
wxUSE_GSTREAMER is Unix-specific, remove it from common wx/setup_inc.h; it also requires wxUSE_THREADS, check for it

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

15 years agomake wxWindow::SetAutoLayout() now works for all windows, not just panels
Vadim Zeitlin [Sat, 23 May 2009 11:26:58 +0000 (11:26 +0000)] 
make wxWindow::SetAutoLayout() now works for all windows, not just panels

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

15 years agomark the document as modified when its text control is (closes #10826)
Vadim Zeitlin [Fri, 22 May 2009 22:52:31 +0000 (22:52 +0000)] 
mark the document as modified when its text control is (closes #10826)

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

15 years agoinitialize wxDocChildFrameAnyBase before creating the real window to ensure that...
Vadim Zeitlin [Fri, 22 May 2009 22:46:18 +0000 (22:46 +0000)] 
initialize wxDocChildFrameAnyBase before creating the real window to ensure that event handling is set up properly before the first events for the new window are received (closes #10825)

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

15 years agono real changes, just remove unneeded empty dtor
Vadim Zeitlin [Fri, 22 May 2009 19:54:09 +0000 (19:54 +0000)] 
no real changes, just remove unneeded empty dtor

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

15 years agoreturn the correct number of columns from wxGridStringTable, even when we don't have...
Vadim Zeitlin [Fri, 22 May 2009 19:53:32 +0000 (19:53 +0000)] 
return the correct number of columns from wxGridStringTable, even when we don't have any rows (closes #10818)

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

15 years agofix unused parameter warning after r60715
Vadim Zeitlin [Fri, 22 May 2009 19:37:05 +0000 (19:37 +0000)] 
fix unused parameter warning after r60715

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

15 years agodon't clear the status bar help text if the wxEVT_MENU_HIGHLIGHT event was processed...
Vadim Zeitlin [Fri, 22 May 2009 19:25:10 +0000 (19:25 +0000)] 
don't clear the status bar help text if the wxEVT_MENU_HIGHLIGHT event was processed by user code (see #10822)

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

15 years agoimplement wxGetActiveWindow() which is now used by wx itself (closes #10809)
Vadim Zeitlin [Fri, 22 May 2009 18:14:40 +0000 (18:14 +0000)] 
implement wxGetActiveWindow() which is now used by wx itself (closes #10809)

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

15 years agoallow 2 step creation of wxDocChildFrameAnyBase and derived classes
Vadim Zeitlin [Fri, 22 May 2009 14:02:07 +0000 (14:02 +0000)] 
allow 2 step creation of wxDocChildFrameAnyBase and derived classes

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

15 years agoCOrrected my misapplied fix, sorry
Julian Smart [Thu, 21 May 2009 10:17:35 +0000 (10:17 +0000)] 
COrrected my misapplied fix, sorry

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

15 years agodon't use m_useProxy if !wxUSE_PROTOCOL_HTTP (see #10815)
Vadim Zeitlin [Wed, 20 May 2009 23:02:21 +0000 (23:02 +0000)] 
don't use m_useProxy if !wxUSE_PROTOCOL_HTTP (see #10815)

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

15 years agocompilation fix in FindPaperType() after latest change
Vadim Zeitlin [Wed, 20 May 2009 22:58:08 +0000 (22:58 +0000)] 
compilation fix in FindPaperType() after latest change

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

15 years agoAvoid resetting size if paper id not found
Julian Smart [Wed, 20 May 2009 13:18:21 +0000 (13:18 +0000)] 
Avoid resetting size if paper id not found

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

15 years agodo allow calling Hide() on the window before it is created
Vadim Zeitlin [Wed, 20 May 2009 13:16:53 +0000 (13:16 +0000)] 
do allow calling Hide() on the window before it is created

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

15 years agoFixed invisible CHM tooltip text bug when window text colour is black.
Julian Smart [Wed, 20 May 2009 13:16:17 +0000 (13:16 +0000)] 
Fixed invisible CHM tooltip text bug when window text colour is black.

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

15 years agoAdded a comment about DMPAPER_USER not always working
Julian Smart [Wed, 20 May 2009 13:08:32 +0000 (13:08 +0000)] 
Added a comment about DMPAPER_USER not always working

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

15 years agoFixed a problem with unrecognised paper id conversions
Julian Smart [Wed, 20 May 2009 11:56:49 +0000 (11:56 +0000)] 
Fixed a problem with unrecognised paper id conversions

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

15 years agoadded Asturian language entry (see #10808)
Vadim Zeitlin [Tue, 19 May 2009 10:51:11 +0000 (10:51 +0000)] 
added Asturian language entry (see #10808)

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

15 years agodisable a test failing under wxGTK because of what appears to be a Pango limitation
Vadim Zeitlin [Sun, 17 May 2009 14:12:28 +0000 (14:12 +0000)] 
disable a test failing under wxGTK because of what appears to be a Pango limitation

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

15 years agouse a different known good face name under non-MSW
Vadim Zeitlin [Sun, 17 May 2009 14:01:38 +0000 (14:01 +0000)] 
use a different known good face name under non-MSW

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

15 years agocorrect test failures under MSW, it shouldn't assume that all predefined fonts have...
Vadim Zeitlin [Sun, 17 May 2009 11:52:26 +0000 (11:52 +0000)] 
correct test failures under MSW, it shouldn't assume that all predefined fonts have non-empty facenames

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

15 years agocorrect test failures under MSW, it shouldn't assume that all predefined fonts have...
Vadim Zeitlin [Sun, 17 May 2009 11:51:09 +0000 (11:51 +0000)] 
correct test failures under MSW, it shouldn't assume that all predefined fonts have non-empty facenames; also simplified it by separating different tests in different functions

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

15 years agodeal with fonts with empty face name correctly in wxNativeFontInfo::FromString()...
Vadim Zeitlin [Sun, 17 May 2009 11:48:48 +0000 (11:48 +0000)] 
deal with fonts with empty face name correctly in wxNativeFontInfo::FromString(): the last token may be empty, just check that it is present at all

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

15 years agodeal with the fonts without any specified face name in wxNativeFontInfo::To/FromUserS...
Vadim Zeitlin [Sun, 17 May 2009 11:47:08 +0000 (11:47 +0000)] 
deal with the fonts without any specified face name in wxNativeFontInfo::To/FromUserString() correctly by using the family as fallback

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

15 years agofix errors in EvtHandlerTestCase::BindFunctor() in optimized build: apparently compil...
Vadim Zeitlin [Sun, 17 May 2009 10:56:14 +0000 (10:56 +0000)] 
fix errors in EvtHandlerTestCase::BindFunctor() in optimized build: apparently compiler is smart enough to detect that the same object can be used for all temporaries

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

15 years agodo not overwrite ms_{hwnd,className} in wxTimerHiddenWindowModule::OnInit() in case...
Vadim Zeitlin [Sun, 17 May 2009 09:58:14 +0000 (09:58 +0000)] 
do not overwrite ms_{hwnd,className} in wxTimerHiddenWindowModule::OnInit() in case they were already initialized

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

15 years agofix typo from previous commit
Francesco Montorsi [Sat, 16 May 2009 13:24:33 +0000 (13:24 +0000)] 
fix typo from previous commit

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

15 years ago(dirty) fix rendering upon startup of the surface
Francesco Montorsi [Sat, 16 May 2009 10:57:25 +0000 (10:57 +0000)] 
(dirty) fix rendering upon startup of the surface

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

15 years agofix the wxCursor(const wxString& cursor_file, ...) ctor by reusing wxImage ctor;...
Francesco Montorsi [Sat, 16 May 2009 10:42:48 +0000 (10:42 +0000)] 
fix the wxCursor(const wxString& cursor_file, ...) ctor by reusing wxImage ctor; fix doxygen rendering of that ctor docs

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

15 years agofixed typo in error message
Václav Slavík [Sat, 16 May 2009 05:22:51 +0000 (05:22 +0000)] 
fixed typo in error message

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

15 years agomove virtual GetPath() implementation out of line to work around an apparent Fedora...
Vadim Zeitlin [Fri, 15 May 2009 18:02:41 +0000 (18:02 +0000)] 
move virtual GetPath() implementation out of line to work around an apparent Fedora g++ 4.x bug (see #10791)

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

15 years agosimplified code now that utf8_str() always returns a scoped buffer
Václav Slavík [Fri, 15 May 2009 13:06:23 +0000 (13:06 +0000)] 
simplified code now that utf8_str() always returns a scoped buffer

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

15 years agoAdded background colour control
Julian Smart [Fri, 15 May 2009 11:20:38 +0000 (11:20 +0000)] 
Added background colour control

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

15 years agoset icons bundle instead of single icon for wxHtmlHelpFrame
Václav Slavík [Fri, 15 May 2009 08:17:23 +0000 (08:17 +0000)] 
set icons bundle instead of single icon for wxHtmlHelpFrame

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

15 years agoapplying, closes #9012
Stefan Csomor [Fri, 15 May 2009 04:32:36 +0000 (04:32 +0000)] 
applying, closes #9012

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

15 years agoCorrected event routing/id change bug
Julian Smart [Thu, 14 May 2009 12:40:54 +0000 (12:40 +0000)] 
Corrected event routing/id change bug

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

15 years agoin wxAuiToolBar, make certain that IsChecked() returns correct value
Benjamin Williams [Thu, 14 May 2009 10:31:00 +0000 (10:31 +0000)] 
in wxAuiToolBar, make certain that IsChecked() returns correct value

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

15 years agodon't use empty attribute name in wxIconXmlHandler too (should have been part of...
Vadim Zeitlin [Wed, 13 May 2009 22:29:11 +0000 (22:29 +0000)] 
don't use empty attribute name in wxIconXmlHandler too (should have been part of r60624)

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

15 years agofix handling of wxBitmap nodes broken by previous changes; remove the special case...
Vadim Zeitlin [Wed, 13 May 2009 21:54:30 +0000 (21:54 +0000)] 
fix handling of wxBitmap nodes broken by previous changes; remove the special case of passing empty attribute name to GetBitmap/Icon(wxString) and use the overload taking wxXmlNode directly instead

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

15 years agoSmall build and run fixes made to screenshotgen util after wxMSW changes.
Bryan Petty [Wed, 13 May 2009 19:19:01 +0000 (19:19 +0000)] 
Small build and run fixes made to screenshotgen util after wxMSW changes.
Updated wxOSX (Carbon) screenshots in the manual.

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

15 years agoReplaced dir control screenshot in the manual with one that doesn't have personal...
Bryan Petty [Wed, 13 May 2009 18:40:11 +0000 (18:40 +0000)] 
Replaced dir control screenshot in the manual with one that doesn't have personal info in it.

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

15 years agoUpdated wxMSW screenshots in the manual generated with a default Windows font sizes...
Bryan Petty [Wed, 13 May 2009 18:34:10 +0000 (18:34 +0000)] 
Updated wxMSW screenshots in the manual generated with a default Windows font sizes, theme, and locale.

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