wxWidgets.git
14 years agouse better background color
Stefan Csomor [Tue, 6 Oct 2009 05:18:47 +0000 (05:18 +0000)] 
use better background color

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

14 years agonon-PCH build fix
Paul Cornett [Tue, 6 Oct 2009 03:42:55 +0000 (03:42 +0000)] 
non-PCH build fix

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

14 years agoCreate an NSAutoreleasePool in wxMacWakeUp().
Vadim Zeitlin [Tue, 6 Oct 2009 00:08:15 +0000 (00:08 +0000)] 
Create an NSAutoreleasePool in wxMacWakeUp().

An auto-release pool is needed in this function because it can be called from
another thread which has no reason to have a pre-existing pool, but it does
allocate NSEvent object which is auto-released, resulting in warnings if no
pool available.

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

14 years agoEnsure that an event loop exists in ShowViewOrWindowWithEffect().
Vadim Zeitlin [Tue, 6 Oct 2009 00:08:10 +0000 (00:08 +0000)] 
Ensure that an event loop exists in ShowViewOrWindowWithEffect().

We may not have an event loop yet if wxWindow::ShowWithEffect() is called
during the application startup, create a temporary event loop instead of
crashing in this case.

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

14 years agoRebake using pre-release version of bakefile 0.2.7.
Vadim Zeitlin [Mon, 5 Oct 2009 22:58:26 +0000 (22:58 +0000)] 
Rebake using pre-release version of bakefile 0.2.7.

They should fix the problem with monolithic build of wx (see #11231).

Notice that trivial changes to VC9 project files are not being committed so
the makefiles are currently not quite consistent but it shouldn't matter as
they will be all regenerated soon when bakefile 0.2.7 is really released.

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

14 years agoRefactor initialization code in wxTopLevelWindowMSW::Create().
Vadim Zeitlin [Mon, 5 Oct 2009 22:58:15 +0000 (22:58 +0000)] 
Refactor initialization code in wxTopLevelWindowMSW::Create().

No real changes as the old code was, in fact, correct (although Create()
didn't initialize m_parent explicitly, it was still done in AddChild() if the
parent was not NUL) but just make it more explicit and clear.

Add a new helper wxWindowBase::CreateBase() overload for top level windows,
not taking the validator parameter which doesn't apply to them.

Also make CreateBase() protected as it is only meant to be called from derived
classes Create().

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

14 years agoDon't use the current size in DoGetBestSize() by default.
Vadim Zeitlin [Mon, 5 Oct 2009 22:58:10 +0000 (22:58 +0000)] 
Don't use the current size in DoGetBestSize() by default.

Doing this means that a window which was made initially large because no other
windows were present or shown will refuse to shrink to make space for them
later even if it doesn't need to be that large. The issue was masked under MSW
and GTK because the first size event under these ports is sent so early that
the top level parent window is not realized yet and has default size of 20*20
pixels meaning that its children will cache their initial (very small) size as
their best size, but it was very visible under OS X where the initial layout
is done using the real top level window size and broke wxInfoBar showing in
the dialogs sample, for example.

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

14 years agoMake wxWindow::ShowWithEffect() synchronous under wxOSX/Cocoa.
Vadim Zeitlin [Mon, 5 Oct 2009 22:58:05 +0000 (22:58 +0000)] 
Make wxWindow::ShowWithEffect() synchronous under wxOSX/Cocoa.

As explained in the previous commit, while Cocoa support asynchronous
animation, wx API doesn't really, so block in Cocoa implementation of
ShowWithEffect() until the animation terminates for compatibility with
wxMSW and hence expectations of the existing code.

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

14 years agoImplement wxWindow::ShowWithEffect() for wxOSX/Cocoa.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:59 +0000 (22:57 +0000)] 
Implement wxWindow::ShowWithEffect() for wxOSX/Cocoa.

This version animates the window asynchronously and is being checked in just
to preserve it in svn if we later decide to return to this semantics. It will
be replaced by synchronous animation in the next commit.

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

