wxWidgets.git
12 years agoAdded wxRichToolTip class.
Vadim Zeitlin [Tue, 18 Oct 2011 21:57:02 +0000 (21:57 +0000)] 
Added wxRichToolTip class.

It can be used to show more customizable tooltips than the native wxToolTip
but at the price of using generic implementation in some cases (actually
almost always now, with the exceptions of text control tooltips under MSW).

Extra features include:
 - The balloon-like tooltip form.
 - Possibility to show an icon.
 - Title display in a different form.

More customization could be added later. It should be also possible to fully
implement this class natively under MSW.

Update the dialogs sample to show the rich tooltips in action.

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

12 years agoAdded wxNonOwnedWindow::SetShape(wxGraphicsPath).
Vadim Zeitlin [Tue, 18 Oct 2011 21:56:52 +0000 (21:56 +0000)] 
Added wxNonOwnedWindow::SetShape(wxGraphicsPath).

TODO: Document.

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

12 years agoDocument and test behaviour of wxRegion methods when it is invalid.
Vadim Zeitlin [Tue, 18 Oct 2011 21:56:48 +0000 (21:56 +0000)] 
Document and test behaviour of wxRegion methods when it is invalid.

Document which wxRegion methods can and can't be used when the region itself
is invalid.

Apply the minor changes to wxGTK (Xor() didn't do the right thing, Offset()
didn't assert) and wxOSX (Offset() crashed) to make their behaviour consistent
with wxMSW.

Add a (trivial, so far, but to be extended later) wxRegion unit test checking
that the methods do indeed behave as documented.

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

12 years agoFix SetShape() in wxOSX/Cocoa.
Vadim Zeitlin [Tue, 18 Oct 2011 21:56:42 +0000 (21:56 +0000)] 
Fix SetShape() in wxOSX/Cocoa.

Explicitly erase the part of the window outside of its shape with a
transparent colour to ensure that it is indeed transparent and not just has
the default solid background.

Closes #13340.

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

12 years agoDon't create a valid wxRegion when using default ctor in wxOSX.
Vadim Zeitlin [Tue, 18 Oct 2011 21:56:40 +0000 (21:56 +0000)] 
Don't create a valid wxRegion when using default ctor in wxOSX.

Default constructing a wxRegion created an object that unexpectedly passed
IsOk() test in wxOSX. This was completely unexpected so don't do this and
leave default constructed wxRegion invalid, as in the other ports.

Update DoCombine() to be able to deal with the case of an invalid source
region in a way consistent with the other ports.

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

12 years agoDon't interpret '&' specially in wxTextWrapper.
Vadim Zeitlin [Tue, 18 Oct 2011 21:56:36 +0000 (21:56 +0000)] 
Don't interpret '&' specially in wxTextWrapper.

wxTextWrapper is used for the multiline text for which it doesn't make sense
to use mnemonics so don't interpret '&' specially in the text used with it.

Doing this also allows to remove the hack used in wxDialog::CreateTextSizer()
to deal with it that was used so far.

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

12 years agoUse wxWindow::GetClientAreaOrigin() instead of MSW functions.
Vadim Zeitlin [Tue, 18 Oct 2011 21:56:34 +0000 (21:56 +0000)] 
Use wxWindow::GetClientAreaOrigin() instead of MSW functions.

::AdjustWindowRectEx() doesn't seem to work correctly for wxPopupWindow and
still offsets the coordinates by the title bar height even if these windows
don't have WS_CAPTION style. Rather than try to work around this, simply use
wxWindow method instead of the Windows function as shape wxRegion offset.

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

12 years agoNo changes, just fix a typo in a header comment.
Vadim Zeitlin [Tue, 18 Oct 2011 21:56:32 +0000 (21:56 +0000)] 
No changes, just fix a typo in a header comment.

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

12 years agoNo changes, just fix typo in a comment following an #endif.
Vadim Zeitlin [Tue, 18 Oct 2011 21:56:29 +0000 (21:56 +0000)] 
No changes, just fix typo in a comment following an #endif.

The closing comment used wrong symbol.

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

12 years agoCorrect the direction passed to wxDataObject in wxGTK clipboard code.
Vadim Zeitlin [Tue, 18 Oct 2011 21:54:53 +0000 (21:54 +0000)] 
Correct the direction passed to wxDataObject in wxGTK clipboard code.

We should quert for IsSupportedFormat(format, Set) before calling SetData()
with this format, not for IsSupportedFormat(Get) which is the default and was
used by the code.

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

12 years agoExplicitly use _stati64() with MinGW-W64.
Vadim Zeitlin [Mon, 17 Oct 2011 22:26:13 +0000 (22:26 +0000)] 
Explicitly use _stati64() with MinGW-W64.

Although this compiler provides underscore-less versions of all POSIX
functions, this one only exists in a version with underscore, so use it to fix
compilation with it in ANSI build.

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

12 years agoFix more missing and broken stuff in the interface, for Phoenix
Robin Dunn [Mon, 17 Oct 2011 18:53:28 +0000 (18:53 +0000)] 
Fix more missing and broken stuff in the interface, for Phoenix

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

12 years agosupporting deployment < 10.6 when compiling against 10.7
Stefan Csomor [Sun, 16 Oct 2011 20:57:09 +0000 (20:57 +0000)] 
supporting deployment < 10.6 when compiling against 10.7

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

12 years agoremoving QD dependency
Stefan Csomor [Sun, 16 Oct 2011 19:08:55 +0000 (19:08 +0000)] 
removing QD dependency

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

12 years agoAlign multiline labels correctly in wxMSW owner-drawn buttons.
Vadim Zeitlin [Sun, 16 Oct 2011 17:57:49 +0000 (17:57 +0000)] 
Align multiline labels correctly in wxMSW owner-drawn buttons.

The label wasn't centered correctly in multi-line case.

Closes #13567.

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

12 years agoExport a couple of Carbon functions to allow wxWebView to build correctly. This was...
Steve Lamerton [Sun, 16 Oct 2011 15:59:31 +0000 (15:59 +0000)] 
Export a couple of Carbon functions to allow wxWebView to build correctly. This was already done in the wxWebView branch but got missed in the merge to trunk.

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

12 years agoSet wxDataViewCtrl::m_focusWidget in wxGTK.
Václav Slavík [Sat, 15 Oct 2011 14:19:22 +0000 (14:19 +0000)] 
Set wxDataViewCtrl::m_focusWidget in wxGTK.

The GtkTreeView control that should get the focus in in scrolled window;
the same is already done for wxListBox.

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

12 years agoDon't call wxEvent::SetTimestamp() twice in InitMouseEvent<>().
Václav Slavík [Sat, 15 Oct 2011 14:19:19 +0000 (14:19 +0000)] 
Don't call wxEvent::SetTimestamp() twice in InitMouseEvent<>().

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

12 years agoDon't use wxMSW version of wxNonOwnedWindow at all under WinCE.
Vadim Zeitlin [Sat, 15 Oct 2011 00:20:56 +0000 (00:20 +0000)] 
Don't use wxMSW version of wxNonOwnedWindow at all under WinCE.

This class becomes completely trivial under WinCE as its functionality
(setting the window shape) can't be implemented under this platform, so just
don't compile it at all there.

This both (slightly) reduces the amount of #if checks and should make the code
(slightly) smaller.

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

12 years agoAdd data members for RGBValue and HSVValue
Robin Dunn [Fri, 14 Oct 2011 01:38:07 +0000 (01:38 +0000)] 
Add data members for RGBValue and HSVValue

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

12 years agofix parent class and constant
Robin Dunn [Fri, 14 Oct 2011 01:37:19 +0000 (01:37 +0000)] 
fix parent class and constant

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

12 years agoDon't assert in wxDateTime::Format("%p") in locales not using AM/PM.
Vadim Zeitlin [Thu, 13 Oct 2011 14:54:29 +0000 (14:54 +0000)] 
Don't assert in wxDateTime::Format("%p") in locales not using AM/PM.

If a locale doesn't use AM/PM strings, strftime() can return an empty string
which does not indicate an error, so don't assert that strftime() failed in
this case.

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

12 years agoThe usual fix for PCH-less compilation after the last commit.
Vadim Zeitlin [Thu, 13 Oct 2011 13:19:42 +0000 (13:19 +0000)] 
The usual fix for PCH-less compilation after the last commit.

Fix wxNonOwnedWindow compilation in wxGTK without PCH.

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

12 years agoImplement SetShape() for wxPopupWindow in wxGTK.
Vadim Zeitlin [Thu, 13 Oct 2011 12:45:56 +0000 (12:45 +0000)] 
Implement SetShape() for wxPopupWindow in wxGTK.

Move SetShape() implementation from wxTopLevelWindow to wxNonOwnedWindow so
that wxPopupWindow, which also inherits from the latter, could use it as well.

This makes it possible to have popup windows with irregular shapes in wxGTK as
well as in wxMSW and wxOSX.

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

12 years agoAvoid an assert when m_dir is empty
Robin Dunn [Thu, 13 Oct 2011 06:40:59 +0000 (06:40 +0000)] 
Avoid an assert when m_dir is empty

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

12 years agoInterface tweaks for Phoenix
Robin Dunn [Thu, 13 Oct 2011 06:40:10 +0000 (06:40 +0000)] 
Interface tweaks for Phoenix

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

12 years agoAnd another compilation fix.
Vadim Zeitlin [Wed, 12 Oct 2011 18:08:46 +0000 (18:08 +0000)] 
And another compilation fix.

This time it really does compile.

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

12 years agoCompilation fix after a bad merge.
Vadim Zeitlin [Wed, 12 Oct 2011 18:08:13 +0000 (18:08 +0000)] 
Compilation fix after a bad merge.

Fix bad merge artefact in the previous commit.

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

12 years agoAdded wxWindow::GTKHandleRealized() virtual method to wxGTK.
Vadim Zeitlin [Wed, 12 Oct 2011 16:22:14 +0000 (16:22 +0000)] 
Added wxWindow::GTKHandleRealized() virtual method to wxGTK.

This allows to easily do something in the derived classes when the widget is
realized, without having to deal with GTK+ signals. In particular, get rid of
another "realize" signal handler in wxTopLevelWindow and simply override this
virtual method there.

It also incidentally makes the callback code simpler as the window doesn't
need to be constantly dereferenced.

This shouldn't result in any changes to behaviour.

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

12 years agoMove wxUSE_GUI definition from chkconf.h to the top of platform.h.
Vadim Zeitlin [Wed, 12 Oct 2011 11:20:15 +0000 (11:20 +0000)] 
Move wxUSE_GUI definition from chkconf.h to the top of platform.h.

This avoids warnings about wxUSE_GUI not being defined in Mac tests in
wx/platform.h which are now (since r69387) done before wx/chkconf.h inclusion.

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

12 years agoapplying slightly modified patch, fixes #13434
Stefan Csomor [Wed, 12 Oct 2011 10:10:32 +0000 (10:10 +0000)] 
applying slightly modified patch, fixes #13434

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

12 years agomoving defines in front of the setup.h to make webkit definitions in setup.h work...
Stefan Csomor [Wed, 12 Oct 2011 08:57:40 +0000 (08:57 +0000)] 
moving defines in front of the setup.h to make webkit definitions in setup.h work for Xcode builds as well

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

12 years agoMake it possible to close "shaped" sample from the menu.
Vadim Zeitlin [Wed, 12 Oct 2011 00:35:04 +0000 (00:35 +0000)] 
Make it possible to close "shaped" sample from the menu.

The sample didn't define any handler for wxID_EXIT menu item, do add it.

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

12 years agoAdded missing WXDLLIMPEXP_CORE to wxNonOwnedWindowBase declaration.
Vadim Zeitlin [Tue, 11 Oct 2011 17:56:57 +0000 (17:56 +0000)] 
Added missing WXDLLIMPEXP_CORE to wxNonOwnedWindowBase declaration.

This fixes (harmless) MSVC warning C4275 about inheriting DLL-exported class
from a non-DLL-exported base class.

Closes #13554.

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

12 years agoUpdate status bar labels properly after width change in wxMSW.
Vadim Zeitlin [Tue, 11 Oct 2011 17:14:09 +0000 (17:14 +0000)] 
Update status bar labels properly after width change in wxMSW.

The labels were not updated (i.e. ellipsized or, on the contrary, displayed in
full) correctly after a status bar field was changed; there was even a FIXME
comment about this in the code.

Fix this by calling DoUpdateStatusText() when the field width is changed and
also update the field width after resetting the existing tooltips.

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

12 years agoDon't delete wxTaskBarIcon in wxMSW wxNotificationMessage if we don't own it.
Vadim Zeitlin [Tue, 11 Oct 2011 17:08:02 +0000 (17:08 +0000)] 
Don't delete wxTaskBarIcon in wxMSW wxNotificationMessage if we don't own it.

wxNotificationMessage can be associated with an existing wxTaskBarIcon under
wxMSW instead of creating its own one internally and in this case the icon
must not be deleted when the notification is hidden but it was always
destroyed unconditionally by wxNotificationIconEvtHandler created by
wxAutoNotifMsgImpl.

Fix this by only creating this helper event handler if we do own the icon.

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

12 years agoMove SetBackgroundBitmap() from wxPanel to new wxCustomBackgroundWindow.
Vadim Zeitlin [Tue, 11 Oct 2011 17:07:43 +0000 (17:07 +0000)] 
Move SetBackgroundBitmap() from wxPanel to new wxCustomBackgroundWindow.

wxCustomBackgroundWindow is a new class allowing to set a custom bitmap for
the background of any window. The relevant code was mostly moved from wxPanel
to which it was added only recently (before 2.9.2) making it unnecessary to
preserve compatibility.

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

12 years agowxGraphicsRenderer::CreateContextFromImage is not static
Robin Dunn [Tue, 11 Oct 2011 06:30:30 +0000 (06:30 +0000)] 
wxGraphicsRenderer::CreateContextFromImage is not static

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

12 years agoRemove the ctor and Init methods that are not available on all ports
Robin Dunn [Tue, 11 Oct 2011 05:33:31 +0000 (05:33 +0000)] 
Remove the ctor and Init methods that are not available on all ports

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

12 years agoFix warnings about wxOSX_USE_CARBON being undefined when using g++.
Vadim Zeitlin [Mon, 10 Oct 2011 17:12:42 +0000 (17:12 +0000)] 
Fix warnings about wxOSX_USE_CARBON being undefined when using g++.

Test for __WXMAC__ before testing wxOSX_USE_CARBON to avoid -Wundef warnings
from g++ in non-Mac builds.

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

12 years agoFix PCH-less build after adding wxNonOwnerWindow in wxMSW.
Vadim Zeitlin [Mon, 10 Oct 2011 17:08:44 +0000 (17:08 +0000)] 
Fix PCH-less build after adding wxNonOwnerWindow in wxMSW.

Include the required headers when not using PCH to fix compilation.

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

12 years agoMove wxTopLevelWindow::SetShape() down to wxNonOwnedWindow.
Vadim Zeitlin [Mon, 10 Oct 2011 10:53:23 +0000 (10:53 +0000)] 
Move wxTopLevelWindow::SetShape() down to wxNonOwnedWindow.

Also add wxNonOwnedWindow for wxMSW (which previously simply typedef'd it to
wxWindow) and document this class now that it provides some user-visible
functionality.

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

12 years agoNo changes, just get rid of unnecessary variables in wxCairoBitmapData.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:35 +0000 (22:07 +0000)] 
No changes, just get rid of unnecessary variables in wxCairoBitmapData.