14 years agoAdded a virtual wxWindow::OSXGetViewOrWindow() method.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:50 +0000 (22:57 +0000)] 
Added a virtual wxWindow::OSXGetViewOrWindow() method.

This can be used to retrieve either an NSView for child windows or NSWindow
for non-owned ones without resorting to dynamic casts.

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

14 years agoDetermine the appropriate show effect automatically in wxInfoBar.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:45 +0000 (22:57 +0000)] 
Determine the appropriate show effect automatically in wxInfoBar.

Slide the info bar from top or bottom of the parent window depending on its
location.

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

14 years agoRemove the hack with changing the parent background colour in wxInfoBar.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:39 +0000 (22:57 +0000)] 
Remove the hack with changing the parent background colour in wxInfoBar.

Finding the closest info bar to copy the background colour from only worked
for very simple layouts and failed for more complicated ones with nested
sizers so don't try to change the colour automatically, it's easy enough to do
it manually as shown in the updated dialogs sample.

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

14 years agoImplement DrawTitleBarBitmap() for OS X using hard coded PNG images.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:32 +0000 (22:57 +0000)] 
Implement DrawTitleBarBitmap() for OS X using hard coded PNG images.

Use a simple implementation working under all OS X versions, including 10.4
which doesn't have standard system images for the close button.

Added the images themselves under art/osx and png2c.py helper script to
convert them to a form used in C++ code.

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

14 years agoReturn smaller images for wxART_MENU/BUTTON under OS X.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:24 +0000 (22:57 +0000)] 
Return smaller images for wxART_MENU/BUTTON under OS X.

Requesting images with client id of wxART_MENU/BUTTON used to return the large
32*32 icons because GetNativeSizeHint() wasn't implemented for these client
ids.

Moreover, under Mac some icons (notably message box ones) are created from the
corresponding icon bundle and the code in wxArtProvider::GetBitmap() didn't
resize them correctly in this case, fix this.

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

14 years agoUse wxART_BUTTON instead of wxART_MENU for info bar icons.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:20 +0000 (22:57 +0000)] 
Use wxART_BUTTON instead of wxART_MENU for info bar icons.

wxART_BUTTON seems to be more appropriate, although in practice this doesn't
make any difference.

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

14 years agoMake info bar buttons smaller.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:15 +0000 (22:57 +0000)] 
Make info bar buttons smaller.

This looks better under Mac OS X (and currently has no effect under the other
platforms).

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

14 years agoUse wxRendererNative::DrawTitleBarBitmap() for info bar close button.
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:09 +0000 (22:57 +0000)] 
Use wxRendererNative::DrawTitleBarBitmap() for info bar close button.

If supported by the current platform, draw natively-looking close button using
multiple bitmaps for normal, pressed and current stats. Otherwise fall back on
the old wxArtProvider-based bitmap.

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

14 years agoAdded wxRendererNative::DrawTitleBarBitmap().
Vadim Zeitlin [Mon, 5 Oct 2009 22:57:04 +0000 (22:57 +0000)] 
Added wxRendererNative::DrawTitleBarBitmap().

This is currently only implemented for wxMSW as there is no advantage to use a
generic implementation compared to using wxArtProvider directly under the
other ports. But for MSW this allows to have perfectly natively looking
titlebar-like buttons.

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

14 years agoReplaced GraphicsHDC from src/msw/renderer.cpp with wxDC::GetTempHDC().
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:58 +0000 (22:56 +0000)] 
Replaced GraphicsHDC from src/msw/renderer.cpp with wxDC::GetTempHDC().

wxDC::GetTempHDC() method provides a convenient and safe way to retrieve HDC
from a wxDC object, whether it is using GDI or GDI+. It is implemented using
(MSW-specific) virtual functions in wxDC and so doesn't need ugly hacks like
wxDynamicCast which were used in src/msw/renderer.cpp to achieve the same
effect.

Also, we now use GetTempHDC() consistently in all wxMSW rendering methods as
the old GraphicsHDC was only used in some of them meaning that many methods
didn't work at all with wxGCDC.

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

14 years agoRefactor wxRendererXP button drawing methods.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:52 +0000 (22:56 +0000)] 
Refactor wxRendererXP button drawing methods.

Avoid code duplication in wxRendererXP as well and fix a bug in
DrawRadioBitmap() which incorrectly drew it in hot state when it was disabled
but wxCONTROL_CURRENT was specified.

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

14 years agoImplement wxRenderer::DrawRadioBitmap() for classic MSW renderer.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:48 +0000 (22:56 +0000)] 
Implement wxRenderer::DrawRadioBitmap() for classic MSW renderer.

Clean up the functions added in r57313:
- Versions using wxUxThemeEngine should be in wxRendererXP
- Provide implementation using DrawFrameControl() in wxRendererMSW too
- Refactor the code to avoid triplication in wxRendererMSW

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

14 years agoAdd demonstration of flags to the render sample.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:43 +0000 (22:56 +0000)] 
Add demonstration of flags to the render sample.

Allow to select the flags to pass to DrawXXX() functions.

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

14 years agoAdd demonstration of a few more wxRenderer methods.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:36 +0000 (22:56 +0000)] 
Add demonstration of a few more wxRenderer methods.

Also show the effect of calling several more DrawXXX() methods in the sample.

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

14 years agoCorrect custom renderer method override example in the sample.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:31 +0000 (22:56 +0000)] 
Correct custom renderer method override example in the sample.

The implementation of DrawHeaderButton() in MyRenderer should restore the
text foreground colour and brush to avoid messing up drawing done after it.

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

14 years agoDon't use possibly uninitialized pen in wxMSWDCImpl.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:27 +0000 (22:56 +0000)] 
Don't use possibly uninitialized pen in wxMSWDCImpl.

Check that m_pen is valid before checking if it is transparent in
DoDrawRoundedRectangle() too (this was already done in DoDrawRectangle() in
r53150).

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

14 years agoDon't use themed border for the generic info bar.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:22 +0000 (22:56 +0000)] 
Don't use themed border for the generic info bar.

Since the switch to deriving from wxControl instead of wxWindow, the info bar
gained a themed border which doesn't look nice for it, especially when it is
shown progressively, as happens under Windows.

Restore the old behaviour by overriding GetDefaultBorder() to return
wxBORDER_NONE for it. This doesn't look perfect neither however, we may want
to draw a separator line between it and the parent window ourselves as even
wxBORDER_SIMPLE looks too heavy for it (and there should be definitely no
border on its sides as it always touches the parent window edges).

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

14 years agoEnsure that info bar message uses the set font/colours in wxGTK.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:17 +0000 (22:56 +0000)] 
Ensure that info bar message uses the set font/colours in wxGTK.

Propagate the font and colours set on wxInfoBar window itself to its label in
the native GTK implementation.

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

14 years agoNo real changes, just inline wxSuspendStyleEvents.
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:12 +0000 (22:56 +0000)] 
No real changes, just inline wxSuspendStyleEvents.

wxSuspendStyleEvents helper class was used in one place only and the code is
more clear if its ctor and dtor are inlined directly into DoApplyWidgetStyle()
itself instead of being located far away from it.

Also, we only need to suppress the events for top level windows so don't
bother doing anything at all when changing styles for m_widget and not m_wxwindow.

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

14 years agoAdded wxInfoBar::Dismiss().
Vadim Zeitlin [Mon, 5 Oct 2009 22:56:07 +0000 (22:56 +0000)] 
Added wxInfoBar::Dismiss().

Add a method to conveniently hide the info bar and update the parent layout.

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

14 years agoUse more native appearance in the generic wxInfoBar implementation.
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:57 +0000 (22:55 +0000)] 
Use more native appearance in the generic wxInfoBar implementation.

Use default font for the text and left align it instead of centering.
Also use smaller bitmaps for the icon and the button.

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

14 years agoAdded wxART_CLOSE art id.
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:53 +0000 (22:55 +0000)] 
Added wxART_CLOSE art id.