Don't use bw and bh when we have perfectly appropriate m_width and m_height.

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

12 years agoDon't declare wxCairoFontData::m_underlined unnecessarily.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:32 +0000 (22:07 +0000)] 
Don't declare wxCairoFontData::m_underlined unnecessarily.

This member was only used in wxGTK-specific code but it was declared for all
platforms which was unnecessary and confusing.

Move its declaration in wxGTK-only section of the class.

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

12 years agoAllow creating wxGraphicsFont without using wxFont.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:29 +0000 (22:07 +0000)] 
Allow creating wxGraphicsFont without using wxFont.

This is mostly important to allow using wxImage-based wxGraphicsContext
without requiring X server connection under Unix: as wxFont can't be used
without X server, we needed another way to create wxGraphicsFont in this case.

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

12 years agoRemove font scaling from wxMSW wxGraphicsContext.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:25 +0000 (22:07 +0000)] 
Remove font scaling from wxMSW wxGraphicsContext.

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

12 years agoAllow creating wxGraphicsBitmap and wxGraphicsContext from wxImage.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:22 +0000 (22:07 +0000)] 
Allow creating wxGraphicsBitmap and wxGraphicsContext from wxImage.

Provide a way to use wxGraphicsContext to draw on wxImage.

This is implemented internally by drawing on wxGraphicsBitmap which can be now
also created from wxImage.