This id corresponds to the close button bitmap. Currently only wxGTK returns a
natively-looking button from here, MSW and OS X versions will be added later.

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

14 years agoAdded wxArtProvider::GetMessageBoxIconId().
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:46 +0000 (22:55 +0000)] 
Added wxArtProvider::GetMessageBoxIconId().

This function translates between wxICON_XXX constants and wxART_YYY values. It
was extracted from the existing GetMessageBoxIcon().

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

14 years agoOnly show the default close button in wxInfoBar if there are no others.
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:40 +0000 (22:55 +0000)] 
Only show the default close button in wxInfoBar if there are no others.

Assume that user-added buttons can be already used to close the message so
don't show the default close button if any were added.

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

14 years agoGenerate the button clicks in GTK version of wxInfoBar.
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:32 +0000 (22:55 +0000)] 
Generate the button clicks in GTK version of wxInfoBar.

Also add an example of handling info bar buttons events to the sample and
mention that this must be done using Connect() or by deriving from wxInfoBar
in the documentation.

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

14 years agoUse event tables instead of Connect() in wxInfoBarGeneric.
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:22 +0000 (22:55 +0000)] 
Use event tables instead of Connect() in wxInfoBarGeneric.

This allows to handle events from the info bar buttons in the derived classes
using the event tables while if the base class used Connect(), the derived
classes static event handlers would be never executed.

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

14 years agoAdd wxInfoBar::RemoveButton() method.
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:17 +0000 (22:55 +0000)] 
Add wxInfoBar::RemoveButton() method.

Also change the GTK implementation to use a separate wxInfoBarGTKImpl to store
its data, this object won't be even allocated if a generic implementation is
used under GTK.

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

14 years agoAdded native wxInfoBar implementation for wxGTK.
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:10 +0000 (22:55 +0000)] 
Added native wxInfoBar implementation for wxGTK.

Straightforward implementation of wxInfoBar using GtkInfoBar widget available
in GTK+ 2.18.

Some side effects of this change:

- Rename wxInfoBar version in wx/generic/infobar.h to wxInfoBarGeneric and
  define wxInfoBar in wx/infobar.h.
- Also change default value of flags argument to ShowMessage() to
  wxICON_INFORMATION from wxICON_NONE as the default colour for wxICON_NONE
  messages is surprisingly ugly in GTK native version.

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

14 years agoAdd wxWindowGTK::GTKConnectWidget() helper.
Vadim Zeitlin [Mon, 5 Oct 2009 22:55:01 +0000 (22:55 +0000)] 
Add wxWindowGTK::GTKConnectWidget() helper.

This trivial wrapper function allows to omit "m_widget" and "this" arguments
when calling g_signal_connect().

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

14 years agoSmall code cleanup in wxWindowGTK::PostCreation().
Vadim Zeitlin [Mon, 5 Oct 2009 22:54:55 +0000 (22:54 +0000)] 
Small code cleanup in wxWindowGTK::PostCreation().

No real changes, just check for 2.8.0 GTK+ version once instead of doing it
twice in a row.

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

14 years agoAdded GTKShouldConnectSizeRequest() to prevent size_request handling.
Vadim Zeitlin [Mon, 5 Oct 2009 22:54:46 +0000 (22:54 +0000)] 
Added GTKShouldConnectSizeRequest() to prevent size_request handling.

Don't hard code the exception for GtkFileChooserButton in
wxWindow::PostCreation() in wxGTK, handling size_request signal also breaks
other controls (e.g. upcoming wxInfoBar native implementation). Instead,
define a virtual function which may be overridden to return false if
size_request shouldn't be connected.

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

14 years agoNo real changes, just removed unnecessary SetInitialSize() call.
Vadim Zeitlin [Mon, 5 Oct 2009 22:54:41 +0000 (22:54 +0000)] 
No real changes, just removed unnecessary SetInitialSize() call.

wxControl::PostCreation() already calls SetInitialSize() so there is no need
to call it explicitly in wxHyperlinkCtrl::Create().

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

14 years agoExtract conversion from wx to GtkMessageType in a separate file.
Vadim Zeitlin [Mon, 5 Oct 2009 22:54:36 +0000 (22:54 +0000)] 
Extract conversion from wx to GtkMessageType in a separate file.

Add wxGTKImpl::ConvertMessageTypeFromWX() function to convert from wxICON_XXX
styles to GTK_MESSAGE_XXX values.

This will be reused by wxInfoBar in the next commits.

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

14 years agoAdded wxInfoBar::AddButton().
Vadim Zeitlin [Mon, 5 Oct 2009 22:54:31 +0000 (22:54 +0000)] 
Added wxInfoBar::AddButton().

Allow adding custom buttons to wxInfoBar and show this in the sample.

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

14 years agoMade wxInfoBar::SetFont() change the text message font.
Vadim Zeitlin [Mon, 5 Oct 2009 22:54:24 +0000 (22:54 +0000)] 
Made wxInfoBar::SetFont() change the text message font.

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

14 years agoInitial wxInfoBar implementation.
Vadim Zeitlin [Mon, 5 Oct 2009 22:54:13 +0000 (22:54 +0000)] 
Initial wxInfoBar implementation.

Add generic implementation, documentation and examples showing the use of the
new class in the samples.

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

14 years agoAdded wxSHOW_EFFECT_NONE.
Vadim Zeitlin [Mon, 5 Oct 2009 22:53:57 +0000 (22:53 +0000)] 
Added wxSHOW_EFFECT_NONE.

Calling Show/HideWithEffect() with this effect is the same as calling just the normal Show/Hide().

This is convenient as it allows to use the same API, whether with effects or without them.

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

14 years agoAdded wxICON_NONE to wxICON_MASK.
Vadim Zeitlin [Mon, 5 Oct 2009 22:53:48 +0000 (22:53 +0000)] 
Added wxICON_NONE to wxICON_MASK.

Absence of icon is also an icon flag.

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

14 years agoStore canvas attributes in the canvas itself in the dialogs sample.
Vadim Zeitlin [Mon, 5 Oct 2009 22:53:44 +0000 (22:53 +0000)] 
Store canvas attributes in the canvas itself in the dialogs sample.

Simplify the code by not transferring font and colours between canvas and
wxTheApp but use canvas font and colours directly instead.

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

14 years agoMinor cleanup and copyright updates in the dialogs sample.
Vadim Zeitlin [Mon, 5 Oct 2009 22:53:37 +0000 (22:53 +0000)] 
Minor cleanup and copyright updates in the dialogs sample.

No real changes otherwise.

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

14 years agoUse member variable instead of a global in the dialogs sample.
Vadim Zeitlin [Mon, 5 Oct 2009 22:53:32 +0000 (22:53 +0000)] 
Use member variable instead of a global in the dialogs sample.

Made MyCanvas member of MyFrame instead of using a global variable which was
put inside the frame by wxApp.

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

14 years agoPartially implement wxTextCtrl::GetStyle() in wxGTK.
Vadim Zeitlin [Mon, 5 Oct 2009 22:53:26 +0000 (22:53 +0000)] 
Partially implement wxTextCtrl::GetStyle() in wxGTK.

Support retrieving the (both foreground and background) colours for the given
position.

Closes #11281.

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

14 years agoFix the line endings to be CRLF after the property change.
Kevin Ollivier [Mon, 5 Oct 2009 16:11:02 +0000 (16:11 +0000)] 
Fix the line endings to be CRLF after the property change.

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

14 years agoSetting eol-style property to CRLF for some project files.
Kevin Ollivier [Mon, 5 Oct 2009 15:12:40 +0000 (15:12 +0000)] 
Setting eol-style property to CRLF for some project files.

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

14 years agoconfigure stc support for OpenVMS
Jouk Jansen [Mon, 5 Oct 2009 14:50:45 +0000 (14:50 +0000)] 
configure stc support for OpenVMS

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