Add a test of the new functionality to the image sample.

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

12 years agoRefactor wxGDIPlusFontData ctor to allow using it without wxGDIPlusContext.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:18 +0000 (22:07 +0000)] 
Refactor wxGDIPlusFontData ctor to allow using it without wxGDIPlusContext.

wxGDIPlusFontData only needs wxGDIPlusContext to get the font unit to use, so
pass the font unit directly to the ctor to allow also using it when there is
no context at hand.

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

12 years agoSimplify and rationalize wxGDIPlusContext class constructors.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:16 +0000 (22:07 +0000)] 
Simplify and rationalize wxGDIPlusContext class constructors.

Remove the now unnecessary default ctor from wxGDIPlusContext and
wxGDIPlusMeasuringContext and add a ctor taking just wxGraphicsRenderer that
can be useful to the derived classes instead.

Merge Init() and SetDefaults() and initialize everything at once in the new
Init() now.

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

12 years agoDon't make private wxGraphicsContext-derived classes dynamically creatable.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:13 +0000 (22:07 +0000)] 
Don't make private wxGraphicsContext-derived classes dynamically creatable.

This doesn't make any sense because classes such as wxGDIPlusContext,
wxGDIPlusMeasuringContext and wxMacCoreGraphicsContext are private and don't
need to be creatable by name (only renderers potentially need to be) and was
inconsistent with Unix/Cairo backend in which these classes were not dynamic.