14 years agoset up for OpenVMS richtext & regex and add more samples in compile cascade
Jouk Jansen [Mon, 5 Oct 2009 09:13:42 +0000 (09:13 +0000)] 
set up for OpenVMS richtext & regex and add more samples in compile cascade

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

14 years agofixed wxXmlDocument::Save() to interpret the indentstep argument correctly
Václav Slavík [Sun, 4 Oct 2009 21:19:40 +0000 (21:19 +0000)] 
fixed wxXmlDocument::Save() to interpret the indentstep argument correctly

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

14 years agoChanged the ultimate fall-back popup window classes: wxMSW now uses wxFrame, wxMAC...
Jaakko Salli [Sun, 4 Oct 2009 19:05:28 +0000 (19:05 +0000)] 
Changed the ultimate fall-back popup window classes: wxMSW now uses wxFrame, wxMAC uses wxNonOwnedWindow

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

14 years agoadd missing break
Paul Cornett [Sun, 4 Oct 2009 00:21:29 +0000 (00:21 +0000)] 
add missing break

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

14 years agoexclude SWIG generated files from being checked
Robin Dunn [Sun, 4 Oct 2009 00:00:12 +0000 (00:00 +0000)] 
exclude SWIG generated files from being checked

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

14 years agocommenting never used code
Stefan Csomor [Sat, 3 Oct 2009 19:58:15 +0000 (19:58 +0000)] 
commenting never used code

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

14 years agoRemove unused global bitmap, which caused crash on startup with wxUSE_XPM==0.
Paul Cornett [Sat, 3 Oct 2009 16:39:24 +0000 (16:39 +0000)] 
Remove unused global bitmap, which caused crash on startup with wxUSE_XPM==0.
Use new pen style enums

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

14 years agorevert, checked in the wrong file
Paul Cornett [Sat, 3 Oct 2009 16:37:54 +0000 (16:37 +0000)] 
revert, checked in the wrong file

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

14 years agoQuickTime is needed by wxBitmap
Paul Cornett [Sat, 3 Oct 2009 16:32:21 +0000 (16:32 +0000)] 
QuickTime is needed by wxBitmap

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

14 years agoRemove unused global bitmap, which caused crash on startup with wxUSE_XPM==0.
Paul Cornett [Sat, 3 Oct 2009 16:23:18 +0000 (16:23 +0000)] 
Remove unused global bitmap, which caused crash on startup with wxUSE_XPM==0.
Use new pen style enums

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

14 years agoAdded wxDECLARE_ANY_TYPE(CLS, DECL) and documented for what kind of situation it...
Jaakko Salli [Sat, 3 Oct 2009 10:43:21 +0000 (10:43 +0000)] 
Added wxDECLARE_ANY_TYPE(CLS, DECL) and documented for what kind of situation it is intended: wxAny used across DLL and EXE boundaries.

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

14 years agoAdded change log entries for major new wxPropertyGrid features in wx2.9.1
Jaakko Salli [Sat, 3 Oct 2009 08:27:58 +0000 (08:27 +0000)] 
Added change log entries for major new wxPropertyGrid features in wx2.9.1

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

14 years agofixing typo
Stefan Csomor [Fri, 2 Oct 2009 19:56:35 +0000 (19:56 +0000)] 
fixing typo

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

14 years agoadding construction from native bitmaps
Stefan Csomor [Fri, 2 Oct 2009 19:45:03 +0000 (19:45 +0000)] 
adding construction from native bitmaps

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

14 years agoadding NSImage to CGImageRef conversion
Stefan Csomor [Fri, 2 Oct 2009 17:51:16 +0000 (17:51 +0000)] 
adding NSImage to CGImageRef conversion

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

14 years agoAdded note about dangers of adding and deleting items in wxEVT_COMMAND_COMBOBOX_CLOSE...
Jaakko Salli [Fri, 2 Oct 2009 14:15:35 +0000 (14:15 +0000)] 
Added note about dangers of adding and deleting items in wxEVT_COMMAND_COMBOBOX_CLOSEUP (works only on wxMSW)

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

14 years agoFix compilation for wxUniversal
Jouk Jansen [Fri, 2 Oct 2009 09:31:49 +0000 (09:31 +0000)] 
Fix compilation for wxUniversal

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

14 years agoFixed bug: wxEditEnumProperty's initial string value could not be outside the list...
Jaakko Salli [Thu, 1 Oct 2009 16:06:58 +0000 (16:06 +0000)] 
Fixed bug: wxEditEnumProperty's initial string value could not be outside the list of choices.

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

14 years agofixing setting initial value under osx_cocoa for single line text controls
Stefan Csomor [Thu, 1 Oct 2009 08:59:01 +0000 (08:59 +0000)] 
fixing setting initial value under osx_cocoa for single line text controls

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

14 years agoDon't exit on errors in the pre-commit svn hook.
Vadim Zeitlin [Thu, 1 Oct 2009 00:33:54 +0000 (00:33 +0000)] 
Don't exit on errors in the pre-commit svn hook.

Errors in grep, when it fails to find any changed or updated files, also count
so the "set -e" line was causing the hook to reject any commits only deleting
files (without any error message).

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

14 years agoRemove old and unused file.
Vadim Zeitlin [Thu, 1 Oct 2009 00:32:03 +0000 (00:32 +0000)] 
Remove old and unused file.

We don't use WISE since many years, so remove the source of an utility which
was supposed to help with using it.

Closes #11270.

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

14 years agooverriding to allocate an outer autorelease pool
Stefan Csomor [Wed, 30 Sep 2009 18:25:33 +0000 (18:25 +0000)] 
overriding to allocate an outer autorelease pool

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

14 years agofixing text matrix (dataview custom renderer showed problems) and reordering SaveGState
Stefan Csomor [Wed, 30 Sep 2009 17:50:49 +0000 (17:50 +0000)] 
fixing text matrix (dataview custom renderer showed problems) and reordering SaveGState

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

14 years agoFix harmless unused parameters warnings.
Vadim Zeitlin [Wed, 30 Sep 2009 16:38:28 +0000 (16:38 +0000)] 
Fix harmless unused parameters warnings.

Also assert in the not implemented wxSound methods instead of silently
returning false.

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

14 years agouse proper signature for callback function
Paul Cornett [Wed, 30 Sep 2009 15:39:21 +0000 (15:39 +0000)] 
use proper signature for callback function

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

14 years agobuild fix for wxUSE_CONSOLE_EVENTLOOP==0
Paul Cornett [Wed, 30 Sep 2009 15:38:53 +0000 (15:38 +0000)] 
build fix for wxUSE_CONSOLE_EVENTLOOP==0

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

14 years agobuild fix for wxUSE_SOCKETS==0
Paul Cornett [Wed, 30 Sep 2009 15:38:23 +0000 (15:38 +0000)] 
build fix for wxUSE_SOCKETS==0

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

14 years agosupport backgroundcolor on osx_cocoa
Stefan Csomor [Wed, 30 Sep 2009 15:20:30 +0000 (15:20 +0000)] 
support backgroundcolor on osx_cocoa

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

14 years agoApplied #11260 (found a regression while checking in src/motif/menu.cpp with static...
Julian Smart [Wed, 30 Sep 2009 06:53:35 +0000 (06:53 +0000)] 
Applied #11260 (found a regression while checking in src/motif/menu.cpp with static code analysis tool cppcheck)
Marin Ettl

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

14 years agoCorrect checks for conversion success in wxUniChar.
Vadim Zeitlin [Wed, 30 Sep 2009 00:15:11 +0000 (00:15 +0000)] 
Correct checks for conversion success in wxUniChar.

Correct the checks in wxUniChar::From/ToHi8bit() to check for conversion
success correctly as it always failed otherwise: wxMBConv::To/FromWChar()
conversion functions should return 2, not 1, when conversion of 2 characters
succeeded, even if one of them is a NUL.

Closes #11243.

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