So remove wxRTTI macros from them in wxMSW/wxOSX as well as this allows us to
get rid of unnecessary default ctors.

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

12 years agoFixed non-existent wxCairoContext default ctor.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:10 +0000 (22:07 +0000)] 
Fixed non-existent wxCairoContext default ctor.

wxCairoContext class declared default ctor which wasn't implemented and even
couldn't be implemented because its base class didn't have any default ctor
neither.

Fix this by providing a ctor taking wxGraphicsRenderer* and implement it.

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

12 years agoAdded wxGraphicsBitmap::ConvertToImage().
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:07 +0000 (22:07 +0000)] 
Added wxGraphicsBitmap::ConvertToImage().

Allow to convert wxGraphicsBitmap directly to wxImage, without passing by
wxBitmap.

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

12 years agoNo changes, just refactor wxCairoBitmapData ctor.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:04 +0000 (22:07 +0000)] 
No changes, just refactor wxCairoBitmapData ctor.

Extract the code for buffer and surface creation into separate helper
functions so that they could be reused by other constructors (to be added in
the next commits).

Also use cairo_format_stride_for_width(), if available, to compute the stride
for the surfaces we create instead of hard coding 4*width.

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

12 years agoDocument wxGraphicsBitmap and methods involving it.
Vadim Zeitlin [Sun, 9 Oct 2011 22:07:01 +0000 (22:07 +0000)] 
Document wxGraphicsBitmap and methods involving it.

Document wxGraphics{Context,Renderer}::CreateBitmap() and CreateSubBitmap()
and wxGraphicsContext::DrawBitmap() as well as the (trivial) class itself.

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

12 years agoImplement EVT_MOUSE_CAPTURE_LOST handling for wxPopupTransientWindow.
Vadim Zeitlin [Sun, 9 Oct 2011 22:02:05 +0000 (22:02 +0000)] 
Implement EVT_MOUSE_CAPTURE_LOST handling for wxPopupTransientWindow.

Handle mouse capture lost events instead of polling for the mouse status in
EVT_IDLE handler. This is not only more efficient but also catches the cases
when the capture was lost before OnIdle() could be executed which could result
in assertion failures and, before the previous commit, even crashes.

The idle-time code is still used for wxOSX/Carbon because it doesn't seem to
generate mouse capture loss events currently -- but should be removed as soon
as support for these events is added.

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

12 years agoImplement delayed destruction for wxPopupTransientWindow.
Vadim Zeitlin [Sun, 9 Oct 2011 22:02:02 +0000 (22:02 +0000)] 
Implement delayed destruction for wxPopupTransientWindow.

Windows of this class can be destroyed at any moment, even while some events
are still being processed, so delay the real destruction until we can be sure
that it's safe to delete the window.

This fixes problems (crashes due to dangling pointers) when the object is
deleted from the overridden OnDismiss(), for example.

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

12 years agoFix inheriting parent background colour in wxPanel in wxMSW.
Vadim Zeitlin [Sun, 9 Oct 2011 22:01:57 +0000 (22:01 +0000)] 
Fix inheriting parent background colour in wxPanel in wxMSW.

wxPanel didn't inherit the background colour set for its parent any more in
wxMSW because its HasTransparentBackground() didn't return true unless the
panel was a child of wxNotebook. This was wrong because not only themed
notebook background should be inherited but also any solid background
explicitly set for a panel parent.

Fix this by returning true from MSWHasInheritableBackground(), which is used
by wxPanel::HasTransparentBackground() under MSW, if the window has an
explicitly set and inheritable background colour.

Closes #13487.

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

12 years agoReturn true from wxDataViewMainWindow::ItemDeleted().
Václav Slavík [Sun, 9 Oct 2011 13:07:10 +0000 (13:07 +0000)] 
Return true from wxDataViewMainWindow::ItemDeleted().

Presumably, 'false' indicates failure, but there's no failure here: if
an item is not visible, because its parent wasn't expanded yet, it's
perfectly OK that we don't need to do anything.

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

12 years agoReuse existing MinGW defines for all compilers that are missing them.
Steve Lamerton [Sun, 9 Oct 2011 10:45:16 +0000 (10:45 +0000)] 
Reuse existing MinGW defines for all compilers that are missing them.

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

12 years agoInterface updates for Phoenix. Add wxNativeFontInfo.
Robin Dunn [Sun, 9 Oct 2011 01:28:20 +0000 (01:28 +0000)] 
Interface updates for Phoenix.  Add wxNativeFontInfo.

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