14 years agofix message box icons sizes in wxWindowsArtProvider: they should respect client ID...
Václav Slavík [Tue, 29 Sep 2009 17:04:08 +0000 (17:04 +0000)] 
fix message box icons sizes in wxWindowsArtProvider: they should respect client ID and not be 32x32 all the time

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

14 years agoRemoved dst buffer delete responsibility from wxAnyValueType::CopyBuffer(), clarified...
Jaakko Salli [Tue, 29 Sep 2009 13:38:20 +0000 (13:38 +0000)] 
Removed dst buffer delete responsibility from wxAnyValueType::CopyBuffer(), clarified documentation regarding it.

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

14 years ago#11259: Correction for bad help button on OSX
Julian Smart [Tue, 29 Sep 2009 07:19:38 +0000 (07:19 +0000)] 
#11259: Correction for bad help button on OSX

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

14 years agoAdded help button
Julian Smart [Tue, 29 Sep 2009 07:15:14 +0000 (07:15 +0000)] 
Added help button

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

14 years agoContext menu now created in constructor; old context menu deleted when new one set.
Julian Smart [Tue, 29 Sep 2009 06:45:36 +0000 (06:45 +0000)] 
Context menu now created in constructor; old context menu deleted when new one set.

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

14 years agoForward port of r62191 to SVN trunk fixing regression from r37982 (missing ')')....
Bryan Petty [Mon, 28 Sep 2009 23:44:34 +0000 (23:44 +0000)] 
Forward port of r62191 to SVN trunk fixing regression from r37982 (missing ')'). Fixes #11257.

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

14 years agoMoved WinPrinter from private.h to printdlg.cpp.
Julian Smart [Mon, 28 Sep 2009 16:15:34 +0000 (16:15 +0000)] 
Moved WinPrinter from private.h to printdlg.cpp.

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

14 years agolinking fix for wxUSE_VALIDATORS==0
Paul Cornett [Mon, 28 Sep 2009 15:36:06 +0000 (15:36 +0000)] 
linking fix for wxUSE_VALIDATORS==0

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

14 years agobuild fix for wxUSE_SOCKETS==0
Paul Cornett [Mon, 28 Sep 2009 15:35:48 +0000 (15:35 +0000)] 
build fix for wxUSE_SOCKETS==0

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

14 years agoApplied #9076 (scrolling bars grow box fix)
Julian Smart [Mon, 28 Sep 2009 07:06:14 +0000 (07:06 +0000)] 
Applied #9076 (scrolling bars grow box fix)
By lillo

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

14 years agoDo not use wxS in array of const wxChar*
Jaakko Salli [Mon, 28 Sep 2009 06:40:26 +0000 (06:40 +0000)] 
Do not use wxS in array of const wxChar*

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

14 years agowxUSE_THREAD -> wxUSE_THREADS
Jaakko Salli [Mon, 28 Sep 2009 06:25:44 +0000 (06:25 +0000)] 
wxUSE_THREAD -> wxUSE_THREADS

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

14 years agoAttempt at compile fix
Julian Smart [Mon, 28 Sep 2009 06:07:43 +0000 (06:07 +0000)] 
Attempt at compile fix

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

14 years agoUse long double instead of double in wxAnyValueBuffer, moved alignment-specific value...
Jaakko Salli [Sun, 27 Sep 2009 16:30:26 +0000 (16:30 +0000)] 
Use long double instead of double in wxAnyValueBuffer, moved alignment-specific values into sub-union

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

14 years agoAdded function and member function pointers in wxAnyValueBuffer to make memory alignm...
Jaakko Salli [Sun, 27 Sep 2009 15:28:06 +0000 (15:28 +0000)] 
Added function and member function pointers in wxAnyValueBuffer to make memory alignment problems even less likely.

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

14 years agoMake sure there are no memory alignment issues with wxAnyValueBuffer
Jaakko Salli [Sun, 27 Sep 2009 14:52:34 +0000 (14:52 +0000)] 
Make sure there are no memory alignment issues with wxAnyValueBuffer

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