12 years agoWork around the fact that wxWebViewIE doesn't send page changing and page changed...
Steve Lamerton [Fri, 7 Oct 2011 21:25:59 +0000 (21:25 +0000)] 
Work around the fact that wxWebViewIE doesn't send page changing and page changed events during a refresh, yet IsBusy returns true.

Closes #13518

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

12 years agoHandle inline editing in generic wxDataViewCtrl as Windows 7 does.
Václav Slavík [Fri, 7 Oct 2011 17:24:06 +0000 (17:24 +0000)] 
Handle inline editing in generic wxDataViewCtrl as Windows 7 does.

Mimic the behavior of Windows 7's Explorer: edit the item that has focus
if it is selected or the first selected item if focus is out of
selection.

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

12 years agoAdd columns focus and keyboard navigation to generic wxDataViewCtrl.
Václav Slavík [Fri, 7 Oct 2011 15:03:02 +0000 (15:03 +0000)] 
Add columns focus and keyboard navigation to generic wxDataViewCtrl.

The UI tries to mimic Windows 7's Explorer's approach as much as
possible, taking inspiration in the GTK+ implementation when
appropriate. In particular, as long as the user doesn't use horizontal
navigation keys, everything looks as before and the user isn't bothered
with the existence of per-cell focus.

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

12 years agoAllow selected symbol to be scrolled into view initially
Julian Smart [Fri, 7 Oct 2011 03:51:23 +0000 (03:51 +0000)] 
Allow selected symbol to be scrolled into view initially

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

12 years agoFix various GCC warnings in wxWebView.
Steve Lamerton [Thu, 6 Oct 2011 17:55:43 +0000 (17:55 +0000)] 
Fix various GCC warnings in wxWebView.

Closes #13532

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

12 years agoEnsure we pass the correct type of string to EscapeFileNameCharsInURL in wxWebViewArc...
Steve Lamerton [Thu, 6 Oct 2011 10:01:17 +0000 (10:01 +0000)] 
Ensure we pass the correct type of string to EscapeFileNameCharsInURL in wxWebViewArchiveHandler.

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

12 years agoDelete the filesystem used by wxWebViewArchiveHandler when we are done with it. Fixes...
Steve Lamerton [Wed, 5 Oct 2011 21:21:51 +0000 (21:21 +0000)] 
Delete the filesystem used by wxWebViewArchiveHandler when we are done with it. Fixes a memory leak.

Closes #13500

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

12 years agoStore a pointer to each ClassFactory so we can correctly release it when the browser...
Steve Lamerton [Wed, 5 Oct 2011 17:23:51 +0000 (17:23 +0000)] 
Store a pointer to each ClassFactory so we can correctly release it when the browser closes. This fixes a few more memory leaks.

See #13500

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

12 years agoDelete the timer on close in the wxWebView sample. Fixes another memory leak.
Steve Lamerton [Wed, 5 Oct 2011 08:05:42 +0000 (08:05 +0000)] 
Delete the timer on close in the wxWebView sample. Fixes another memory leak.

See #13500

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

12 years agoAdd Get|SetPrintMode
Robin Dunn [Tue, 4 Oct 2011 21:37:06 +0000 (21:37 +0000)] 
Add Get|SetPrintMode

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

12 years agoFix wxTimePickerCtrl compilation without PCH too.
Vadim Zeitlin [Tue, 4 Oct 2011 17:03:28 +0000 (17:03 +0000)] 
Fix wxTimePickerCtrl compilation without PCH too.

Include commctrl.h explicitly when not using PCH (this completes fixes of
r69293).

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

12 years agoInterface fixes for Phoenix
Robin Dunn [Tue, 4 Oct 2011 07:45:08 +0000 (07:45 +0000)] 
Interface fixes for Phoenix

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

12 years agoFix wxDateTimePickerCtrl compilation without PCH.
Vadim Zeitlin [Sun, 2 Oct 2011 17:39:21 +0000 (17:39 +0000)] 
Fix wxDateTimePickerCtrl compilation without PCH.

Include the MSW private headers usually included from the PCH file.

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

12 years agoAdd new definitions required by MinGW for webview. Re-enable custom schemes as a...
Steve Lamerton [Sun, 2 Oct 2011 16:20:15 +0000 (16:20 +0000)] 
Add new definitions required by MinGW for webview. Re-enable custom schemes as a result.

See #13509

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

12 years agoFix current field highlighting in generic wxTimePickerCtrl under wxGTK.
Vadim Zeitlin [Sun, 2 Oct 2011 13:15:19 +0000 (13:15 +0000)] 
Fix current field highlighting in generic wxTimePickerCtrl under wxGTK.

In wxGTK, calling HighlightCurrentField() from EVT_SET_FOCUS handler was not
enough as the highlighting was overwritten by the default behaviour of
selecting the entire text control contents on focus gain.

Fix this by calling SetFocus() from HighlightCurrentField() before updating
the selection. This ensures that the correct field is always highlighted.

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

12 years agoAdded GTK+ screenshot of wxTimePickerCtrl.
Vadim Zeitlin [Sun, 2 Oct 2011 12:58:52 +0000 (12:58 +0000)] 
Added GTK+ screenshot of wxTimePickerCtrl.

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

12 years agoUse wxSP_WRAP for generic wxTimePicker spin button.
Vadim Zeitlin [Sun, 2 Oct 2011 12:58:48 +0000 (12:58 +0000)] 
Use wxSP_WRAP for generic wxTimePicker spin button.

This ensures that the spin button arrows are always enabled, as they should
be, even under wxGTK where wxSpinButton disables its arrows on its own if its
value reaches the end of its range and wxSP_WRAP is not used.

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

12 years agoRemove copied class definitions from missing.h. Disable custom scheme handling under...
Steve Lamerton [Sun, 2 Oct 2011 12:21:22 +0000 (12:21 +0000)] 
Remove copied class definitions from missing.h. Disable custom scheme handling under MinGW as it lacks the correct definitions.

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

12 years agoPut wxWebView library addition on top of changes list.
Vadim Zeitlin [Sun, 2 Oct 2011 11:32:20 +0000 (11:32 +0000)] 
Put wxWebView library addition on top of changes list.

This list is supposed to be roughly in importance order.

Also add a period at the end of wxAuiNotebook entry, let's try to be
consistent about using them.

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

12 years agoFix setting tooltips for wxSearchCtrl and other composite controls.
Vadim Zeitlin [Sun, 2 Oct 2011 11:28:54 +0000 (11:28 +0000)] 
Fix setting tooltips for wxSearchCtrl and other composite controls.

Propagate SetToolTip() call on wxCompositeWindow to all subwindows to ensure
that the tooltip is shown for all parts of the window.

Notice that this is still not ideal as the tooltip temporarily disappears when
mouse moves from one subwindow to another, instead of staying in place as it
does with "monolithic" windows and ideally we should find a way to avoid it
(should be possible at least under MSW with TTM_RELAYEVENT) but for now this
is already much better than nothing.

Closes #13523.

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

12 years agoAdd wxWindowBase::CopyToolTip() method.
Vadim Zeitlin [Sun, 2 Oct 2011 11:28:45 +0000 (11:28 +0000)] 
Add wxWindowBase::CopyToolTip() method.

This method simply sets the same tooltip for the window but making copy of,
instead of taking ownership of, the wxToolTip passed in.

It's not especially useful on its own but is needed by wxCompositeWindow and
might be handy elsewhere.

See #13523.

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

12 years agoRestore correct wxSearchCtrl size in wxMSW after wxTextCtrl changes.
Vadim Zeitlin [Sun, 2 Oct 2011 11:28:40 +0000 (11:28 +0000)] 
Restore correct wxSearchCtrl size in wxMSW after wxTextCtrl changes.

The code in generic wxSearchCtrl implementation was broken by the changes of
r69066 which deccreased the best height of border-less text controls.

Ideally we should probably change wxSearchCtrl::LayoutControls() to not be
sensitive at all to the exact value returned from wxTextCtrl::GetBestSize()
and just always centre everything vertically but this doesn't look simple to
do with the current code so just override wxSearchTextCtrl::DoGetBestSize() to
return the same size as wxTextCtrl used to return before to fix this for now.

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

12 years agoFix harmless warnings in hot key code in wxOSX.
Vadim Zeitlin [Sun, 2 Oct 2011 11:28:36 +0000 (11:28 +0000)] 
Fix harmless warnings in hot key code in wxOSX.

Don't compare signed and unsigned variables if possible (insert a cast in one
place where it wasn't).

Put WXUNUSED() around the unused parameters.

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

12 years agoFix harmless gcc initialization order warning.
Vadim Zeitlin [Sun, 2 Oct 2011 11:28:32 +0000 (11:28 +0000)] 
Fix harmless gcc initialization order warning.

Put the initializes in wxDataViewTreeNode constructor initialization list in
order of their declaration.

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

12 years agozh_TW translation update from cw.ahbong.
Vadim Zeitlin [Sun, 2 Oct 2011 11:27:20 +0000 (11:27 +0000)] 
zh_TW translation update from cw.ahbong.

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

12 years agoDerive wxAuiNotebook from wxBookCtrlBase. Document wxAuiNotebookEvent which now deriv...
Steve Lamerton [Sun, 2 Oct 2011 10:29:00 +0000 (10:29 +0000)] 
Derive wxAuiNotebook from wxBookCtrlBase. Document wxAuiNotebookEvent which now derives from wxBookCtrlEvent. Update the notebook sample to add wxAuiNotebook as an option.

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

12 years agoAdd event descriptions to wxAuiNotebook.
Steve Lamerton [Sat, 1 Oct 2011 19:40:20 +0000 (19:40 +0000)] 
Add event descriptions to wxAuiNotebook.

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

12 years agoCorrectly initialise ref count in custom scheme class factory.
Steve Lamerton [Sat, 1 Oct 2011 19:22:28 +0000 (19:22 +0000)] 
Correctly initialise ref count in custom scheme class factory.

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

12 years agoUse wxAlphaPixelData if the source bitmap depth is 32 or if on wxGTK and there is...
Robin Dunn [Fri, 30 Sep 2011 23:40:02 +0000 (23:40 +0000)] 
Use wxAlphaPixelData if the source bitmap depth is 32 or if on wxGTK and there is a mask.  Add a separate pass on MSW if there is a mask to adjust the cairo surface's alpha to match the mask.

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

12 years agoFix the comparison direction in wxTextAttr::BitlistsEqPartial().
Vadim Zeitlin [Fri, 30 Sep 2011 15:26:39 +0000 (15:26 +0000)] 
Fix the comparison direction in wxTextAttr::BitlistsEqPartial().

The comparison was apparently reversed.

Closes #13521.

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

12 years agoFix assert in initial call to wxPostScriptDC::SetPen().
Vadim Zeitlin [Fri, 30 Sep 2011 15:26:36 +0000 (15:26 +0000)] 
Fix assert in initial call to wxPostScriptDC::SetPen().

Attempt to use wxPen::GetStyle() on the initially invalid pen resulted in an
assert, so don't do it and test for pen validity explicitly.

Closes #13524.

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

12 years agoCreate setup.h when building wxscintilla library.
Vadim Zeitlin [Fri, 30 Sep 2011 15:26:31 +0000 (15:26 +0000)] 
Create setup.h when building wxscintilla library.

This library includes some wx headers and so setup.h must be available when
it's being compiled but there was no rule to copy it in its projects, so add
it now.

Closes #13526.

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

12 years agoupdates for OpenVMS
Jouk Jansen [Fri, 30 Sep 2011 14:00:52 +0000 (14:00 +0000)] 
updates for OpenVMS

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

12 years agoUpdate OpenVMS compile support
Jouk Jansen [Fri, 30 Sep 2011 06:05:00 +0000 (06:05 +0000)] 
Update OpenVMS compile support

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

12 years agoUpdate setup fort OpenVMS
Jouk Jansen [Thu, 29 Sep 2011 14:19:09 +0000 (14:19 +0000)] 
Update setup fort OpenVMS

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

12 years agoFixes for OpenVMS on IA64
Jouk Jansen [Thu, 29 Sep 2011 13:47:38 +0000 (13:47 +0000)] 
Fixes for OpenVMS on IA64

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

12 years agoAdded XRC handler for wxTimePickerCtrl.
Vadim Zeitlin [Thu, 29 Sep 2011 13:43:23 +0000 (13:43 +0000)] 
Added XRC handler for wxTimePickerCtrl.

Add a trivial handler modeled after the existing wxDateCtrlXmlHandler.

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

12 years agoAdd wxTimePickerCtrl class.
Vadim Zeitlin [Thu, 29 Sep 2011 13:43:15 +0000 (13:43 +0000)] 
Add wxTimePickerCtrl class.

Implement wxTimePickerCtrl natively for MSW and add a generic implementation
(very loosely based on the original class by Paul Breen) for the other
platforms.

Also update the calendar sample to show the new control.

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

12 years agoCorrect wxDatePickerCtrl::GetValue() documentation and other minor fixes.
Vadim Zeitlin [Thu, 29 Sep 2011 13:43:05 +0000 (13:43 +0000)] 
Correct wxDatePickerCtrl::GetValue() documentation and other minor fixes.

The documentation for this method seems to have been copy-and-pasted from
somewhere else and didn't make any sense.

Also don't say that this control doesn't have any control-specific styles when
it does.

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

12 years agoRefactor wxDatePickerCtrl to derive from wxDateTimePickerCtrl.
Vadim Zeitlin [Thu, 29 Sep 2011 13:43:02 +0000 (13:43 +0000)] 
Refactor wxDatePickerCtrl to derive from wxDateTimePickerCtrl.

No real changes, just refactor wxMSW wxDatePickerCtrl to allow sharing code
with the upcoming wxTimePickerCtrl class. Even less changes for the other
platforms where wxDateTimePickerCtrl is trivial.

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