Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2011-10-18 23:56 VZ, revision 69460

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.

2011-10-18 23:56 VZ, revision 69459

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.

2011-10-18 23:56 VZ, revision 69458

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.

2011-10-18 23:56 VZ, revision 69457

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.

2011-10-18 23:56 VZ, revision 69456

No changes, just fix a typo in a header comment.

2011-10-18 23:56 VZ, revision 69455

No changes, just fix typo in a comment following an #endif. The closing comment used wrong symbol.

2011-10-18 23:54 VZ, revision 69454

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.

2011-10-18 00:26 VZ, revision 69447

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.

2011-10-17 20:53 RD, revision 69446

Fix more missing and broken stuff in the interface, for Phoenix

2011-10-16 22:57 SC, revision 69445

supporting deployment < 10.6 when compiling against 10.7

2011-10-16 21:08 SC, revision 69444

removing QD dependency

2011-10-16 19:57 VZ, revision 69442

Align multiline labels correctly in wxMSW owner-drawn buttons. The label wasn't centered correctly in multi-line case. Closes #13567.

2011-10-16 17:59 SJL, revision 69440

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.

2011-10-15 16:19 VS, revision 69436

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.

2011-10-15 16:19 VS, revision 69435

Don't call wxEvent::SetTimestamp() twice in InitMouseEvent<>().

2011-10-15 02:20 VZ, revision 69434

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.

2011-10-14 03:38 RD, revision 69417

Add data members for RGBValue and HSVValue

2011-10-14 03:37 RD, revision 69416

fix parent class and constant

2011-10-13 16:54 VZ, revision 69411

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.

2011-10-13 15:19 VZ, revision 69409

The usual fix for PCH-less compilation after the last commit. Fix wxNonOwnedWindow compilation in wxGTK without PCH.

2011-10-13 14:45 VZ, revision 69408

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.

2011-10-13 08:40 RD, revision 69406

Avoid an assert when m_dir is empty

2011-10-13 08:40 RD, revision 69405

Interface tweaks for Phoenix

2011-10-12 20:08 VZ, revision 69392

And another compilation fix. This time it really does compile.

2011-10-12 20:08 VZ, revision 69391

Compilation fix after a bad merge. Fix bad merge artefact in the previous commit.

2011-10-12 18:22 VZ, revision 69390

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.

2011-10-12 13:20 VZ, revision 69389

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.

2011-10-12 12:10 SC, revision 69388

applying slightly modified patch, fixes #13434

2011-10-12 10:57 SC, revision 69387

moving defines in front of the setup.h to make webkit definitions in setup.h work for Xcode builds as well

2011-10-12 02:35 VZ, revision 69386

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.

2011-10-11 19:56 VZ, revision 69381

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.

2011-10-11 19:14 VZ, revision 69380

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.

2011-10-11 19:08 VZ, revision 69379

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.

2011-10-11 19:07 VZ, revision 69378

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.

2011-10-11 08:30 RD, revision 69377

wxGraphicsRenderer::CreateContextFromImage is not static

2011-10-11 07:33 RD, revision 69375

Remove the ctor and Init methods that are not available on all ports

2011-10-10 19:12 VZ, revision 69367

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.

2011-10-10 19:08 VZ, revision 69365

Fix PCH-less build after adding wxNonOwnerWindow in wxMSW. Include the required headers when not using PCH to fix compilation.

2011-10-10 12:53 VZ, revision 69364

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.

2011-10-10 00:07 VZ, revision 69362

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.

2011-10-10 00:07 VZ, revision 69361

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.

2011-10-10 00:07 VZ, revision 69360

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.

2011-10-10 00:07 VZ, revision 69359

Remove font scaling from wxMSW wxGraphicsContext.

2011-10-10 00:07 VZ, revision 69358

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.

2011-10-10 00:07 VZ, revision 69357

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.

2011-10-10 00:07 VZ, revision 69356

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.

2011-10-10 00:07 VZ, revision 69355

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.

2011-10-10 00:07 VZ, revision 69354

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.

2011-10-10 00:07 VZ, revision 69353

Added wxGraphicsBitmap::ConvertToImage(). Allow to convert wxGraphicsBitmap directly to wxImage, without passing by wxBitmap.

2011-10-10 00:07 VZ, revision 69352

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.

2011-10-10 00:07 VZ, revision 69351

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

2011-10-10 00:02 VZ, revision 69350

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.

2011-10-10 00:02 VZ, revision 69349

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.

2011-10-10 00:01 VZ, revision 69348

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.

2011-10-09 15:07 VS, revision 69344

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.

2011-10-09 12:45 SJL, revision 69343

Reuse existing MinGW defines for all compilers that are missing them.

2011-10-09 03:28 RD, revision 69326

Interface updates for Phoenix. Add wxNativeFontInfo.

2011-10-07 23:25 SJL, revision 69324

Work around the fact that wxWebViewIE doesn't send page changing and page changed events during a refresh, yet IsBusy returns true. Closes #13518

2011-10-07 19:24 VS, revision 69323

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.

2011-10-07 17:03 VS, revision 69322

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.

2011-10-07 05:51 JS, revision 69321

Allow selected symbol to be scrolled into view initially

2011-10-07 05:51 JS, revision 69320

Allow selected symbol to be scrolled into view initially

2011-10-06 19:55 SJL, revision 69318

Fix various GCC warnings in wxWebView. Closes #13532

2011-10-06 12:01 SJL, revision 69317

Ensure we pass the correct type of string to EscapeFileNameCharsInURL in wxWebViewArchiveHandler.

2011-10-05 23:21 SJL, revision 69316

Delete the filesystem used by wxWebViewArchiveHandler when we are done with it. Fixes a memory leak. Closes #13500

2011-10-05 19:23 SJL, revision 69314

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

2011-10-05 10:05 SJL, revision 69313

Delete the timer on close in the wxWebView sample. Fixes another memory leak. See #13500

2011-10-04 23:37 RD, revision 69309

Add Get|SetPrintMode

2011-10-04 19:03 VZ, revision 69308

Fix wxTimePickerCtrl compilation without PCH too. Include commctrl.h explicitly when not using PCH (this completes fixes of r69293).

2011-10-04 09:45 RD, revision 69300

Interface fixes for Phoenix

2011-10-02 19:39 VZ, revision 69293

Fix wxDateTimePickerCtrl compilation without PCH. Include the MSW private headers usually included from the PCH file.

2011-10-02 18:20 SJL, revision 69292

Add new definitions required by MinGW for webview. Re-enable custom schemes as a result. See #13509

2011-10-02 15:15 VZ, revision 69291

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.

2011-10-02 14:58 VZ, revision 69290

Added GTK+ screenshot of wxTimePickerCtrl.

2011-10-02 14:58 VZ, revision 69289

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.

2011-10-02 14:21 SJL, revision 69288

Remove copied class definitions from missing.h. Disable custom scheme handling under MinGW as it lacks the correct definitions.

2011-10-02 13:32 VZ, revision 69287

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.

2011-10-02 13:28 VZ, revision 69286

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.

2011-10-02 13:28 VZ, revision 69285

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.

2011-10-02 13:28 VZ, revision 69284

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.

2011-10-02 13:28 VZ, revision 69283

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.

2011-10-02 13:28 VZ, revision 69282

Fix harmless gcc initialization order warning. Put the initializes in wxDataViewTreeNode constructor initialization list in order of their declaration.

2011-10-02 13:27 VZ, revision 69281

zh_TW translation update from cw.ahbong.

2011-10-02 12:29 SJL, revision 69280

Derive wxAuiNotebook from wxBookCtrlBase. Document wxAuiNotebookEvent which now derives from wxBookCtrlEvent. Update the notebook sample to add wxAuiNotebook as an option.

2011-10-01 21:40 SJL, revision 69267

Add event descriptions to wxAuiNotebook.

2011-10-01 21:22 SJL, revision 69266

Correctly initialise ref count in custom scheme class factory.

2011-10-01 01:40 RD, revision 69253

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.

2011-09-30 17:26 VZ, revision 69244

Fix the comparison direction in wxTextAttr::BitlistsEqPartial(). The comparison was apparently reversed. Closes #13521.

2011-09-30 17:26 VZ, revision 69243

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.

2011-09-30 17:26 VZ, revision 69242

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.

2011-09-30 16:00 JJ, revision 69241

updates for OpenVMS

2011-09-30 08:05 JJ, revision 69240

Update OpenVMS compile support

2011-09-29 16:19 JJ, revision 69229

Update setup fort OpenVMS

2011-09-29 15:47 JJ, revision 69226

Fixes for OpenVMS on IA64

2011-09-29 15:43 VZ, revision 69225

Added XRC handler for wxTimePickerCtrl. Add a trivial handler modeled after the existing wxDateCtrlXmlHandler.

2011-09-29 15:43 VZ, revision 69224

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.

2011-09-29 15:43 VZ, revision 69223

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.

2011-09-29 15:43 VZ, revision 69222

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.

2011-09-29 14:29 VZ, revision 69220

VC6 compilation fixes for wxTreeListCtrl. For some reason comparing wxTreeListItem with its associated Type doesn't work when using VC6 ("error C2593: 'operator ==' is ambiguous") so help the compiler to do it. Also remove the unnecessary (and unsupported by VC6) return from void function.

2011-09-29 14:05 JS, revision 69219

Fixed caret sizing problem around large objects by clipping the caret to the margins

2011-09-29 14:05 JS, revision 69218

Fixed caret sizing problem around large objects by clipping the caret to the margins

2011-09-29 09:28 RD, revision 69217

Don't always use the Cairo context for wxGCDC(wxMemoryDC). If a Cairo context is wanted then the wxGCDC(wxGraphicsContext*) ctor should be used instead. (I thought I had removed this code with my last commit of this file...)

2011-09-28 21:44 SJL, revision 69214

Delete the menu on close in the wxWebView sample. Fixes most of the memory leaks. See #13500

2011-09-28 16:54 SJL, revision 69209

Fix compilation of wxWebView under mingw by adding missing definitions and dynamically loading urlmon. Fixes #13509

2011-09-28 11:46 JJ, revision 69208

correcting typo in previous commit

2011-09-28 08:02 JJ, revision 69207

Include support for OpenVMS IA64

2011-09-27 09:21 SC, revision 69205

giving in on native undo integration, as we don't have a NSUndoManager, fixes #13431

2011-09-27 09:14 JJ, revision 69204

Correcting typo in commit 69203

2011-09-27 07:56 JJ, revision 69203

Update openVMS compile support

2011-09-27 05:34 RD, revision 69202

More interface updates for Phoenix

2011-09-26 17:03 PC, revision 69201

backport r51506, "fix wxALIGN_RIGHT in RTL mode", closes #13469

2011-09-26 16:28 JJ, revision 69200

Disable webview on OpenVMS

2011-09-25 17:48 VS, revision 69199

Don't use `install -d` to create directories. Always use `mkdir -p`, as install is problematic with regard to permissions. Fixes #13452.

2011-09-25 14:14 SC, revision 69198

adding missing autorelease pool, since this can be called from anywhere, fixes #13449

2011-09-25 06:30 RD, revision 69196

Fix missing or broken interface items for Phoenix

2011-09-24 00:33 VZ, revision 69186

Add support for handling new multi-arch under Debian. The libraries are now in /usr/lib/arch-linux-gnu and not /usr/lib{32,64} so check for them there too.

2011-09-23 14:15 VZ, revision 69185

Fix inconsistent DLL export declaration for wxBannerWindowNameStr too. This variable is defined in "adv" library, not "core". This is similar to the fix of r69184.

2011-09-22 14:53 VZ, revision 69184

Fix inconsistent DLL export declaration for wxTreeListCtrlNameStr. This variable is defined in "adv" library, not "core". See #13502.

2011-09-22 12:36 VZ, revision 69183

Improve appearance of wxTreeListCtrl during live resizing. When using the generic wxDataViewCtrl version, forcefully refresh it after changing its size to avoid artefacts during resizing of wxTreeListCtrl. Closes #13502.

2011-09-22 12:35 VZ, revision 69182

Always give all the remaining space to the first wxTreeListCtrl column. Under GTK the columns of wxDataViewCtrl (and hence wxTreeListCtrl) are always resized to cover the entire control width. For consistency, also do it under the other platforms and give the remaining space to the first column and not to the last one as GTK does by default, as the first column is more important. Do this even if this results in reducing the size of the column: presumably, if the entire control itself can be resized, the user wouldn't bother resizing the columns and, on the contrary, if the user did resize the columns, the entire control size is unlikely to change, so in practice we don't risk overriding the user preferences and reducing as well as increasing the first column width works much better by default as it doesn't leave the other columns invisible after making the control wider and than reverting it back to its initial, more narrow, state again.

2011-09-21 17:08 VZ, revision 69180

Fix scrolling in small wxVListBox with tall items. Scrolling in a small wxVListBox with tall items (i.e. taller than the height of wxVListBox itself) behaved wrongly: wrong item was being scrolled into view and Page Up/Down didn't scroll as much as they should. Fix both of these problems by checking for these corner cases explicitly. Closes #13454.

2011-09-21 17:08 VZ, revision 69179

Replace erroneous comma with a semicolon in keyboard sample. Fix typo in the sample, comma was used instead of a semicolon. The code still worked correctly but make it look correctly too now. Closes #13453.

2011-09-21 17:08 VZ, revision 69178

Change wxSound ctor from in-memory data to use size_t/void *. This constructor previously used int and, especially annoyingly, wxByte* for the data. Use standard void* for untyped binary data instead. Also document this ctor as it seems to be implemented in all ports. Closes #13451.

2011-09-21 17:07 VZ, revision 69177

Send EVT_DATAVIEW_ITEM_CONTEXT_MENU events even when not clicking on an item. Always send this event, even if the user right clicked outside of the client area. This is useful for showing item-independent commands in the context menu.

2011-09-21 17:07 VZ, revision 69176

Implement sorting in wxTreeListCtrl. Allow the user to sort the control contents by clicking on the columns with wxCOL_SORTABLE flag and also provide SetSortColumn() method to sort the control programmatically. Also add wxTreeListItemComparator class and SetItemComparator() method to allow customizing the way the items are compared. Update the sample to show how to define a custom comparator.

2011-09-21 17:07 VZ, revision 69175

Reset previous sort column in generic wxDataViewColumn::SetSortOrder(). The sort indicator on the column previously used for sorting was only reset when the user clicked on the column header (by wxDataViewHeaderWindow code that explicitly called wxDataViewCtrl::SetSortingColumnIndex()) but not when wxDataViewCtrl::SetSortOrder() was called directly. Fix this and take care of updating everything in SetSortOrder() itself. This makes the code simpler and also means that calling SetSortOrder() from the program now works as expected (it resulted in having sort indicators in two columns at once before).

2011-09-21 17:07 VZ, revision 69174

Remove wxHeaderColumn::SetAsSortKey() and only use SetSortOrder(). The two member functions, SetAsSortKey() and SetSortOrder(), were doing almost the same thing but differently and the former was only used in the generic wxDataViewCtrl implementation and not implemented in the native GTK/OS X one. Remove SetAsSortKey() entirely and only keep UnsetAsSortKey() which is still needed by generic/MSW wxDataViewCtrl. But only SetSortOrder() should now be called to indicate that the column is used for sorting.

2011-09-21 17:07 VZ, revision 69173

Add wxTreeListCtrl::GetView() and GetDataView(). It can be useful to have access to the window used to actually show the items by wxTreeListCtrl, provide two accessors for m_view: a wxDataViewCtrl-specific one and a generic one returning just a wxWindow that can be used to keep the code isolated from wxDataViewCtrl.

2011-09-21 17:07 VZ, revision 69172

Don't limit window size to (0, 0) in wxSizer if getting display size failed. It's possible that wxDisplay::GetClientArea() returns (0, 0) size indicating that it failed. Don't set the maximal window size to (0, 0) in this case as this prevents the user from seeing the window at all and just don't do anything instead.

2011-09-21 17:07 VZ, revision 69171

Refresh wxDisplay when a monitor is added to or removed from the system. If a monitor was attached or detached while a wx program was running, the monitor handles stored in wxDisplayFactoryMSW became invalid and all display operations (e.g. getting display size) failed from this moment onwards requiring a program restart to work again. Fix this by updating the monitor handles when we get WM_SETTINGCHANGE as it is sent when a monitor is added or removed (while it's also sent in quite a few other cases re-enumerating the monitors shouldn't take very long so just do it always).

2011-09-21 17:07 VZ, revision 69170

No changes, just extract wxCreateHiddenWindow() declaration in a header. Add wx/msw/private/hiddenwin.h with wxCreateHiddenWindow() declaration instead of declaring it manually in all the files using it.

2011-09-20 22:03 JS, revision 69168

Remove pointless case insensitivity

2011-09-20 22:03 JS, revision 69167

Remove pointless case insensitivity

2011-09-20 20:37 VZ, revision 69166

Add GetExpanderColumnOrFirstOne() to avoid code duplication in generic wxDVC. There were two strictly identical code snippets setting the expander column to be the first one if it hadn't been set before, replace both of them with a call to GetExpanderColumnOrFirstOne() function. Also use this function instead of just GetExpanderColumn() (which might return NULL) in a couple of places. Notice that there are still a lot of places in the code where the column 0 is hard coded as being the expander column, this would need to be fixed to really support non-first expander column.

2011-09-20 20:37 VZ, revision 69165

Reset the expander column when clearing columns in generic wxDVC. The expander column becomes invalid when all columns are cleared, don't keep a dangling pointer.

2011-09-20 19:25 MW, revision 69162

Move ravnsgaards build to brandt32 while its down.

2011-09-18 22:28 VZ, revision 69149

Minor fixes to code examples in wxPropertyGrid documentation. Fix typo in wxPGProperty name and add missing parameter of GetVIterator() call. Closes #13486.

2011-09-18 22:26 VZ, revision 69148

Fix test for wxUSE_TREELISTCTRL in configure. wxUSE_TREECTRL was wrongly used instead. Closes #13470.

2011-09-18 06:38 RD, revision 69135

FIx broken or missing interface items for Phoenix

2011-09-17 13:06 VZ, revision 69113

Fix format specifiers used for "unsigned long" in wxPG code. "unsigned long" quantities must be formatted using "%l[xou]" and not just "%[xou]" as the latter doesn't work correctly on 64 bit platforms. Closes #13447.

2011-09-17 13:06 VZ, revision 69112

Change wxDIALOG_NO_PARENT to avoid clash with wxICON_EXCLAMATION. Use 0x20 (wxAPPLY) instead of 0x100 (wxICON_EXCLAMATION) for wxDIALOG_NO_PARENT as otherwise using wxICON_EXCLAMATION with wxMessageBox in wxGTK (and possibly other ports, although not wxMSW which doesn't honour wxDIALOG_NO_PARENT for message boxes at all) resulted in not using the specified parent for the message box and, as a side effect, not centering it on its parent neither. Closes #13464.

2011-09-17 13:06 VZ, revision 69111

Add wxUSE_TREELISTCTRL checks to treelist.cpp itself. The contents of this file was still compiled even when wxUSE_TREELISTCTRL was turned off. Fix this by adding the missing "#if wxUSE_TREELISTCTRL" check around it. Closes #13470.

2011-09-17 13:06 VZ, revision 69110

Fix the library of wxGenericDirCtrl in the documentation. Closes #13482.

2011-09-17 00:44 VZ, revision 69108

Only define wxUSE_WEBVIEW if wxWebView is really available. Don't define wxUSE_WEBVIEW in configure if WebKit is not available under Unix (we should also check for wxUSE_WEBVIEW_IE under Windows later) and add the check that either wxUSE_WEBVIEW_WEBKIT or wxUSE_WEBVIEW_IE is defined if wxUSE_WEBVIEW is to wx/chkconf.h. This makes it possible to just check for wxUSE_WEBVIEW instead of checking for wxUSE_WEBVIEW && (wxUSE_WEBVIEW_IE || wxUSE_WEBVIEW_WEBKIT) as the code did previously which was ugly and error-prone. Also, define wxUSE_WEBVIEW_IE in configure under MSW. Currently this supposes that the required IE headers/libraries are available which is probably wrong, we should add checks for them later.

2011-09-17 00:44 VZ, revision 69107

Check for wxUSE_WEBVIEW being defined. All wxUSE_XXX options must be always defined as we test for them with #if and not #ifdef, so check for this one too for consistency.

2011-09-17 00:44 VZ, revision 69106

Fix wxFont::GetFaceName() for not realized yet fonts in wxMSW. GetFaceName() could be called for a font that hadn't been really used yet and hence its wxFontRefData::m_hFont could be 0 and couldn't be used in GetMSWFaceName(). Fix this by using GetHFONT() accessor instead of m_hFont directly to create the font if necessary.

2011-09-16 19:03 RD, revision 69102

fixes for missing or broken interface items for Phoenix

2011-09-16 15:23 VZ, revision 69101

Fix int field of wxCommandEvents generated by menu items in wxMSW. Set the int field of wxCommandEvent generated by clicking on the menu items correctly for not checkable items: it is supposed to be -1 and not 0 (which is the value for checkable but currently unchecked items). This was already the case for wxGTK and wxOSX and implied by the comments in the code. Make wxMSW behave like this too and clearly document this behaviour.

2011-09-16 15:23 VZ, revision 69100

Fix int field of wxCommandEvent generated by popup menu items in wxMSW. The intention of the code generating the event for popup menu items was to pass false (0) or true (1) in the int field of wxCommandEvent to indicate whether the item was checked or not but, because wxMenu::SendEvent() takes int as second argument and not book, we passed either 0 or MF_CHECKED (== 8). Fix this by correctly passing a boolean for checkable items. See #11644.

2011-09-16 15:23 VZ, revision 69099

Fix checked state for the popup menu items in the events generated by them. We incorrectly passed the sign-extended int id to ::GetMenuState() function that expects an unsigned WORD id, so it never found the item if the WORD id had the high bit set. Fix this by correctly passing the unsigned id to it. Closes #11644.

2011-09-15 21:05 SC, revision 69096

reverting change, for precompiled headers, unfortunately this means that WXROOT must not contain spaces unless properly escaped

2011-09-15 16:25 JJ, revision 69089

Repair compile sequenze for wxGTK on OpenVMS

2011-09-15 00:33 LV, revision 69088

Added iOS src files to Xcode project

2011-09-14 18:45 SJL, revision 69085

Use integral value for OLECMDID_OPTICAL_ZOOM as we cannot tell if an enum value is already defined or not. Fixes #13475

2011-09-14 16:03 SJL, revision 69084

Update configure to only define wxUSE_WEBVIEW_WEBKIT if all the required components are available. Fixes #13474

2011-09-14 14:39 SJL, revision 69083

Cause a compile time error in the wxWebView sample if no backend exists.

2011-09-14 10:24 SJL, revision 69082

Make wxBookCtrlBase::GetSelection virtual, as per the documentation.

2011-09-14 09:39 SJL, revision 69081

Only build the wxWebView tests if there is an available backend.

2011-09-13 23:26 SJL, revision 69079

Correctly disable webkit backend if the appropriate headers cannot be found.

2011-09-13 21:39 SJL, revision 69078

Correct a typo in the wxWebView tests.

2011-09-13 14:06 SJL, revision 69077

Disable webkit backend if the appropriate headers cannot be found.

2011-09-12 20:35 SJL, revision 69074

Update wxWebView guards to stop backend compilation when wxUSE_WEBVIEW is 0.

2011-09-12 15:42 SJL, revision 69073

Ensure that we have an available backend for wxWebView compilation.

2011-09-12 13:13 JJ, revision 69072

Update setup for OpenVMS

2011-09-12 12:57 JJ, revision 69071

add compile support for thread sample on OpenVMS

2011-09-12 11:23 VS, revision 69070

Fix appending of non-leaf node to wxGTK's wxDataViewCtrl. This was accidentally broken in r68965: appending a branch node after all others node resulted in corruption of m_nodes, as the node was never added to the list. Fixes #13467.

2011-09-12 09:12 SC, revision 69069

supporting spaces

2011-09-11 23:55 VZ, revision 69066

Fix best size computation for wxTextCtrl without borders in wxMSW. wxTextCtrl with wxBORDER_NONE (and possibly wxTE_READONLY) style is often used instead of a wxStaticText to allow copying the text, so make the size of such control the same as size of the label. This ensures that it aligns correctly with the label vertically while before the baselines were not aligned because a border-less text control was rendered by MSW as a label but had a too big size.

2011-09-11 15:26 SJL, revision 69060

Ensure that we have an available backend for wxWebView compilation.

2011-09-11 13:27 VZ, revision 69059

Still resize wxSplitterWindow children even when sash position doesn't change. Since the changes if r68876, the splitter windows were not resized correctly if the splitter size in the direction orthogonal to its own didn't change. This was an unintended side effect of the changes in that commit as it only wanted to avoid calling SetSashPositionAndNotify() in this case, but SizeWindows() should still be called. Ensure that we do call it always from wxSplitterWindow::OnSize() to fix this.

2011-09-11 12:55 VZ, revision 69058

Regenerate configure after webview branch merge.

2011-09-11 12:15 SJL, revision 69057

Update setup files

2011-09-11 12:12 SJL, revision 69056

Rebake trunk after wxWebView merge and add missing project files for the wxWebView library.

2011-09-11 02:35 RD, revision 69051

Fix missing and broken interface items for Phoenix

2011-09-10 20:09 SJL, revision 69049

Merge the new wxWebView classes from the SOC2011_WEBVIEW branch.

2011-09-10 18:02 PC, revision 69048

update WarpPointer for GTK3

2011-09-10 17:09 SJL, revision 69047

Merge in from trunk r68684 - r69046

2011-09-10 05:26 RD, revision 69041

Enable the HWND of the task dialog to be fetched with GetHandle if it is being used.

2011-09-08 23:15 VZ, revision 69028

Allow setting colours and font of wxTreeListCtrl. Use wxCompositeWindow<> to propagate changes of colours and font to wxDataViewCtrl that wxTreeListCtrl uses internally.

2011-09-07 18:57 PC, revision 69021

non-pch build fix

2011-09-07 18:56 PC, revision 69020

remove unnecessary GTK declarations from defs.h, move things only used once to the place that needs them

2011-09-06 18:35 PC, revision 69015

move addition of -lX11 to better place

2011-09-06 18:24 PC, revision 69013

don't disable cast checks in debug builds

2011-09-06 18:09 PC, revision 69012

remove unused __WXGTK12__ symbol

2011-09-06 17:54 PC, revision 69011

remove (very) obsolete GTK version check

2011-09-06 06:17 RD, revision 69007

fix for non-pch builds

2011-09-05 22:08 RD, revision 69005

Avoid infinite recursion on Mac in comboctrl, and fix an uninitialized pointer in propgrid

2011-09-05 17:40 VS, revision 69003

Fix crash in wxDataViewCtrl::UpdateColWidths().

2011-09-05 16:25 VS, revision 69002

wxDataViewCtrl: enable F2 editing with multiple selection too. This matches the native (and thus expected) behavior of Windows Explorer: edit the first item in selection. It's also better than ignoring user's key presses.

2011-09-05 01:01 VZ, revision 69001

Add persistence support for wxSplitterWindow. New wxPersistentSplitter class allows to easily save and restore the splitter position in config.

2011-09-03 18:19 SC, revision 68997

setting the image position after the label is set, otherwise image_only will have the potential label over the image

2011-09-03 15:14 VS, revision 68996

Use ProcessWindowEvent() in generic wxDataViewCtrl code.

2011-09-03 15:14 VS, revision 68995

Extracted wxDataViewMainWindow left/right keys handling into separate methods.

2011-09-03 15:14 VS, revision 68994

Rename wxDataViewMainWindow::OnArrowChar to OnVerticalNavigation. The method handled much more than just arrow characters and it didn't handle all arrow characters.

2011-09-03 15:14 VS, revision 68993

Slightly more efficient wxDataViewCtrl::StartEditor(). Don't compute item rect until we know for sure that the item actually is editable.

2011-09-03 15:14 VS, revision 68992

Fix generic wxDataViewCtrl Enter handling to conform to Windows UI. Spacebar is used to activate columns (e.g. toggle a checkbox). Enter activates the item, i.e. sends wxEVT_COMMAND_ITEM_ACTIVATED. If that event isn't handled, Enter acts the same as Space.

2011-09-03 03:39 RD, revision 68973

Fix some broken or add some missing interface declarations for Phoenix

2011-09-01 20:43 VZ, revision 68969

Don't warn about wxMetaFile in configure by default. Only warn if an explicit --enable-metafile was given, otherwise just turn it on only for the platforms that do support it, similarly to what was done for --enable-hotkey in the previous commit.

2011-09-01 20:43 VZ, revision 68968

Add wxUSE_HOTKEY support to configure. Add --enable-hotkey switch to allow enabling hot keys support and enable it by default under MSW and OS X that do support them but disable it elsewhere to avoid unnecessary warnings about them being unsupported. See #12354.

2011-09-01 18:20 SC, revision 68967

fixes #13443, thanks :-)

2011-08-31 19:22 VZ, revision 68966

Fix deleting and clearing wxTreeListCtrl columns. The model columns were not updated before, resulting in a mismatch between view and model columns if ClearColumns() followed by AppendColumn() was called.

2011-08-31 11:36 VS, revision 68965

Add items to correct position in wxDataViewCtrl:ItemAdded. In both the generic and GTK+ versions, ItemAdded() always appended the new item, regardless of its position among its siblings in the model.

2011-08-31 11:04 VS, revision 68964

Generic wxDataViewCtrl: resize autosized columns at idle time. This is much more efficient than doing it immediately when adding large number of items into a control with lots of them.

2011-08-30 17:20 DS, revision 68962

Fixed dlmsw.cpp compilation with older SDKs and at run-time for systems prior to XP SP1. Kernel32's SetDllDirectory is only available since XP SP1 and as such also not available in the SDK that comes by default with for example VS6. Attempt to retrieve the function from the DLL at run-time instead. Regression since r68935.

2011-08-30 15:40 VZ, revision 68961

Better support for flat lists in wxTreeListCtrl. Override wxDataViewModel::IsListModel() to return true if wxTreeListCtrl doesn't have any depth. This results in better display when using the generic implementation of wxDataViewCtrl as no space is reserved for the (unnecessary) expanders in this case.

2011-08-30 15:40 VZ, revision 68960

Fix computation of the item offset in generic wxDataViewCtrl code. We need to account for the expander even for the items that don't have children when computing their offset as their parent still does have it, contributing to the total offset. This corrects the fixes of r68836 to also work for the leaf items. Also rename expanderOffset variable to more clear itemOffset.

2011-08-30 11:51 JJ, revision 68959

Update makefiles for OpenVMS

2011-08-30 11:02 SC, revision 68958

fixes #13438 (building OSX min >= 10.6), thanks :-)

2011-08-30 09:01 SC, revision 68957

adding command - comma as shortcut of stockitem wxID_PRERENCES on OSX - and make sure it's working by adapting ToString()

2011-08-29 21:09 DS, revision 68956

Regenerated Xcode projects. Updated the Xcode projects to include latest source additions and newer settings from template *_in.xcodeproj project files.

2011-08-29 19:25 VS, revision 68954

Send wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED if WXOnActivate() returned false too. This is consistent with wxGTK implementation and generally makes sense: when the renderer cannot handle activation, whole-item activation should be tried next.

2011-08-29 19:25 VS, revision 68953

Make generic wxDataViewToggleRenderer react to activation. Previously it only responded to single-clicks, which was to avoid the need to double-click checkboxes. Fixed to react to activation via double-click or keyboard too.

2011-08-29 19:25 VS, revision 68952

Activate cells from keyboard too in generic wxDataViewCtrl. wxDataViewCtrl only called WXOnActivate() in reaction to double-click. When Enter/Spacebar was pressed, only wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED was sent, without calling OnActivate() even if it was possible. Fixed to handle both kinds of input identically. Because there's currently no way to change current focus to a particular column (as GtkTreeView can do), call WXOnActivate() on the first activatable column.

2011-08-29 18:06 DS, revision 68951

Fixed drawing a check box in the undetermined state for non-themed MSW apps. wxRendererMSW::DoDrawFrameControl (used for systems prior to XP or when theming is disabled) didn't check for the wxCONTROL_UNDETERMINED flag yet. Set the appropriate styles when the flag is used to fix drawing check boxes in their third state (as used in for example the treelist sample).

2011-08-29 16:46 VZ, revision 68950

Make it possible to TAB to wxTreeListCtrl contents. Even though wxTreeListCtrl contains just one child window it still needs to derive from wxNavigationEnabled<> to allow focus getting to its sole child.

2011-08-29 14:33 VZ, revision 68949

Fix spelling error in an error message in wxObjectXmlReader. No other changes.

2011-08-29 03:13 DS, revision 68948

Added alpha saving support to TIFF image handler. Added support for saving alpha with RGB, greyscale, and black and white images.

2011-08-29 01:45 DS, revision 68947

Fixed loading greyscale with alpha TIFF images. The alpha channel was not detected because of wrong hasAlpha determination. Also TIFFReadRGBAImage[Oriented] doesn't appear to decode an alpha channel for images that are greyscale so decode greyscale with alpha images using TIFFReadScanline.

2011-08-29 00:44 DS, revision 68946

Fixed copying only 1/3 of scanline when saving TIFF image in rare cases. If our calculated image pitch is not equal to what TIFFScanlineSize returns a scanline buffer would be used. In that case the number of bytes being copied was equal to the image's width instead of pitch (width times 3).

2011-08-29 00:17 DS, revision 68945

Added support for loading black and white TIFF images with alpha. As TIFFReadRGBAImage[Oriented] can't deal with all images make use of TIFFReadScanline to decode per scanline. Currently only the case of a black and white image with alpha (for a total of 2 bits per pixel) is handled.

2011-08-29 00:06 DS, revision 68944

Updated manual regarding image alpha support for TGA handler. TGA was not mentioned in the list of formats supporting loading of alpha, but alpha loading support has been available since r42644.

2011-08-28 23:59 DS, revision 68943

Read TIFF images from top to bottom instead of bottom to top. Use TIFFReadRGBAImageOriented with a parameter of ORIENTATION_TOPLEFT instead of using TIFFReadRGBAImage (which uses ORIENTATION_BOTTOMLEFT) to read images in a more logical order and simplify code.

2011-08-28 23:49 DS, revision 68942

Fixed accessing out-of-bounds image coordinates while writing a black and white TIFF image. The code assumed that the image's width is a multiple of 8, and attempted to always write per 8 pixels instead of sometimes having to write fewer pixels for the last column. Also fixed compilo from previous commit due to not removing old code.

2011-08-28 23:38 DS, revision 68941

Fixed calculated image pitch being off-by-one in some cases. The variable linebytes sometimes counted one extra byte, which is OK for allocating but not when accessing the image later on. Calculate the value in a slightly different way and made the variable const.

2011-08-28 23:31 DS, revision 68940

Removed double TIFFSetField call for setting TIFFTAG_ORIENTATION. Setting the same TIFF tag with the same value once is enough.

2011-08-28 23:27 DS, revision 68939

Call GetAlpha() to get a pointer instead of checking for alpha first. It's safe to call GetAlpha() even if there's no alpha because in that case NULL will be returned.

2011-08-28 15:00 SC, revision 68938

make sure svn info for an already existing .xcodeproj folder is not deleted, replace project file itself in place

2011-08-28 09:11 SC, revision 68937

adding missing doc string for BACKSPACE

2011-08-28 08:54 SC, revision 68936

routing keys like ESC etc, fixes #13429

2011-08-28 01:26 RD, revision 68935

* Implement dynamic loading of the Cairo DLL on Windows similar to how it was done for GDI+. * Enable the use of the wxCairoContext on MSW. * Enable creating a wxGCDC from an exisiting wxGraphicsContext. * Since it's possible for a DLL that is using wx to not be on the PATH nor in the same location as the .exe, change the wxDynamicLibrary::RawLoad method to explicitly look first in the same place as the main wx-using binary. This way it will find DLLs that are in the same folder as the wx-using binary even if that would not be in the normal DLL search path. * Change wxDCImpl and wxDC::GetLogicalScale to be const methods.

2011-08-27 18:44 VS, revision 68932

More understandable symbolic constants in generic wxDVC's DoJob class.

2011-08-27 18:44 VS, revision 68931

Use spacebar to activate items in generic wxDataViewCtrl too. Pressing Spacebar now behaves the same as Enter in the generic control, for consistency with the GTK+ control and native Windows list controls.

2011-08-27 18:44 VS, revision 68930

Remove DestroyTreeHelper(), make GetChildNodes() const, add RemoveChild(). There's no reason for DestroyTreeHelper() code, that's what destructors are for. On a related note, make removal of children from a node more explicit too.

2011-08-27 18:44 VS, revision 68929

Add wxDataViewMainWindow::GetModel() helper. It's slightly less verbose than GetOwner()->GetModel() used all over the place.

2011-08-27 18:44 VS, revision 68928

Better names in wxDataViewTreeNode. GetChildNodes() instead of GetNodes(), AddChild() instead of AddNode().

2011-08-27 17:23 VS, revision 68927

Use wxTE_PROCESS_ENTER with wxDataViewCtrl text controls. wxDVC code depends on wxEVT_COMMAND_TEXT_ENTER to hide the inline editing controls. Fixes #13412.

2011-08-27 16:58 VZ, revision 68926

No real changes, minor corrections to the docs. Don't leave a line break inside a @code block as it's preserved in the HTML output, making it appear ugly.

2011-08-27 16:56 VZ, revision 68925

Copy generic images when building the documentation too. The images used by @genericAppearance Doxygen macro were not copied to the output directory.

2011-08-27 16:50 VZ, revision 68924

Compilation fix for wxTreeListCtrl when not using PCH. Include wx/dc.h normally included from wx/wxprec.h.

2011-08-27 16:11 VZ, revision 68923

No changes, just fix the file name in the header comment of wxDVC test. s/tree/dataview/

2011-08-27 16:11 VZ, revision 68922

Make wxBU_EXACTFIT fir the button text more exactly. Too big margins were added for the buttons with wxBU_EXACTFIT style making them larger than strictly necessary. Reduce the margins to make them really as small as possible.

2011-08-27 16:11 VZ, revision 68921

Added wxFLP_SMALL and wxDIRP_SMALL styles for wx{File,Dir}PickerCtrl. These styles allow to use a smaller browse button as the standard one takes too much space, often leaving too little of it for the more important text control part. Notice that both styles are, in fact, equal to wxPB_SMALL but only file and directory pickers currently use it as it doesn't make sense for the colour and font pickers.

2011-08-27 16:11 VZ, revision 68920

Auto complete file names in the text controls of wx{File,Dir}PickerCtrl. There doesn't seem to be any reason not to do this in the controls which we know are meant for entering file or directory names into them.

2011-08-27 16:11 VZ, revision 68919

Make the file and dir picket controls expand in widgets sample. The controls were too small to see long paths in them comfortably while there was plenty of space in the page, use wxEXPAND flag for them.

2011-08-27 16:11 VZ, revision 68918

Add wxTextEntry::AutoCompleteDirectories(). As we already had MSW-specific AutoCompleteFileNames(), we can just as well also add the also useful AutoCompleteDirectories() to be used with the text controls used for path entry.

2011-08-27 16:11 VZ, revision 68917

No changes, just fix a typo in wxBannerWindow documentation.

2011-08-27 16:11 VZ, revision 68916

Add new wxTreeListCtrl class. This is a facade for wxDataViewCtrl allowing to easily work with multi-column trees, possibly with an optional checkbox in the first column. Its API is very similar to wxTreeListCtrl and it provides a simple migration path from the latter. Add the class itself, documentation for it and minimal unit tests.

2011-08-27 15:24 VS, revision 68915

Notify GtkTreeView if a node stops being a parent. GtkTreeView requires the row-has-child-toggled signal to be emitted in this situation, so do it from ItemDeleted handler. Curiously, it handles adding the first child automatically. That's good, because detecting this situation when adding the first child wouldn't be trivial and so not having to do it is a plus. (Emitting it on every node addition doesn't sound like a terribly bright idea.)

2011-08-27 15:24 VS, revision 68914

Save memory in wxDataViewTreeNode. Put data that are meaningful only for non-leaf nodes into a separate struct that is only allocated for branch nodes. This makes branch nodes larger by sizeof(void*), but leaf nodes save >50% of memory.

2011-08-27 15:24 VS, revision 68913

Simplified generic wxDataViewCtrl's tree structure. Use just one type, wxDataViewTreeNode, to represent any kind of node. Previously a complicated structure that represented leaves and non-leaf nodes differently was used. This make the code way too complicated and caused some smaller bugs (see e.g. #13256). As a side effect, this change makes the control react correctly to changes in IsContainer() return values. Also fixes #13256.

2011-08-27 15:24 VS, revision 68912

No real change, use more descriptive variable names in wxDataViewMainWindow::ItemDeleted(). Call the node object corresponding to 'parent' 'parentNode' instead of just the more vague 'node'. Also, 'nodes' instead of 'nds'.

2011-08-27 14:13 VZ, revision 68911

Set colours and fonts for all elements of the generic wxSearchCtrl. Derive generic wxSearchCtrl from wxCompositeWindow<> to ensure that calls to its Set{Fore,Back}groundColour() are propagated to all its children, otherwise they applied only to the composite control itself but not e.g. its text part. Also update the bitmaps when the background colour changes to ensure that it appears as transparent. Closes #13428.

2011-08-27 14:13 VZ, revision 68910

Allow returning NULL windows from GetCompositeWindowParts(). wxCompositeWindow::GetCompositeWindowParts() becomes simpler to implement in the derived classes with optionally shown elements if NULL windows are allowed (and ignored) in the list returned by it.

2011-08-27 14:13 VZ, revision 68909

Fixes to OpenGL samples to avoid asserts/crashes. Don't call wxGLCanvas::SetCurrent() when the window is not shown. Closes #13424.

2011-08-26 15:01 JJ, revision 68907

Update setup for OpenVMS

2011-08-26 01:32 DS, revision 68903

Fixed best size of wxUniv's wxNotebook. Removed wxNotebook::DoGetBestClientSize to let wxBookCtrlBase::DoGetBestSize do its job and fix the best size of a wxNotebook (formerly when running the notebook sample the notebook was not wide enough).

2011-08-26 01:16 DS, revision 68902

Fixed best sizes for wxUniv controls. Many wxUniv controls had a way too small best size which was noticeable when running e.g. the widgets sample. Regression started in r61169 where wxWindowBase::DoGetClientBestSize() was introduced but that virtual function already existed in wxUniv's wxWindow. Removing wxUniv's wxWindow::DoGetBestSize and wxWindow::DoGetBestClientSize fixes sizing issues.

2011-08-26 01:13 DS, revision 68901

Fixed width of scrollbars in wxUniv. The AdjustSize renderer function for wxUniv's GTK and MSW theme adjusted the size of a scrollbar while it already had the correct size, resulting in scrollbars being twice as wide. Fixed by not adjusting the size of a scrollbar anymore in AdjustSize. Closes #11660.

2011-08-26 01:09 DS, revision 68900

Fixed buttons having no border in wxUniv by default. Buttons had a border of wxBORDER_NONE resulting in wxButton::DoDraw not drawing the button's border. Fixed by adding wxAnyButton::GetDefaultBorder() for wxUniv which returns wxBORDER_STATIC. Regression since r67931.

2011-08-25 23:52 DS, revision 68899

Fixed MSW/Univ compilation of toplevel.cpp. MSW-only functions were compiled in, disabled their usage by adding #ifndef __WXUNIVERSAL__ blocks. Closes #13399 (again, after r68723 already should have closed it but its commit message contained a typo).

2011-08-25 18:37 SC, revision 68880

mb:54153a12-b2c7-417e-b607-c4faa9c436ab

2011-08-24 14:57 SJL, revision 68878

Rebake after previous commit, should fix monolithic compilation.

2011-08-24 13:52 VZ, revision 68877

No real changes, just update copyright year in wxInfoMessageBox(). s/2010/2011/

2011-08-24 13:48 VZ, revision 68876

Try harder to set the requester splitter position in wxSplitterWindow. The code in wxSplitterWindow tried to remember the requested position and set the real sash position to it later, even if the initial window size was too small to allow for it, but it didn't work because the requested position was forgotten after the first size event, even though it was quite possible that this event didn't really change the window size from the initial, small, one. Try to make this more robust by ignoring the size events which don't really change the window size. Also set m_lastSize correctly initially. Now setting the sash position does work even if the splitter itself is inside nested sizers (which results in many size events).

2011-08-24 13:19 SC, revision 68875

adding raw_control for osx

2011-08-24 09:43 SJL, revision 68874

Remove out of date extralib stuff from the bakefiles.

2011-08-24 08:14 SC, revision 68873

missing commit for RAW_CONTROL changes

2011-08-24 06:15 SC, revision 68872

missing commit for RAW_CONTROL changes

2011-08-23 21:09 JC, revision 68871

Merged from trunk

2011-08-23 17:44 VZ, revision 68870

Compilation fix for non-OSX: don't use m_rawControlDown there. m_rawControlDown is supposed to be only used under OS X so put an #ifdef __WXOSX__ around it in wxKeyboardState::GetModifiers() to fix compilation under the other platforms.

2011-08-23 17:30 SC, revision 68869

fixing type for key event, using WXK_RAW_CONTROL constant for controlkey, see #13415

2011-08-23 17:18 SC, revision 68868

exposing control key combinations as before, fixing unicodekey casing

2011-08-23 17:11 VZ, revision 68867

Simplify checks for event vetoing in generic wxDataViewCtrl code. Don't return the whole event object from SendExpanderEvent() just to check if it wasn't vetoed, simply return a boolean value indicating if this was the case from this function itself. This makes it both more efficient and easier to use.

2011-08-23 17:11 VZ, revision 68866

Fix completely wrong logic for veto checking in generic wxDVC. The code sending the event must check whether the event was vetoed or not, not whether it was skipped or not. This is the minimal change resulting in correct behaviour even if an event handler does skip the event.

2011-08-23 15:19 SC, revision 68865

adjusting keyboardstate to new ctrl / raw_ctrl handling on osx

2011-08-23 15:03 SC, revision 68864

adjusting keyboardstate to new ctrl / raw_ctrl handling on osx

2011-08-23 13:04 VZ, revision 68863

Mention wxLocale in wxNumValidator documentation. Using setlocale() can thoroughly confuse wxNumValidator because it results in a mismatch between the decimal and/or thousands separators it uses, returned by wxLocale, and the actual separators in the strings, formatted by the CRT. So mention in the documentation that using setlocale() is a bad idea. Closes #12970.

2011-08-23 13:04 VZ, revision 68862

No changes, just add a missing comma in wxNumValidator documentation. SetRange() declaration wasn't properly terminated.

2011-08-23 13:04 VZ, revision 68861

Check for decimal separator inconsistency in wxLocale::GetInfo(). Under wxMSW it's possible to have mismatch between the CRT locale (used by various printf-related functions) and the system locale (queried by wxLocale::GetInfo()). Warn if such a mismatch occurs and tell people to use wxLocale instead of just setlocale() to change the locale. See #12970.

2011-08-23 12:50 VZ, revision 68860

Fix wxBannerWindowNameStr definition in DLL builds. Don't use WXDLLEXPORT_DATA when defining the variable, it can be only used when declaring it. This fixes wxMSW DLL build with MSVC.

2011-08-23 06:55 DS, revision 68859

Added wxBITMAP_TYPE_TIFF and wxBITMAP_TYPE_TIFF_RESOURCE. Having wxBITMAP_TYPE_TIFF and wxBITMAP_TYPE_TIFF_RESOURCE is more consistent with already using the complete short name of an image format elsewhere (e.g. wxBITMAP_TYPE_JPEG, not wxBTMAP_TYPE_JPG, and wxTIFFHandler as opposed to wxTIFHandler). Renamed all existing occurrences and kept the old enum values for backwards compatibility. Also renamed occurrences of wxBITMAP_TYPE_RESOURCE to the already existing wxBITMAP_TYPE_BMP_RESOURCE.

2011-08-23 06:41 DS, revision 68858

Fixed linking errors related to wxAnyButton in wxUniv. Native wxAnyButton headers were being included but the sources aren't used in wxUniv. Fixed this by not including any native header in wxUniv and instead made wxAnyButton a typedef of wxAnyButtonBase.

2011-08-23 05:08 DS, revision 68857

Fixed compilation of various notebook.cpp's. Make use of HasImageList() and GetImageList() instead of accessing the now private m_imageList directly. Fixed for wxUniv, wxGTK1, and wxOS2 (the latter 2 blindly). Changes are similar to r68856 and should have been a part of that.

2011-08-23 04:18 DS, revision 68856

Fixed compilation of sources that make use of wx/univ/notebook.h. wxUniv's wxNotebook was accessing m_imageList which now is a private in wxWithImages since r68809. Fixed by using wxWithImages::HasImageList.

2011-08-22 23:53 JC, revision 68855

Trunk made changes. Code had to change to deal with depth==32

2011-08-22 17:35 VZ, revision 68854

Exclude another auto-generated file when cleaning the patches. Changes to autoconf_inc.m4 are not interesting neither, exclude them.

2011-08-22 17:31 VZ, revision 68853

Don't refresh not yet realized widget in wxGTK wxDataViewCtrl. If the text of any of wxDataViewCtrl cells was set before the control was realized (e.g. during its creation), the code tried to refresh the not yet shown widget resulting in GTK+ errors. Avoid this by only refreshing the tree if it's realized.

2011-08-22 17:31 VZ, revision 68852

Return non-const pointer from wxDataViewRendererBase::GetView(). Non-const wxWindow pointers are unfortunately needed quite often in wx API so return a non-const pointer here to allow using it with e.g. wxRendererNative (whose methods all take non-const wxWindow pointers) in the derived classes.

2011-08-22 17:31 VZ, revision 68851

Add wxDataViewIconText::IsSameAs() and make comparison operators members. Add IsSameAs() to make it simpler to call from the derived class operator==() implementation. Also make comparison operators themselves members instead of global functions to avoid considering them as matches for all operator==() uses in the program, there is really no need for this as we do _not_ want to allow implicitly converting something to wxDataViewIconText when comparing.

2011-08-22 17:31 VZ, revision 68850

Return (16,16) as the default list icons size in wxMSW. The standard size of the small icons in list controls under MSW is traditionally 16*16 so return this from wxMSW wxArtProvider.

2011-08-22 17:11 SC, revision 68849

removing trailing comma

2011-08-22 17:10 SC, revision 68848

exposing wxGraphicsContext through an ordinary wxDC

2011-08-22 16:14 VS, revision 68847

Fix typo.

2011-08-22 16:14 VS, revision 68846

Don't iterate over selection twice needlessly in wxDataViewMainWindow::ItemDeleted().

2011-08-22 16:14 VS, revision 68845

No change, improve wxDataViewMainWindow::ItemDeleted() readability.

2011-08-22 14:41 VZ, revision 68844

Harmonize wxDataViewCtrl::GetSelection() behaviour in all ports. wxDataViewCtrl::GetSelection() now always returns invalid item if more than a single item is selected in a multi-selection control. Also add HasSelection() and GetSelectedItemsCount() to allow checking if any items are selected. Updated the documentation, all ports and added a test for all these functions.

2011-08-22 14:41 VZ, revision 68843

No changes, just use CPPUNIT_ASSERT_EQUAL() instead of CPPUNIT_ASSERT(). CPPUNIT_ASSERT_EQUAL() gives more informative error messages in case of failure which is important when running tests unattended on build slaves.

2011-08-22 14:41 VZ, revision 68842

No changes, just add wxGtkList to ensure g_list_free() is always called. Add an extremely simple RAII wrapper around GList and use it. Also add wxGtkTreePathList which also automatically frees its contents to simplify working with the lists of GtkTreePaths.

2011-08-22 14:38 VZ, revision 68841

Don't export Objective C interfaces in non-x86_64 builds. Doing this is unnecessary and results in compilation errors in PPC and x86 builds when using old (4.0.1) version of the compiler. So make WXEXPORT added in r67575 specific to 64 bit builds.

2011-08-22 14:18 VZ, revision 68840

Add XRC handler for wxBannerWindow and a test for it to the xrc sample. Also document the new XRC format elements.

2011-08-22 14:18 VZ, revision 68839

No changes, just factor our wxDirection parsing code in wxXRC. Move it from wxButtonXmlHandler into a reusable wxXmlResourceHandler:: GetDirection() that can used by the other handlers too.

2011-08-22 14:18 VZ, revision 68838

Add new wxBannerWindow class. A simple banner showing either a bitmap or some text on gradient background.

2011-08-22 14:18 VZ, revision 68837

Add @genericAppearance Doxygen macro. This allows to provide just a single image (in "generic" subdirectory) for the generic controls that look the same in all ports instead of having to create three identical ones (in "wxmsw", "wxgtk" and "wxmac" subdirectories) that are required by @appearance.

2011-08-22 14:13 VZ, revision 68836

Fix the coordinates in wxDataViewCustomRenderer::LeftClick() in generic wxDVC. The code in generic wxDataViewCtrl implementation didn't take the space taken by tree expander button nor the indentation of child nodes into account, so the coordinates passed to LeftClick() could be completely wrong. Fix this by offsetting them to ensure that click coordinates are always relative to the cell client area.

2011-08-22 13:27 JS, revision 68835

Fix duplicate variable for VC++ 6

2011-08-22 13:26 JS, revision 68834

Rename identifier

2011-08-22 11:28 LV, revision 68833

Regenerated Makefiles with bakefile_gen

2011-08-22 11:21 SJL, revision 68832

Add new sample project files.

2011-08-22 11:16 SJL, revision 68831

Rebake

2011-08-22 10:58 LV, revision 68830

Removed wxButtonStrip (not too useful too)

2011-08-22 10:58 LV, revision 68829

Removed wxTabCtrl altogether (not very useful); implemented wxSegmentedCtrl

2011-08-22 10:57 LV, revision 68828

Removed wxContentWindow from wxTableCell

2011-08-22 10:45 SJL, revision 68827

Export a couple of carbon functions so that shared builds in carbon compile correctly.

2011-08-22 09:52 JC, revision 68826

Added comments. Many samples show correct images

2011-08-22 09:34 JC, revision 68825

Fixed a bug in creating mask

2011-08-22 09:06 LV, revision 68824

Various (remaining) wxTableCtrl setters

2011-08-22 09:06 LV, revision 68823

Common source files to Bakefile

2011-08-22 09:06 LV, revision 68822

wxTableCtrl accessory button event

2011-08-22 09:06 LV, revision 68821

Remaining wxTableCtrl setters

2011-08-22 07:56 JC, revision 68820

Fixed a bug in creating mask

2011-08-22 04:15 JC, revision 68819

Fixed a bug in MaskToAlpha()

2011-08-22 00:36 JC, revision 68818

Fixed bug in reading mask info

2011-08-21 20:07 PC, revision 68815

fix memory corruption

2011-08-21 16:52 VZ, revision 68813

Add missing wx/icon.h header to fix wxGTK compilation. wx/withimages.h needs to include wx/icon.h as it contains an inline function returning wxIcon.

2011-08-21 16:08 VZ, revision 68812

Refactor: replace wxTreeItemId and wxDataViewItem with new wxItemId<>. Add wxItemId<> template which can be used to identify items in different {tree,list}-like controls, including wxDataViewCtrl (where it replaces, in backwards compatible way, wxDataViewItem), wxTreeCtrl (where it replaces wxTreeItemId) and the upcoming wxTreeListCtrl.

2011-08-21 16:08 VZ, revision 68811

No changes, just move wxCheckBoxState to wx/defs.h from wx/checkbox.h. Move the enum to allow reusing it in other places.

2011-08-21 16:08 VZ, revision 68810

No changes, just use symbolic NO_IMAGE constant instead of -1 or wxNOT_FOUND. Existing declarations used -1 in several places to indicate the absence of the image which wasn't especially clear and was also inconsistent with other places that used wxNOT_FOUND which didn't make much sense in this context. Add a new symbolic constant NO_IMAGE in wxWithImages and use it in the classes deriving from it. This still doesn't help with wx{Tree,List}Ctrl but improves clarity for the other classes.

2011-08-21 16:08 VZ, revision 68809

Add wxWithImages helper mix-in with {Set,Get,Assign}ImageList() methods. Avoid defining SetImageList() in several different places in wx API as not only this resulted in (trivial) code duplication but this method also had different semantics before: it didn't take ownership of the pointer passed to it in wxTreeCtrl, wxListCtrl and wxBookCtrl and derived classes but did take its ownership in wxDataViewTreeCtrl and wxRichTextFormattingDialog. Harmonize this for all the classes now: SetImageList() never takes ownership while AssignImageList() (which is now available in all classes having SetImageList()) always does. Also add convenience wxWithImages::GetImage() helper to avoid (more) code duplication in wxDataViewTreeCtrl code.

2011-08-21 14:06 VZ, revision 68808

Replace wxComboBox::IsEmpty() with Is{List,Text}Empty(). IsEmpty() didn't exist in all ports (notably not wxMSW) and its meaning was unclear anyhow, so remove it even from the ports where it did exist and add clear Is{List,Text}Empty() replacements instead.

2011-08-21 11:07 VS, revision 68807

Rename wxDataViewCtrl::InvalidateColBestWidth* to UpdateColBestWidth*. The new names make it more clear that the functions don't just set an invalidated flag, but that they actually do some recalculations.

2011-08-21 11:07 VS, revision 68806

Fix autosize columns width calculation in generic wxDataViewCtrl. Column widths were recomputed too soon -- after the model changed, but before the control's own data structures were updated to reflect the change. This could lead to incorrect calculations or worse, crashes.

2011-08-21 09:45 LV, revision 68805

wxTableCtrl wxiOS tests

2011-08-21 09:45 LV, revision 68804

Parts of wxTableCtrl/wxNavigationCtrl moved to 'generic' source files

2011-08-21 09:45 LV, revision 68803

Safer wxViewController SetWindow()

2011-08-21 09:45 LV, revision 68802

wxStaticBitmap wxiOS tests

2011-08-21 09:45 LV, revision 68801

wxBitmapButton wxiOS tests

2011-08-21 09:45 LV, revision 68800

wxiOS test bitmap moved to a more generic location

2011-08-21 08:46 JC, revision 68799

Fixed a bug in reading xbm files.

2011-08-20 16:04 SJL, revision 68797

Fix history when using custom schemes in GTK.

2011-08-20 14:25 VZ, revision 68796

Add a one line script to clean patches before submitting them for review. Exclude changes to the auto-generated files using filterdiff.

2011-08-20 12:59 SJL, revision 68795

Add virtual destructors to fix GCC4 warnings.

2011-08-20 11:50 SJL, revision 68794

Another compilation fix for OSX 10.5

2011-08-20 07:09 JC, revision 68793

Merged from the trunk

2011-08-19 20:25 VS, revision 68792

Reorganize wxDataViewMainWindow::ItemAdded() for better readability. Reuse common code. No real changes.

2011-08-19 18:10 DS, revision 68791

Fixed failing test in ImageTestCase for builds made with makefiles. The recently added BMP images in tests/image/ were not being copied. Added them to test.bkl and regenerated makefiles.

2011-08-19 15:30 SJL, revision 68790

Update documentation for new library name.

2011-08-19 12:45 SJL, revision 68789

Rename web library to webview.

2011-08-19 11:15 SJL, revision 68788

Rename wxUSE_WEB to wxUSE_WEBVIEW to reflect that actually it specifically toggles the wxWebView class and associated features.

2011-08-19 05:57 DS, revision 68787

Documented wxIMAGE_OPTION_TIFF_* options that are currently in use.

2011-08-19 05:50 DS, revision 68786

Use a default photometric interpretation value of PHOTOMETRIC_MINISWHITE instead of PHOTOMETRIC_MINISBLACK for greyscale and b/w TIFF images. Closes #13194.

2011-08-19 05:47 DS, revision 68785

Added option to TIFF handler for specifying the photometric interpretation. Added option wxIMAGE_OPTION_TIFF_PHOTOMETRIC for reading and writing TIFF images. This is mostly for being able to distinguish between PHOTOMETRIC_MINISBLACK (chocolate flavour) and PHOTOMETRIC_MINISWHITE (vanilla) as currently the flavour used was fixed. It applies to greyscale as well as black and white images. Added unit tests to verify the written photometric value. Also see #13194.

2011-08-19 04:35 DS, revision 68784

Added support for saving greyscale TIFF images. When saving with a samples per pixel value of 1 the TIFF handler still treated the image as RGB, resulting in corrupted images. Handle the greyscale case and added a unit test for it.

2011-08-19 04:27 DS, revision 68783

Changed TIFF handler's monochrome conversion to look at the green channel instead of red. It's common when reducing a coloured image to greyscale or black and white to give the green channel more significance. Since we're only looking at a single channel use the green one instead of red.

2011-08-19 04:00 DS, revision 68782

Fixed crash when saving as a monochrome TIFF image with incomplete options set. When setting only wxIMAGE_OPTION_TIFF_BITSPERSAMPLE to 1 the used samples per pixel (wxIMAGE_OPTION_TIFF_SAMPLESPERPIXEL) would still be set to 3. This is invalid and confuses libtiff, resulting in a crash ("possible heap corruption" during _TIFFfree using WinXP+MSVC8). Set the used samples per pixel to 1 explicitly in cases where only bits per sample is set to 1. Added a unit test to check for this problem (and verify the bits per sample from the saved image is indeed 1).

2011-08-19 03:31 DS, revision 68781

No code changes. Renamed variable bpp (bits per pixel) in TIFF handler to what it actually represents: bps (bits per sample).

2011-08-19 03:19 DS, revision 68780

Renamed the options specific to the TIFF handler. The loading/saving options that are specific for TIFF were in the form of wxIMAGE_OPTION_<name> while all other non-generic options use the form wxIMAGE_OPTION_<imagetype>_<name>. Renamed the TIFF options to the form wxIMAGE_OPTION_TIFF_<name> and kept the old names for backwards compatibility.

2011-08-19 03:13 DS, revision 68779

improved wxImage documentation. moved description of wxIMAGE_OPTION_GIF_COMMENT from wxImage::GetOptionInt documentation to wxImage::GetOption because the value of the GIF option is a string, not int.

2011-08-19 03:09 LV, revision 68778

wxWheelsCtrl wxiOS implementation + some tests

2011-08-19 03:08 DS, revision 68777

Improved saving of TIFF monochrome images. When reducing an RGB image to black and white any non-black pixel was treated as white resulting in mostly white images. Set the threshold to 127 instead to improve the looks of saved monochrome TIFF images.

2011-08-18 19:32 JC, revision 68774

Merged from the trunk

2011-08-18 15:29 SJL, revision 68773

Remove a couple of unused forward declarations.

2011-08-18 15:15 DS, revision 68772

Fixed saving TIFF images to wxMemoryOutputStream. Libtiff attempts to seek past the end of a stream and the behaviour for this can vary per stream implementation. Fixed failure to seek by filling the gap between the end of stream and new seek position with zeroes. Enabled a unit test which so far was disabled due to wxMemoryOutputStream failing to save a TIFF because of the seeking problem. Also closes #4089.

2011-08-18 12:51 SJL, revision 68771

Add some version checks to help compiling on OSX.

2011-08-18 11:28 JC, revision 68770

samples/drawing can work

2011-08-18 11:26 SJL, revision 68769

Remove MoveWindow method.

2011-08-18 08:23 JC, revision 68768

Added code for creating cairo context in dcmemory. Samples/caret works very well. Caret rendering is good.

2011-08-18 07:52 JC, revision 68767

Fixed a bug in creating cairo_image_surface from wxImage.GetData(). Now samples/image can load and show image correctly

2011-08-17 23:01 DS, revision 68766

Improved BMP decoding. The BMP decoder did not handle images that are not stored upside down but straight up (in which case the height is negative). Also with RLE4 or RLE8 compressed images the 'end of scanline' RLE marker was not handled correctly. Fixed the issues and added a unit test for them.

2011-08-17 21:34 JC, revision 68765

Improved a little bit

2011-08-17 18:25 JC, revision 68764

Merged from trunk to fix the bug in samples/thread and samples/menu

2011-08-17 15:50 SJL, revision 68763

Return true by default under OSX WebKit.

2011-08-17 15:46 SJL, revision 68762

Correctly stop the loading animation in the sample when we veto navigation.

2011-08-17 13:19 SJL, revision 68761

Derive wxWebViewEvent from wxNotifyEvent.

2011-08-17 12:55 SJL, revision 68760

Rename LoadUrl to LoadURL. This corrects the capitalisation as it is an acronym, and brings it into line with GetCurrentURL.

2011-08-17 12:49 SJL, revision 68759

Tidy up webview.h. Remove all of the doxygen comments which have now been moved to the interface file. Organise method declarations more sensibly.

2011-08-17 12:36 SJL, revision 68758

Make a few internal methods private.

2011-08-17 12:35 VZ, revision 68757

Use correct format specifier for thread id in the sample. Thread id is an (unsigned) long, not just unsigned, so use "%lx" to print it instead of "%x" to avoid asserts in formatting code. Closes #13404.

2011-08-17 12:35 VZ, revision 68756

Restore stock item labels mistakenly removed by r68641. The patch adding separate string for the labels with mnemonics and the ones without them has somehow managed to remove entries for 10 stock ids. Restore them now. Closes #13403.

2011-08-17 12:26 SJL, revision 68755

Const correct the wxWebView api.

2011-08-17 10:38 JS, revision 68754

Better text control non-selection solution

2011-08-17 10:38 JS, revision 68753

Better text control non-selection solution

2011-08-17 09:05 JC, revision 68752

samples/image can start but the image reader seems buggy

2011-08-17 07:40 JC, revision 68751

Minor fix

2011-08-17 04:51 JC, revision 68750

samples/dialog works without a warning

2011-08-16 22:52 JS, revision 68749

Implemented non-selection of content when setting focus via the keyboard.

2011-08-16 22:51 JS, revision 68748

Implemented non-selection of content when setting focus via the keyboard.

2011-08-16 20:14 SC, revision 68747

using sizer

2011-08-16 20:13 SC, revision 68746

using sizer

2011-08-16 20:12 SC, revision 68745

fixing vertical size expansion

2011-08-16 20:00 SC, revision 68744

fixing layout for segmented control

2011-08-16 18:40 JC, revision 68743

Merged from trunk

2011-08-16 18:33 JC, revision 68741

Applied Paul's patch. DoGetAsBitmap still neends improvements

2011-08-16 18:27 SC, revision 68740

using sizers

2011-08-16 18:22 SC, revision 68739

using sizers

2011-08-16 18:20 SC, revision 68738

using sizers

2011-08-16 18:18 SC, revision 68737

using sizers

2011-08-16 18:17 SC, revision 68736

using sizers

2011-08-16 18:14 SC, revision 68735

using sizers

2011-08-16 18:14 SC, revision 68734

fixing standard icon buttons

2011-08-16 17:22 SC, revision 68733

integrating sizers

2011-08-16 17:17 SC, revision 68732

integrating sizers

2011-08-16 17:15 SC, revision 68731

integrating sizers

2011-08-16 17:15 SC, revision 68730

integrating sizers

2011-08-16 17:12 SC, revision 68729

integrating sizers

2011-08-16 17:10 SC, revision 68728

integrating Layout

2011-08-16 15:46 SC, revision 68727

adapting to new ctrl constant handling on OSX

2011-08-16 15:45 SC, revision 68726

adapting to new ctrl constant handling on OSX

2011-08-16 15:36 SC, revision 68725

adapting to new ctrl constant handling on OSX

2011-08-16 14:42 SC, revision 68724

supporting full style mask

2011-08-16 14:24 VZ, revision 68723

wxMSW compilation fix when not using PCH. Add missing "wx/menu.h" include. Coses #13399.

2011-08-16 14:17 SC, revision 68722

adjust init to standard

2011-08-16 14:17 SC, revision 68721

support for raw ctrl shortcut

2011-08-16 14:01 SC, revision 68720

emulate more arrow keys on non msw platforms

2011-08-16 14:00 SC, revision 68719

adapt defines for ctrl/command key

2011-08-16 13:55 SC, revision 68718

adapt defines

2011-08-16 09:02 PC, revision 68717

Avoid creating rect with negative size while clipping to DC size. Also, don't convert result of wxDC::GetSize() to device coords, it's already device coords.

2011-08-16 08:45 JC, revision 68716

Improved bitmap_gtk3.cpp

2011-08-16 08:34 LV, revision 68715

Disable wxViewController tests for now

2011-08-16 08:34 LV, revision 68714

Correct wxNavigationBar creation

2011-08-16 07:22 JC, revision 68713

Improved bitmap_gtk3.cpp. Now samples/opengl can run but the glcanvas doesn't show anything

2011-08-16 07:00 JC, revision 68712

Fixed a bug in destructor in bitmap_gtk3.cpp

2011-08-16 06:02 LV, revision 68711

wxNavigationBar and friends (wxNavigationItem, wxBarButton)

2011-08-16 06:02 LV, revision 68710

wxViewController wxiOS tests

2011-08-16 06:02 LV, revision 68709

More wxListBox wxiOS tests

2011-08-16 06:01 LV, revision 68708

wxListBox wxiOS tests

2011-08-16 06:01 LV, revision 68707

wxListBox events and implementation

2011-08-16 06:01 LV, revision 68706

wxSearchCtrl wxiOS tests

2011-08-16 04:45 JC, revision 68705

Fixed a bug in bitmap_gtk3.cpp. samples/combo works but seems to have memory leak. cairo stuff needs more careful releases

2011-08-16 02:40 JC, revision 68704

Fixed a bug that bit per pixel m_bpp is not set

2011-08-15 23:00 JC, revision 68703

glcanvas can be compiled

2011-08-15 18:08 JC, revision 68701

working on samples/combo. m_originalMatrix should be initialized. A bug in wxBitmap still crashes the program.

2011-08-15 15:10 SJL, revision 68700

Add a menu item linking to a custom scheme example.

2011-08-15 14:37 SJL, revision 68699

Update bakefile for new header names.

2011-08-15 14:31 SJL, revision 68698

Rename wxWebHistoryItem to wxWebViewHistoryItem.

2011-08-15 13:03 SJL, revision 68697

Rename wxWebNavigationError to wxWebViewNavigationError and wxWebNavigationEvent to wxWebViewEvent. This makes the names more consistent with other parts of wxWidgets.

2011-08-15 08:40 JC, revision 68696

wxWindowDCImpl::DoGetAsBitmap() needs to be implemented with gtk+3. But how to get the bitmap of a widnowDC in gtk+3?

2011-08-14 22:15 JC, revision 68695

Merged from trunk

2011-08-14 21:39 VZ, revision 68694

Fix return value of wxMBConvUTF8::ToWChar() when not using MAP_INVALID_UTF8_NOT. wxMBConvUTF8::ToWChar() was off by 1 when the input length was explicitly specified, the extra NUL should only be added in the implicit length case. This bug didn't occur for the default wxMBConvUTF8 object as it simply forwarded to the base class wxMBConvStrictUTF8 implementation but it happened when MAP_INVALID_UTF8_TO_OCTAL or MAP_INVALID_UTF8_TO_PUA was used.

2011-08-14 17:43 SC, revision 68693

fixing comment

2011-08-14 17:42 SC, revision 68692

fixing open application event handling, fixes #13397

2011-08-14 17:41 SC, revision 68691

adding two missing strings (used in docview)

2011-08-14 14:25 SJL, revision 68690

Add missing bakefile from previous commit.

2011-08-14 14:15 SJL, revision 68689

Rename wxWebFileHandler to wxWebViewArchiveHandler, wxWebHandler to wxWebViewHandler. Update the documentation and the sample. Add a constructor taking a wxString to specify the scheme in wxWebViewHandler.

2011-08-14 13:55 SC, revision 68688

using proper cmd constant

2011-08-14 02:38 JC, revision 68687

Fixed a bug in gtk/renderer.cpp. Now samples/artprov works

2011-08-13 18:17 PC, revision 68685

simplify global cursor setting

2011-08-13 18:01 SJL, revision 68684

Merge in from trunk r68626 - r68683

2011-08-13 17:45 SJL, revision 68683

Add various selection menu items to the sample.

2011-08-13 16:53 SJL, revision 68682

Add Run Script menu option to the sample.

2011-08-13 16:11 SJL, revision 68681

Add history list to the sample.

2011-08-13 15:54 VZ, revision 68680

Fix bitmap position attribute name in XRC handler. Bitmap position attribute was called "bitmapposition" in the documentation and in the code that generated an error message for a wrong value in it but was inexplicably called "direction" in the code that really looked it up. This seems to be just a straight typo from the original r61065. Surprising as it is that it wasn't noticed before, do correct it now.

2011-08-13 12:07 SJL, revision 68679

Call Dismiss rather than Show(false) on the infobar to correct the layout.

2011-08-13 11:41 SJL, revision 68678

Fix loading history items under GTK. The wrong function was being used.

2011-08-13 00:58 JC, revision 68676

Minor change

2011-08-13 00:30 LV, revision 68675

wx[Action|Alert]SheetDialog wxiOS tests

2011-08-13 00:30 LV, revision 68674

wxScrolledWindow wxiOS tests

2011-08-13 00:30 LV, revision 68673

wxSegmentedCtrl SetButtonBackgroundColour

2011-08-13 00:30 LV, revision 68672

wxSegmentedControl changing/changed events

2011-08-13 00:30 LV, revision 68671

wxSegmentedCtrl tests

2011-08-13 00:30 LV, revision 68670

wxPageCtrl wxiOS tests

2011-08-13 00:29 LV, revision 68669

wxPageCtrl button click event

2011-08-13 00:29 LV, revision 68668

wxPageCtrl implementation bits

2011-08-13 00:29 LV, revision 68667

wxGauge wxiOS tests

2011-08-13 00:29 LV, revision 68666

wxToolBar wxiOS tests

2011-08-13 00:29 LV, revision 68665

wxStaticText background colors

2011-08-13 00:29 LV, revision 68664

wxNavigationCtrl tests

2011-08-13 00:29 LV, revision 68663

wxCheckBox event tests

2011-08-13 00:29 LV, revision 68662

wxTextCtrl read-only support

2011-08-13 00:29 LV, revision 68661

wxWebCtrl event tests

2011-08-13 00:29 LV, revision 68660

wxCheckBox wxiOS tests

2011-08-13 00:29 LV, revision 68659

wxWebKitCtrl wxiOS tests

2011-08-12 23:53 LV, revision 68658

wxTextCtrl wxiOS tests

2011-08-12 23:53 LV, revision 68657

wxStaticText wxiOS tests

2011-08-12 23:53 LV, revision 68656

Expanded wxNotebook test cases

2011-08-12 23:53 LV, revision 68655

Expanded wxNavigationCtrl test coverage

2011-08-12 23:40 JC, revision 68654

Minor changes

2011-08-12 18:10 PC, revision 68653

allow creating wxDC for un-realized window

2011-08-12 16:09 VZ, revision 68652

No changes, just remove gratuitous inefficiency from generic wxDVC. Don't return wxDataViewMainWindow::m_selection array by value, returning a const reference to it is enough and avoids completely unnecessary memory allocations and copying of potentially large amounts of data. Also make wxDataViewMainWindow::GetSelections() const.

2011-08-12 16:09 VZ, revision 68651

Fix compilation of generic wxDVC code when not using STL containers. wx sorted containers don't implement iterators so use indices to iterate over wxDataViewMainWindow::m_selection, just as r68613 already did in another place. Closes #13388.

2011-08-12 12:49 SJL, revision 68650

Update documentation about custom schemes and virtual file systems.

2011-08-12 12:44 SJL, revision 68649

Fix history in wxWebViewIE when using a custom file scheme.

2011-08-12 11:35 SJL, revision 68648

Use the data scheme to load resources in the WebKitGTK+ implementation, rather than temporary files.

2011-08-12 07:45 PC, revision 68647

remove unneeded gdk_window_get_pointer() call

2011-08-12 07:33 PC, revision 68646

pass proper window to gdk_window_get_pointer(), NULL does not work with GTK3

2011-08-11 20:56 SJL, revision 68644

Add support for custom scheme handling and virtual file systems to the OSX WebKit implementation.

2011-08-11 19:13 JC, revision 68643

Applied Paul's patch to make wxPizza scroolable in gtk+3

2011-08-11 14:21 SJL, revision 68642

2011-08-11 12:56 VZ, revision 68641

Use separate strings for stock labels with and without mnemonics. Obtaining the string without mnemonics by simply removing "&" characters from the string containing mnemonics doesn't work for some languages, notably Chinese where the convention is to use "Chinese Text (&M)" for the labels with "M" being the ASCII mnemonic and just "Chinese Text" and not "Chinese Text (M)" should be used if wxSTOCK_WITH_MNEMONIC flag is not specified. Fix the fundamental problem by using separate strings for the two cases. Translations still need to be updated to really correct the labels appearance.

2011-08-11 12:54 SJL, revision 68640

Fix typo in last commit

2011-08-11 12:49 SJL, revision 68639

Rename delegates to try and stop name clashes, probably with wxWebKitCtrl.

2011-08-11 10:43 SC, revision 68638

adjusting include styles

2011-08-11 10:43 SC, revision 68637

adjusting include styles

2011-08-11 10:42 SC, revision 68636

fixing osx_carbon

2011-08-11 10:24 SC, revision 68635

fixing osx_cocoa, there's a reason m_peer is private in the base class

2011-08-11 10:14 SC, revision 68634

fixing osx_cocoa

2011-08-11 02:39 DS, revision 68632

Fixed wxOSX build. Since r68621 dataview.cpp didn't compile anymore (at least with wxOSX-Carbon). Fixed by explicitly using wxDataViewItem's void * constructor in a few cases.

2011-08-10 23:57 VZ, revision 68631

Basque translations update from Xabier Aramendi.

2011-08-10 23:07 VZ, revision 68630

Also regenerate configure after wxWeb-related bakefile changes. Configure must be rebuilt after any changes to autoconf_inc.m4 but this wasn't done by the previous commit.

2011-08-10 22:25 JC, revision 68629

Added wxpizza_set_property and wxpizza_get_property for scroll policy

2011-08-10 22:11 JC, revision 68628

Added wxpizza_set_property and wxpizza_get_property

2011-08-10 20:32 SJL, revision 68627

Complete rebake with web libraries to allow easier testing.

2011-08-10 20:10 SJL, revision 68626

Merge in from trunk r64802 - r68625

2011-08-10 19:57 JC, revision 68625

Merged the trunk

2011-08-10 19:46 JC, revision 68624

Working on scrollable window. Dataview can be built with gtk+2.0

2011-08-10 17:24 VS, revision 68623

Add some basic tests for wxDataViewCtrl selection handling.

2011-08-10 17:24 VS, revision 68622

Fix selection handling wxDataViewMainWindow::ItemDeleted(). The code to update m_selection was too aggressive in the virtual list case, when it simply cleared it, and broken for single-item selection in the general case. Fixed to recompute selection properly.

2011-08-10 17:21 VS, revision 68621

Make the wxDataViewItem(void*) constructor explicit. Not having this as an implicit one made it possible to create wxDataViewItem from any pointer without realizing it, leading to hard to debug crashes later.

2011-08-10 16:06 JS, revision 68620

Added the ability to deselect attributes in the font dialog

2011-08-10 16:06 JS, revision 68619

Added the ability to deselect attributes in the font dialog

2011-08-10 08:46 JC, revision 68618

Working on scrollable window

2011-08-10 00:17 DS, revision 68617

Added NSApplicationDelegate's openFiles for wxOSX-Cocoa. openFiles (available since OS X 10.3) replaces using the openFile method. It allows for more convenient handling of multiple drops and knowing in advance how much files/folders are dropped instead of openFile with which you only get to respond to a single file/folder drop at a time. By default openFiles calls the newly added MacOpenFiles which calls MacOpenFile multiple times, so ordinarily the behaviour is backwards compatible (both on wxOSX Cocoa and Carbon). The openFile instance method has been removed because it doesn't seem to be called anymore: neither when dropping a single file on the application in the dock or Finder nor when passed as a command-line argument.

2011-08-09 21:19 JC, revision 68616

Re-baked to get rid of the wired symbols in samples Makefile.in

2011-08-09 17:46 VZ, revision 68614

Don't reset wxTLW::m_iconized when hiding the window in wxMSW. Calling Hide() on an iconized window wrongly reset its m_iconized flag but hiding the window shouldn't affect it. Closes #13373.

2011-08-09 13:35 VS, revision 68613

Don't use iterators with wxDataViewSelection. They aren't implemented when using wx's homegrown sorted containers and adding support is probably more trouble than it's worth. Fixes #13388.

2011-08-09 13:25 VZ, revision 68612

No changes, just correct the helpview sample name in comment. "printing.cpp" was used for whatever reason.

2011-08-09 03:35 LV, revision 68611

Scope comments in wxiOS test project -- further attempt to figure out how much exactly is done

2011-08-08 20:44 JC, revision 68607

Added GTK+3 support

2011-08-08 17:15 VZ, revision 68606

Don't manually centre dialogs created with default position in wxMSW. We always centered the dialogs on the main display which was wrong if the parent window was on another one. Instead of fixing it, simply don't centre them at all and let Windows position them, there is no reason to change the default behaviour. Closes #13387.

2011-08-08 17:12 SJL, revision 68605

Use shared pointers to hold wxWebHandlers throughout.

2011-08-08 16:24 SJL, revision 68604

Add wxWebView sample to documentation.

2011-08-08 16:03 SJL, revision 68603

Improve the detailed description in the documentation.

2011-08-08 14:18 SJL, revision 68602

Note that CanCut / CanCopy / CanPaste are not currently supported on the OSX WebKit implementation.

2011-08-08 14:12 SJL, revision 68601

Fix a bunch of spelling mistakes cause by an early commit.

2011-08-08 14:05 SJL, revision 68600

Add backend descriptions for all backends to the documentation.

2011-08-08 13:22 SJL, revision 68599

Add a section about async notifications to the documentation.

2011-08-08 12:23 VS, revision 68598

Check for invalid items in generic wxDataViewCtrl::GetSelections(). This shouldn't normally happen, but if some bug causes it, detect it.

2011-08-08 12:11 VS, revision 68597

Remove selection methods taking int from generic wxDataViewCtrl. Current public API uses wxDataViewItem, this code dated back to 2.8. They were now protected instead of public, the code wasn't used anywhere and wasn't portable, it existed only in the generic version.

2011-08-08 11:32 VZ, revision 68596

Added wxTopLevelWindow::MSWGetSystemMenu() method. Also generate events corresponding to WM_SYSCOMMAND messages for the custom items of the system menu. Add a small snippet to test the new functionality to the dialogs sample.

2011-08-08 11:32 VZ, revision 68595

Added private wxMenu::MSWNewFromHMENU() method. Add a method allowing creation of a wxMenu object from a native menu handle. This will be used to implement access to the system menu in an upcoming commit but could also be useful for other purposes.

2011-08-08 10:33 VZ, revision 68594

Fix compilation with g++ 4.7 (prerelease). The workaround for a bug in g++ 3.5 breaks compilation with 4.7 which implements two-phase lookup correctly, so disable this workaround for 4.7 and later. We could probably even only enable it for 3.x but this doesn't really matter as previous 4.x releases don't have problems with this anyhow. Closes #13385.

2011-08-08 09:41 JC, revision 68593

samples/animate works

2011-08-08 08:15 JC, revision 68592

Ported these two files to wxgtk3

2011-08-08 03:15 JC, revision 68591

Working on porting wxAdvance features from wxgtk2 to wxgtk3. wxBitmap needs to be fixed very soon to make it possible

2011-08-08 02:22 JC, revision 68590

Added buttion->event_window compatibility

2011-08-08 01:34 JC, revision 68589

Added anybutton.cpp to wxgtk3

2011-08-08 01:22 JC, revision 68588

Changed the test order of WXGTK=3 and WXGTK=2 in configure.in. So far wxgtk3 doesn't support gtkprint or gnomeprint

2011-08-08 01:19 JC, revision 68587

Added anybutton.cpp/anybutton.h

2011-08-07 21:31 VZ, revision 68586

Use 0 instead of NULL to avoid g++ warning. g++ (usefully) warns when assigning NULL to a non-pointer in wxGDIPlusRenderer. Just use 0 instead of NULL to avoid the warning.

2011-08-07 20:32 JC, revision 68585

Still use gtk2 drawing function to draw the size grip of statusbar. gtk3.0 equivalent function needs more effort to make it right

2011-08-07 20:19 JC, revision 68584

Added a Perl script to generate Makefile for samples supporting 'make -j8', i.e. concurrent make. See the comment in the code for more details

2011-08-07 19:29 VS, revision 68583

Use ChangeCurrentRow() in wxDataViewMainWindow::ItemDeleted().

2011-08-07 19:29 VS, revision 68582

Clean up wxDataViewMainWindow::ItemDeleted() a bit. Reuse shared code instead of duplicating it. No real changes.

2011-08-07 19:29 VS, revision 68581

wxDataViewSelection private type doesn't need to be exported.

2011-08-07 19:29 VS, revision 68580

Remove unused ItemList type from datavgen.cpp.

2011-08-07 17:32 PC, revision 68579

fix another use of GtkFixedChild

2011-08-07 11:24 SJL, revision 68578

Remove some out of date comments.

2011-08-07 11:19 SJL, revision 68577

Remove the WebView - wxWebViewWebKit map as our policy delegates already held a pointer to the control.

2011-08-07 10:51 JC, revision 68576

Fixed a GTK+ size_allocate bug. samples/minimal is working OK now

2011-08-07 01:02 JC, revision 68575

wxaui can be built

2011-08-06 21:37 JC, revision 68574

Moved files in src/gtk3 to src/gtk in order to browse easily in vim. They might be moved back in future

2011-08-06 15:55 SJL, revision 68573

Remove old WXCOCOA code.

2011-08-06 15:32 SJL, revision 68572

Implement GetSelectedSource for the OSX WebKit backend.

2011-08-06 14:58 SJL, revision 68571

Implement SelectAll for OSX WebKit.

2011-08-06 14:48 SJL, revision 68570

Implement GetPageText for the OSX WebKit implementation.

2011-08-06 14:20 SJL, revision 68569

Implement ClearSelection for the OSX WebKit backend.

2011-08-06 13:38 TIK, revision 68568

Handle positional printf arguments. Fixes #10965.

2011-08-06 09:15 JC, revision 68567

Migrated window resize grip drawing function from gtk2.0 to gtk3.0

2011-08-06 07:55 JC, revision 68566

Picked up the latest updates from trunk

2011-08-06 07:38 JC, revision 68565

Picked up the latest updates from trunk

2011-08-05 21:12 SJL, revision 68564

Remove string conversion functions and use the wx provided ones.

2011-08-05 21:02 VZ, revision 68563

Implement wxFileType::GetOpenCommand() in wxOSX. This method used to work in 2.8 but was unimplemented in 2.9. Restore more or less the old implementation using the data that we already have in wxMimeTypesManager anyhow.

2011-08-05 20:58 SJL, revision 68562

Remove redundant InternalLoadURL method.

2011-08-05 20:41 SJL, revision 68561

Remove now unnecessary comment.

2011-08-05 20:23 SJL, revision 68560

Remove SetPageTitle and GetPageTitle and make GetCurrentTitle actually return the page title.

2011-08-05 18:40 SJL, revision 68559

Implement GetBackwardHistory, GetForwardHistory and LoadHistoryItem for OSX WebKit.

2011-08-05 17:37 SJL, revision 68558

Implement ClearHistory using the built in WebBackForwardList rather than a shared WebHistory on OSX.

2011-08-05 15:56 SJL, revision 68557

Add a WebHistory to the OSX WebKit backend and implement ClearHistory.

2011-08-05 15:25 SJL, revision 68556

Remove now unused GetSelection from the OSX WebKit backend.

2011-08-05 15:17 SJL, revision 68555

Add undo / redo support to OSX WebKit.

2011-08-05 11:06 SJL, revision 68554

Add support for loading resources in custom schemes for the WebKitGTK+ backend.

2011-08-05 01:50 LV, revision 68553

wxNavigationCtrl wxiOS tests

2011-08-05 01:49 LV, revision 68552

wxNotebook support for non-system tabs

2011-08-05 01:49 LV, revision 68551

wxNotebook wxiOS InsertPage, DeletePage, DeleteAllPages tests

2011-08-05 01:48 LV, revision 68550

Increased wxiOS tests logging level

2011-08-05 00:53 VZ, revision 68537

Add support for wxHELP button to wxMessageDialog. Implement support for wxHELP for wxMSW, wxGTK and wxOSX/Cocoa (at least when showing the message box from the main thread, there doesn't seem to be any way to show more than three buttons with CFUserNotificationDisplayAlert() so "Help" button is not supported when using it). This is useful not only on its own, i.e. to allow the user to ask for help, but also because it brings the total number of buttons supported by the message dialog to 4, meaning that more choices can be offered to the user (which is rarely, but not quite never, useful).

2011-08-04 20:46 SJL, revision 68523

Add documentation for virtual file system support in wxWebView.

2011-08-04 18:12 VZ, revision 68522

Add missing header for minimalistic builds not using PCH. wxWindow might not be fully declared in dcbase.cpp but we need its full declaration for wxDCImpl::InheritAttributes() so explicitly include wx/window.h -- while this is usually already included from somewhere else it might not be in minimal builds with a lot of features disabled. Closes #13380.

2011-08-04 18:12 VZ, revision 68521

Compilation fixes for wxUSE_GEOMETRY==0 build. Add missing wxUSE_GEOMETRY checks to wxAffineMatrix2D-related code. Closes #13379.

2011-08-04 18:12 VZ, revision 68520

Use wxWindowMSW instead of wxWindow to fix wxUniv/MSW compilation. wxFindWindowAtPoint() only returns wxWindowMSW, not the derived wxWindow, in wxUniv build so assign its return value to wxWindowMSW to avoid compilation problems in it. Closes #12534.

2011-08-04 15:19 VZ, revision 68519

Avoid unwanted line break in wxDataViewListModel::GetCount() docs. Using "i.e." in the brief Doxygen comment makes it end it after the second period and results in truncated brief description and an unwanted line break in the full description. Just avoid using periods for now inside the brief description. Maybe a better solution could be found in the future.

2011-08-04 14:31 JS, revision 68518

Added Page Break control to spacing page

2011-08-04 14:31 JS, revision 68517

Added Page Break control to spacing page

2011-08-04 10:54 SJL, revision 68516

Update wxWebFileHandler to handle paths with fragments correctly, some backends pass this to the handler and some don't so we strip it if necessary.

2011-08-04 10:30 SJL, revision 68515

Fix recursion problems when loading pages from a virtual file system using the WebKitGTK+ backend. Navigating through pages in an archive now works correctly.

2011-08-04 02:49 LV, revision 68514

Some wxNotebook tests

2011-08-04 02:49 LV, revision 68513

wxTableCell checks for bitmap validity

2011-08-04 02:49 LV, revision 68512

Most UIButtons stopped showing themselves, sizeToFit reports (0; 0)

2011-08-03 20:51 SJL, revision 68509

Rename wxWebFileHandler name from test to file.

2011-08-03 20:31 SJL, revision 68507

Rework IE virtual file system support to use new syntax. Remove now unused code for resolving links ourselves, we can let the backend resolves them itself.

2011-08-03 17:46 JS, revision 68506

Return sensible major and minor version numbers for Mac OS X

2011-08-03 13:41 JS, revision 68505

Outline and line spacing can now be reset via the UI; format dialog layout improvements

2011-08-03 13:40 JS, revision 68504

Outline and line spacing can now be reset via the UI; format dialog layout improvements

2011-08-03 11:29 SJL, revision 68503

Initial work on virtual file system support for the WebKitGTK+ backend. It now supports loading single pages from the VFS system.

2011-08-03 02:45 VZ, revision 68502

Fix bug with TAB being able to switch focus between MDI frames. The keyboard navigation code correctly checked that TAB was not propagated above the TLW containing the window in which the key was pressed to avoid switching focus between different TLWs by pressing TAB. However wxMDIChildFrame is not a TLW and so it was possible to switch focus between two different MDI child frames by pressing TAB. This was unexpected and counterintuitive, especially because the frame receiving focus was not even activated (which might be another bug). Fix this by adding a new wxWindow::IsTopNavigationDomain() virtual method that can be overridden to indicate that a window is a self-contained "keyboard navigation domain" and that keyboard events shouldn't propagate outside of it and override it in both wxTopLevelWindow and wxMDIChildFrame to ensure that it behaves correctly.

2011-08-03 02:45 VZ, revision 68501

No real changes, just rename a variable. "focussed" spelling is unusual and inconsistent with "focused" used in many other places in the same file, so renamed "focussed_child_of_parent" and also use standard camelCase naming convention for it.

2011-08-02 22:23 RD, revision 68495

If -1 is passed to InsertItem for the imageIndex then don't set wxLIST_MASK_IMAGE

2011-08-02 21:49 RD, revision 68494

Initialize the native printer info for ConvertFromNative if it hasn't been done already.

2011-08-02 21:46 VZ, revision 68493

Don't un-maximize the window when Iconize(false) is called in wxMSW. Calling Iconize(false) on a maximized window restored it to its normal state instead of doing nothing as expected. Return immediately from Iconize() if the requested state is already the current one to avoid it. Closes #13373.

2011-08-02 21:46 VZ, revision 68492

Fix wxSocket::WaitForAccept() in blocking mode. When wxSocket::WaitForAccept() was called from another thread or on a socket with wxSOCKET_BLOCK flag it didn't work because it called wxSocketImpl::Select() with wxSOCKET_CONNECTION_FLAG which was only handled for the client sockets in this function. Handle it now for the server ones too, this should allow blocking server sockets to work again. Closes #12836.

2011-08-02 21:46 VZ, revision 68491

Remove documentation of non-existent wxTextAttr::CreateFont(). This method doesn't exist (only GetFont() does), so don't document it. Closes #13372.

2011-08-02 21:41 RD, revision 68490

Revert r68416 which should not have been committed to this tag.

2011-08-02 16:43 JS, revision 68489

Added semicolon needed by MSVC++ 6

2011-08-02 11:44 SJL, revision 68488

Implement HasSelection for the OSX WebKit backend.

2011-08-02 11:21 SJL, revision 68487

Add EnableHistory support to the OSX WebKit backend.

2011-08-01 19:57 SJL, revision 68485

Fix warnings for the OSX WebKit backend.

2011-08-01 19:41 SJL, revision 68484

Fix compilation for OSX backend.

2011-08-01 17:49 SJL, revision 68483

Add missing wxRTTI macros and fix incorrect ones.

2011-08-01 16:05 SJL, revision 68482

Hide the infobar in the sample if we start navigating to another page.

2011-08-01 15:20 SJL, revision 68481

Fix remaining warnings in ie backend.

2011-08-01 15:09 SJL, revision 68480

Fix all the unused variable warnings in the sample.

2011-08-01 14:54 SJL, revision 68479

Make web sample XPMs const to fix compiler warnings on gcc.

2011-08-01 14:35 SJL, revision 68478

Fix a couple of warning that crept back into the GTK backend.

2011-08-01 12:10 SJL, revision 68477

Add missing lines to setup.h.in. This properly fixes compilation under configure based environments. Also update the include guards for the wxWebHistoryItem files.

2011-07-31 17:37 SJL, revision 68474

Rework the GTK WebKit backend history to remove the need for the map between wxWebHistoryItems and WebKitWebHistoryItems.

2011-07-31 16:06 SJL, revision 68473

Split wxWebHistoryItem headers out into separate files for each backend. This will allow us to dramatically reduce the amount of code in the GTK history implementation and implement it and OSX history support more cleanly.

2011-07-31 15:25 VS, revision 68472

Silence Clang warning about numeric_limits<> specialization. libstdc++ (which is used by Clang) defines numeric_limits<> as a struct and Clang issues a warning about our specialization that uses 'class'. As libstdc++ developers have no intention of fixing this, silence the Clang warning by using 'struct' for it.

2011-07-31 15:25 VS, revision 68471

Disable symbols visibility support for the Clang compiler. Even Clang++ shipped with Xcode 4.1 still can't handle visibility of non-inline methods in exported template classes if the default visibility is 'hidden'. Disable visibility support for Clang for now, we'll revisit it in the future.

2011-07-31 14:19 VZ, revision 68470

Correct typo in wxArray::insert() fix of r68468. A wrong variable was mistakenly used. Closes #13371.

2011-07-31 12:50 SJL, revision 68469

Simplify the wxWebFileHandler code by using a map to store the query string and manipulate it.

2011-07-31 01:38 VZ, revision 68468

Fix crash in wxArray::insert() overload taking iterator range. The iterator passed as argument could be invalidated by the function itself, update it before using it. Closes #13371.

2011-07-30 23:54 VZ, revision 68467

Generate events with WXK_NONE Unicode keys for non-characters in wxOSX. The keyboard keys not corresponding to real characters, such as cursor arrows or function keys, must generate wxKeyEvents with WXK_NONE as Unicode key code to make it possible to distinguish them from the printable characters but wxOSX generated events with valid Unicode key codes for them instead. Avoid this by excluding Unicode key codes corresponding to code points in the Unicode private use area: while this doesn't seem to be documented anywhere, all non-printable characters seem to have their Unicode representation inside it. This change brings wxOSX keyboard event generation in line with the other ports and, as a side effect, also closes #12423.

2011-07-30 23:54 VZ, revision 68466

Avoid bogus focus loss event when wxTextCtrl is modified in wxOSX. A wxEVT_KILL_FOCUS event was generated when wxTextCtrl::WriteText() was called in wxOSX, even though the control didn't lose focus at all in this case. This was completely unexpected and thoroughly confused wxGrid code which closed the in place editor immediately after showing it because of this (this was perhaps only the case since r68319 but the changes there were correct so they only masked the real bug). Avoid this bogus event by remembering the NSView currently being programmatically modified and not doing anything in textDidEndEditing notification if it is generated for this view.

2011-07-30 23:54 VZ, revision 68465

Improve wxTextCtrl::GetNumberOfLines() unit test and documentation. First, enable execution of the Lines() wxTextCtrl unit test case under wxOSX as it passes since the fix in the previous commit. Do add a test for GetNumberOfLines() that currently doesn't work in the same way under all platforms -- but with this test we at least can be sure how does it work exactly where. Also mention the current discrepancy in this function behaviour in the documentation. See #12366. Fix Lines() wxTextCtrl unit test to pass under wxGTK too.

2011-07-30 23:54 VZ, revision 68464

Fix off by one error in wxTextCtrl::GetLineLength() in wxOSX. The trailing new line shouldn't be counted in the line length.

2011-07-30 23:54 VZ, revision 68463

Fix stock accelerators handling in wxOSX. No modifiers were used for stock accelerators, i.e. Append(wxID_NEW) resulted in an item with the label "New" and plain "N" as accelerator in wxOSX. This was due to wxACCEL_CMD not being handled in wxAcceleratorEntry::ToString() so map it to the same prefix as wxACCEL_CTRL there, this is enough to make the accelerators work even though it's not clear whether this is really the best thing to do or if we should use a separate "Cmd+" prefix for it (and recognize it in Parse() too then) as otherwise it's unclear why do we have wxACCEL_CMD at all, it just seems to be treated identically to wxACCEL_CTRL everywhere.

2011-07-30 19:40 VZ, revision 68462

Emphasize that wxStandardPaths must not be created directly. wxStandardPaths::Get() must be used instead as the correct object to use might have a different type. See #11239.

2011-07-30 16:22 SJL, revision 68461

Overhaul wxWebHandler naming to try and make it consistent with the rest of wxWidgets. Split wxWebFileHandler into its own file.

2011-07-30 13:30 VZ, revision 68460

Get rid of ugly wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST macro. Replace it with wxWindowWithItems<> template class which takes care of disambiguating between the two inherited Get/SetClientXXX() versions and use it as a base class in all clases that previously used the macro.

2011-07-30 13:30 VZ, revision 68459

Resolve ambiguity between GetClientXXX() methods in wxOSX wxComboBox. Use wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST for wxOSX/Cocoa too, not only for wxOSX/Carbon. This macro adds methods to explicitly disambiguate between the two inherited versions of each GetClientXXX() method, the one from wxItemContainer and the other one from wxEvtHandler. Closes #11637.

2011-07-30 13:26 SJL, revision 68458

Add new wxEVT_COMMAND_WEB_VIEW_TITLE_CHANGED event. Implement for all backends, extend the sample to demonstrate it and document. Also update some copyright notices.

2011-07-29 17:11 VZ, revision 68450

Add wxTextCtrl::PositionToCoords() functions for wxMSW and wxGTK. The new method allows to find the coordinates in pixels of the given character in a text control. Closes #13221.

2011-07-29 12:33 SJL, revision 68449

Add CombineURIs implementation for wxWebFileProtocolHandler. Update the IE backend to use it. Using the IE backend navigating through zip archives is now functional, including loading resources and links.

2011-07-28 19:22 PC, revision 68448

fix child allocations in size_allocate: can't use GtkFixedChild

2011-07-28 18:58 SJL, revision 68447

Tidy up the include guards for the various wxWebView header files.

2011-07-28 18:49 SJL, revision 68446

Move the wxWebFileProtocolHandler from the IE backend to the common source, add the RegisterProtocol method to all classes (as a stub in GTK and OSX). Register the file protocol handler in the sample for testing purposes.

2011-07-28 18:08 SJL, revision 68445

Initial implementation of wxWebProtocolHandler and wxWebFileProtocolHandler for the IE backend. This allows browsing of local files and files in zip archives when using a query string which specifies the protocol and path.

2011-07-28 07:35 PC, revision 68444

configuration and build fixes

2011-07-28 05:26 JC, revision 68443

Fixed a minor bug

2011-07-28 01:19 LV, revision 68442

wxMobile test(ing) project, created in order to make sure all features work on wxiOS

2011-07-28 01:19 LV, revision 68441

wxButton, wxTableCtrl fixes to support properties

2011-07-28 01:19 LV, revision 68440

Enforced GCC 4.2 on Xcode mobile projects

2011-07-27 14:35 JS, revision 68438

Compile fix

2011-07-26 23:37 VZ, revision 68437

Mention wxGTK wxAnimation implementation limitations in the docs. The native GTK implementation doesn't provide information about the frames count nor access to individual frames. See #13365.

2011-07-26 21:41 JC, revision 68435

Made wxgtk3 can also be built with gtk2

2011-07-26 19:43 JC, revision 68434

Removed unnecessary #ifdef

2011-07-26 18:41 JC, revision 68433

Merged to the trunk head

2011-07-26 18:11 SJL, revision 68432

Very basic implementation of IInternetProtocolInfo, this will allow us to correctly parse links in virtual file systems.

2011-07-26 17:34 JC, revision 68431

Merged to the trunk head

2011-07-26 17:23 JC, revision 68430

Merged to the trunk head

2011-07-26 15:45 SJL, revision 68429

Add a couple of missing forward declarations.

2011-07-26 15:14 SJL, revision 68428

We always let the user handle new window events so set the policy appropriately in the WebViewGTK+ backend.

2011-07-26 13:44 SJL, revision 68427

Fix compilation errors under OSX.

2011-07-26 13:31 VZ, revision 68426

Compilation fix: include wx/event.h from wx/containr.h. We now need wxEVT_XXX constants declarations in this file (at least when not wxHAS_NATIVE_TAB_TRAVERSAL) so include wx/event.h to fix PCH-less build of wxOSX.

2011-07-26 09:51 JC, revision 68425

Updated version number to 2.9.3. More src merges will be needed to catch up the head

2011-07-26 09:35 JC, revision 68424

Merged to the trunk head

2011-07-26 09:24 JC, revision 68423

Merged to the trunk head

2011-07-26 09:13 JC, revision 68422

samples/drawing compiled with wxgtk3

2011-07-26 01:31 DS, revision 68421

Fixed wxOSX-Cocoa compilation. OS X' wxComboBox::Init does not exist anymore since r68366 but an implementation still was present in combobox_osx.cpp which is used in Cocoa compilation. Removed the function.

2011-07-26 00:31 DS, revision 68420

Fixed containr.h compilation with gcc. At least apple-gcc 4.0 and 4.2 gave a compilation error on the three Connect calls in containr.h, insisting (unless using -fpermissive) on a declaration of Connect because there are no arguments to it that depend on a template parameter. Fixed by prepending BaseWindowClass to the Connect calls. Regression since r68363.

2011-07-25 20:57 RD, revision 68416

Initialize the native printer info for ConvertFromNative if it hasn't been done already.

2011-07-25 19:14 JC, revision 68403
  • D /wxWidgets/branches/SOC2011_GTK3/include/wx/gtk/dcclient_gtk2.h
  • D /wxWidgets/branches/SOC2011_GTK3/include/wx/gtk/dcmemory_gtk2.h
  • D /wxWidgets/branches/SOC2011_GTK3/include/wx/gtk/dcscreen_gtk2.h

Removed duplicated files

2011-07-25 18:54 SJL, revision 68402

Merge in from trunk r67662 to r64801

2011-07-25 17:43 SJL, revision 68401

Fix warnings in the MSW IE backend.

2011-07-25 17:19 SJL, revision 68400

We no longer need to veto the new window event in the sample as the behaviour has been unified across the ports.

2011-07-25 17:10 SJL, revision 68399

Link to urlmon from wxWeb to fix the compilation errors as we use CoInternetGetSession.

2011-07-25 16:30 SJL, revision 68398

Rename GetHref to GetURL in wxWebNavigationEvent, this brings it into line with the other functions in wxWebView.

2011-07-25 15:55 SJL, revision 68397

Add support for EVT_WEB_VIEW_NEWWINDOW to the OSX WebKit backend.

2011-07-25 15:37 SJL, revision 68396

Clarify what GetTarget actually returns in wxWebNavigationEvent.

2011-07-25 15:23 SJL, revision 68395

Update handling and documentation for new window events. Clarify that you must handle the event if you require an action, the default is for nothing to happen.

2011-07-25 12:46 SJL, revision 68394

Remove some now unused history variables.

2011-07-25 09:43 JC, revision 68393
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dc.cpp

Removed unnecessary files

2011-07-25 09:33 JC, revision 68392
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/gnome
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/hildon

Removed unnecessary files

2011-07-25 09:32 JC, revision 68391
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dnd.cpp

Removed unnecessary file

2011-07-25 09:27 JC, revision 68390

Merged more files from src/gtk3 to src/gtk

2011-07-25 08:32 JC, revision 68389
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dataobj.cpp
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/evtloop.cpp

Merged evtloop.cpp from src/gtk3 to src/gtk

2011-07-25 08:13 JC, revision 68388
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/bdiag.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/cdiag.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/cross.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/fdiag.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/horiz.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/verti.xbm

Removed duplicated image files

2011-07-25 08:07 JC, revision 68387

Merged win_gtk.cpp from src/gtk3 to src/gtk

2011-07-25 08:06 JC, revision 68386
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/win_gtk.cpp.old

Merged win_gtk.cpp from src/gtk3 to src/gtk

2011-07-25 08:06 JC, revision 68385

Merged win_gtk.cpp from src/gtk3 to src/gtk

2011-07-25 07:59 JC, revision 68384
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/menu.cpp

menu.cpp has been merged to src/gtk

2011-07-25 07:49 JC, revision 68383
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/renderer.cpp.old

renderer.cpp is not needed in src/gtk3

2011-07-25 07:48 JC, revision 68382

renderer.cpp is not needed in src/gtk3

2011-07-25 07:00 JC, revision 68381
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/minifram.cpp.old

minifram.cpp is not needed in src/gtk3

2011-07-25 07:00 JC, revision 68380

minifram.cpp is not needed in src/gtk3

2011-07-25 06:26 JC, revision 68379
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/glcanvas.cpp

glcanvas.cpp is not needed in src/gtk3

2011-07-25 06:19 JC, revision 68378
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/private.cpp.old

Removed unnecessary src/gtk3/private.cpp

2011-07-25 06:18 JC, revision 68377

Merged src/gtk3/private.cpp to src/gtk/private.cpp

2011-07-25 05:51 JC, revision 68376
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/descrip.mms
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/eggtrayicon.c
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/eggtrayicon.h
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/taskbar.cpp

Removed unnecessary files in src/gtk3

2011-07-25 03:10 JC, revision 68375

Merged settings.cpp from src/gtk3 to src/gtk

2011-07-25 03:10 JC, revision 68374
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/settings.cpp.old

Removed unnecessary file settings.cpp.old

2011-07-25 03:09 JC, revision 68373

Merged settings.cpp from src/gtk3 to src/gtk

2011-07-25 02:56 JC, revision 68372
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/clipbrd.cpp.old

Removed unnecessary file clipbrd.cpp.old

2011-07-25 02:55 JC, revision 68371

Merged clipbrd.cpp from src/gtk3 to src/gtk

2011-07-25 02:40 JC, revision 68370
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/cursor.cpp.old

Removed unnecessary file cursor.cpp.old

2011-07-25 02:40 JC, revision 68369

Merged cursor.cpp from src/gtk3 to src/gtk

2011-07-25 00:19 VZ, revision 68368

No changes, just remove unnecessary wxPickerBase::OnSize(). This method did the same thing as the base wxWindow class event handler. Also remove wxPickerBase event table which became empty after removing this method.

2011-07-25 00:19 VZ, revision 68367

Exclude windows not accepting keyboard focus from GTK focus chain. For some reason the test for AcceptsFocusFromKeyboard() wasn't done in the correct place when constructing the GTK focus chain and even windows returning false from it were still added to it. Do not do this any more, this prevents the windows which are really not meant to be focusable from keyboard (such as the pseudo-buttons in the generic implementation of wxSearchCtrl) from gaining focus unexpectedly. See #12808.

2011-07-25 00:19 VZ, revision 68366

Replace wxControlContainer-related macros with wxNavigationEnabled<>. Simply inherit classes which need to provide TAB navigation among their children from wxNavigationEnabled<> and remove the now unnecessary WX_DECLARE_CONTROL_CONTAINER() macros. Also remove WX_INIT_CONTROL_CONTAINER(), WX_DELEGATE_TO_CONTROL_CONTAINER() and WX_EVENT_TABLE_CONTROL_CONTAINER() which are not needed neither any more. And remove the event tables which became empty after removing the last macro.

2011-07-25 00:19 VZ, revision 68365

Don't give focus to wxSearchButton when using keyboard navigation. The search control buttons don't show that they have focus and are not meant to have it anyhow as they are more control decorations than real buttons and their functionality can be activated by pressing "Enter" or "Escape" already from the keyboard. But giving it to them made TAB behave unexpectedly and wrongly when wxSearchCtrl had focus. Override AcceptsFocusFromKeyboard() to return false to correct this. See #12808.

2011-07-25 00:19 VZ, revision 68364

Use wxNavigationEnabled<> for keyboard navigation in generic wxSearchCtrl. Derive generic wxSearchCtrl implementation from wxNavigationEnabled<> to ensure that TAB navigation works correctly in it. While it did work before for search controls without wxTE_PROCESS_ENTER style (because this wasn't handled by this control itself at all in fact), it stopped working as soon as this style was used in wxMSW because then the navigation was implemented by manually calling wxWindow::Navigate() and this requires wxControlContainer support. Use wxNavigationEnabled<> to easily add it to wxSearchCtrl. See #12808.

2011-07-25 00:19 VZ, revision 68363

Add wxNavigationEnabled<> helper for implementing TAB navigation. Provide a clean, public and documented way to implement proper TAB navigation for subwindows of a composite control: instead of using various ugly and never documented WX_XXX_CONTROL_CONTAINER macros it is now enough to simply inherit from wxNavigationEnabled<BaseClass> to do it. No real changes in the code as the new class is not used anywhere yet.

2011-07-24 22:52 JC, revision 68360
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/bitmap.cpp

Removed surplus backup files

2011-07-24 22:51 JC, revision 68359
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/pen.cpp.old

Removed surplus backup files

2011-07-24 22:50 JC, revision 68358
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/brush.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/colour.cpp.old

Removed surplus backup files

2011-07-24 22:39 JC, revision 68357

Fixed bugs in colour.cpp and cursor.cpp

2011-07-24 12:50 VZ, revision 68351

Ignore WM_CLOSE generated by wxMSW edit control when Escape is pressed. Multiline edit control posts WM_CLOSE to its parent window when Escape key is pressed inside it for some reason. This is unwanted as it totally bypasses our logic for only closing the dialog when Escape is pressed if there is a Cancel-like button in it, so suppress this behaviour by not letting the edit control to get Escape at all. Closes #12501.

2011-07-23 21:36 VZ, revision 68345

Mention that pages can't be added to wxBookCtrl more than once. Apparently some people expect this to work although it's really not meant to. See #13209.

2011-07-23 21:36 VZ, revision 68344

Don't try to pop from an empty stack in wxGDIPlusContext::PopState(). Using PopState() without a previous PushState() is an error but it shouldn't result in a crash, so add an assert guarding against it. Closes #13197.

2011-07-23 14:01 VZ, revision 68339

Remove mentions of wxCommandEvent from wxThreadEvent documentation. wxThreadEvent doesn't derive from wxCommandEvent any more so don't say that it does. Also fix some grammar/wording. Closes #13359.

2011-07-23 13:59 VZ, revision 68338

Don't create an unnecessary extra button in wxMSW wxProgressDialog. MSWCommonTaskDialogInit() now (probably since r67620) always creates a IDCANCEL button so don't create another one in wxProgressDialog code, just ensure that the one created by that function has the correct label (either "Cancel" or "Close"). Closes #13358.

2011-07-22 18:53 VZ, revision 68337

Set wxDidCreatePaintDC to true even if we reused a cached wxPaintDC. Reusing a cached wxPaintDC should count as painting the window, otherwise we could call DefWindowProc(WM_PAINT) if WM_PAINT was generated from inside EVT_PAINT handler (e.g. by calling wxWindow::Update()) and this validated the entire window and no painting was really done. In particular this fixes redrawing of wxStyledTextCtrl which does call Update() (completely unnecessarily AFAICS) from its EVT_PAINT handler when it wants to fully refresh itself. Closes #13345.

2011-07-22 18:32 VZ, revision 68336

Increased the version to 2.9.3. Simply ran misc/scripts/inc_release and changed build/bakefiles/version.bkl and rebaked everything afterwards.

2011-07-22 18:31 VZ, revision 68335

Update the files changed by the version number increment script. src/wxWindows.xcodeproj doesn't exist any more so remove it but add build/tools/bld_chm_exe.bat and samples/minimal/Info*.plist files.

2011-07-22 18:16 VZ, revision 68334

Added customizable wxDocManager::OnMRUFileNotExist() virtual method. This method can be overridden to customize the previously hard-coded handling of the case when a file selected from the MRU menu doesn't exist any more: we used to always remove it from the file history completely. This may, however, be inappropriate and, in fact, probably never, or very rarely, is the right thing to do when the file that we failed to open still exists. So never remove the file from the MRU if we failed to open an existing file (also don't give an error about it as it should have been already given by CreateDocument()) and, while we still do it for the non-existent files, allow to override this behaviour by overriding the new OnMRUFileNotExist() method.

2011-07-22 18:16 VZ, revision 68333

Several corrections to wxDocManager fields documentation. Remove non-existent wxDocManager::m_flags. Added correct m_lastDirectory declaration to go with its documentation instead of the duplicated m_fileHistory documentation. Better document the default m_maxDocsOpen value. Put all the documented fields in protected section as they're really protected and not public.

2011-07-22 18:16 VZ, revision 68332

Save and restore file history in docview sample. Show how the file history can be saved to and restored from wxConfig. This makes it much easier to test file history related stuff as the history doesn't need to be recreated during every sample run. It is also closer to what real applications using docview framework do as the file history is relatively useless if it's not saved.

2011-07-22 18:16 VZ, revision 68331

Allow passing the error value to wxStreamBase::Reset(). It can be useful to induce an error on the stream explicitly, e.g. because an incorrect value was read from it and we want to indicate it to the caller by setting stream error to wxSTREAM_READ_ERROR. Allow to do this by passing an optional error value to wxStreamBase::Reset(). Add an example of using the new functionality to the docview sample which needs it to be able to signal errors while reading the files. Also document this method that previously wasn't documented at all.

2011-07-22 15:08 JS, revision 68330

Fixed Replace() to use the passed range instead of current selection

2011-07-22 15:07 JS, revision 68329

Fixed Replace() to use the passed range instead of current selection

2011-07-22 14:49 VZ, revision 68328

Don't pass spin text control messages processed at wx level to Windows. Windows messages handled at wx level shouldn't be processed again at Windows level but we always passed the events forwarded by spin control "buddy" text window to its default window proc as we had no way to determine whether they were really handled or not. Now we do have a way to do, by using the newly added MSWHandleMessage(), so only pass the messages to default window proc if they hadn't been handled already. This notably suppresses the annoying beep which happened if Enter key was pressed in a wxSpinCtrl with wxTE_PROCESS_ENTER style (as used by the corresponding wxDataViewCtrl renderer, for example). It probably corrects some other bugs/discrepancies with the other ports in event handling in wxSpinCtrl too.

2011-07-22 14:49 VZ, revision 68327

Refactor wxWindow::MSWHandleMessage() out from MSWWindowProc(). This commit just refactors the code without changing anything in its behaviour and will be followed by the real changes in the next one. The new function just handles the message, without calling MSWDefWindowProc() if it wasn't handled. This allows to call it and determine whether the message was really handled and only continue processing it if it wasn't. Notice that while in theory this shouldn't be necessary because the return value of MSWWindowProc() should indicate whether the message was handled or not (0 meaning that it was, for most messages), in practice it doesn't work because many standard controls window procs return 0 even for message they do nothing with, e.g. "up down" control always returns 0 for WM_CHAR messages even it it only really handles the arrow keys.

2011-07-22 14:31 SJL, revision 68326

Implement basic support for virtual file systems for the ie backend. Registering a temporary namespace allows us to use the existing wxFileSystem work to load virtual files.

2011-07-22 11:34 SJL, revision 68325

Replace define for OLECMDID_OPTICAL_ZOOM with an enum to avoid errors in compilers that define it as such.

2011-07-21 15:50 VZ, revision 68324

Fix double deletion bug in wxGTK wxDVC dnd code. The row_draggable callback could blithely delete m_dragDataObject twice as it didn't reset it to NULL after deleting it the first time. Then, if the object wasn't changed in the meanwhile, e.g. because dragging was not allowed for this item, it tried to do it again when called the next time resulting in a crash. Closes #12538.

2011-07-21 15:50 VZ, revision 68323

Fix the alignment used by custom wxDVC renderers in wxGTK by default. Correctly initialize the alignment used by the text renderer used by wxDataViewCustomRenderer in wxGTK implementation of wxDataViewCtrl. Closes #12298.

2011-07-21 15:50 VZ, revision 68322

Send wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED for generic version too. Send this event when the column used for sorting changed in the generic implementation of wxDataViewCtrl too. Closes #13005.

2011-07-21 15:50 VZ, revision 68321

Fix drawing of expander columns not at 0 position in generic wxDVC. The drawing code in the generic version of wxDataViewCtrl incorrectly supposed that the expander column was always at position 0. This resulted in the expander column not being drawn at all if it was not really the first one. Fix the test to use wxDataViewCtrl::GetExpanderColumn() to correct this. Closes #12870.

2011-07-21 15:50 VZ, revision 68320

Correct test for maximal row index in generic wxDataViewCtrl. The comparison in EVT_CHAR handler was incorrect for an empty control without any rows as it subtracting 1 from 0 resulted in UINT_MAX and not -1 as all the values were unsigned. Fix this by checking that the new row is valid instead, this is correct for both signed and unsigned values. Closes #13356.

2011-07-21 15:50 VZ, revision 68319

Never restore focus to hidden child. Don't set focus to a hidden window in our focus management code, this never makes sense and results in apparent focus loss. It also fixes, as a side effect, a crash in wxGrid under wxMSW as the focus is not restored to the hidden grid editor any longer and so the code in its wxEVT_KILL_FOCUS handler that resulted in the crash is not executed any longer, see #13349.

2011-07-21 15:50 VZ, revision 68318

Allow marking wxTreeBook nodes to expand initially in XRC. Add new "expanded" attribute for XRC nodes of treebookpage class. Also update the sample and the XRC format documentation. Closes #13355.

2011-07-21 15:49 VZ, revision 68317

Make wxEnhMetaFileDC ctor from wxDC explicit. This avoids implicit conversion of any kind of wxDC to wxEnhMetaFileDC which is totally unexpected. See #13326.

2011-07-21 15:49 VZ, revision 68316

Fix parsing of negated long options in wxCmdLineParser. Negated long options were not recognized in wxCmdLineParser::Parse(), do check for them now. Also extend the unit test to check for negated options. Closes #13335.

2011-07-21 15:49 VZ, revision 68315

Reset negatable switches correctly in wxCmdLineParser::Reset(). The "negated" flag of wxCmdLineOption struct was not reset by Reset() so parsing a command line with a negatable option once influenced the result of parsing it the next time because the old value was kept. Do clear it now to allow calling Parse() several times without side effects.

2011-07-20 18:23 JS, revision 68314

No longer ignores first-line indent if no left indent specified

2011-07-20 18:23 JS, revision 68313

No longer ignores first-line indent if no left indent specified

2011-07-20 18:21 JS, revision 68312

Forgotten commit

2011-07-20 13:41 VZ, revision 68311

Don't use template member function in drawing sample to placate VC6. VC6 can't instantiate member template functions so get rid of it and use ugly dynamic casts in the non-template function to construct wxGCDC correctly. See #13327.

2011-07-20 08:36 SC, revision 68310

fixes redraw problems under OSX, see #13345

2011-07-20 00:36 VZ, revision 68309

Fix harmless gcc warning about uninitialized mask in PNG saving code. The mask was actually only used when it was initialized (or, conversely, the mask was always initialized when it was used) but gcc doesn't seem to notice this and still warns that mask components "may be used uninitialized in this function". Suppress the warnings by always initializing the mask, even if we don't use it. Closes #13333.

2011-07-20 00:35 VZ, revision 68308

Refresh the old current row when right clicking in wxDataViewCtrl. the generic implementation of wxDataViewCtrl left the old current still focused after selecting another row as current when it was right clicked. Fix this by refreshing the previously current row after unfocusing it. Closes #13330.

2011-07-20 00:35 VZ, revision 68307

Add wxDataViewEvent::IsEditCancelled() and support for vetoing edit events. Currently this is only implemented in the generic wxDataViewCtrl, the native GTK/OSX ports should be modified to support this later. Closes #13323.

2011-07-20 00:35 VZ, revision 68306

Fix deleting columns in wxGridStringTable with custom column labels. We erroneously removed too many elements from m_colLabels array (basically we always removed all the elements remaining after this column, irrespectively of the actual number of columns to delete), fix this by removing at most the specified number of columns -- or possibly less if the array isn't entirely filled. See #13329.

2011-07-20 00:35 VZ, revision 68305

Allow saving the drawing sample canvas to a file or clipboard. This allows to test wxMemoryDC and, under MSW, wxMetafileDC and also can be used to compare the output of different versions of the sample (possibly from different ports, too). Closes #13327.

2011-07-20 00:35 VZ, revision 68304

Added wxGCDC(wxEnhMetaFileDC) ctor too. Make it possible to create wxGCDC associated with a metafile DC in wxMSW too. Closes #13326.

2011-07-20 00:35 VZ, revision 68303

Fix keyboard navigation in wxGrid with hidden columns. The hidden columns (i.e. those whose size was set to 0) should be skipped when find the previous/next column to select when the user presses Left/Right cursor arrow keys in wxGrid, otherwise the focus could completely disappear as it was invisible when it was set to a hidden column. Closes #13281.

2011-07-19 19:56 SC, revision 68302

doing WakeUp in osx_carbon differently for the main event as well

2011-07-19 18:17 SC, revision 68301

make sure we can issue a WakeUp call that really triggers at the NSRunLoop level not only only CFRunLoop

2011-07-19 12:56 SC, revision 68300

fixing width/height (were negative) thanks to Werner Smekal

2011-07-18 21:36 VZ, revision 68299

Fix memory leak in wxPanel::SetBackgroundBirmap() in wxMSW. The brush allocated for the bitmap was never freed, do free it in dtor.

2011-07-18 11:46 SJL, revision 68298

Make callback names consistent

2011-07-18 11:37 SJL, revision 68297

Use the newer and recommended callback for handling navigation requests in WebKitGTK+.

2011-07-16 14:13 JS, revision 68288

VC++ 6 fixes

2011-07-16 13:22 JS, revision 68287

Added makefile from Steven

2011-07-16 12:05 VS, revision 68286

Add support for column header images to wxListCtrl XRC handler. Fixes #13319 (patch).

2011-07-16 12:04 VS, revision 68285

Fix wxListCtrlXmlHandler so that it accepts icon with wxLC_LIST and wxLC_REPORT styles too. Fixes #13319 (patch).

2011-07-16 12:04 VS, revision 68284

Fix wxXmlResourceHandler::GetImageList() to use specified size. Fixes #13319 (patch).

2011-07-16 12:04 VS, revision 68283

Add check to prevent creation of element wxXmlNodes with content data. Just like in the DOM, only text, ctype etc. nodes have textual content, elements don't. See #13297.

2011-07-16 08:57 SC, revision 68282

proper guard for bitmap constructors

2011-07-16 08:57 SC, revision 68281

fixing typo

2011-07-16 00:58 VZ, revision 68280

Implement wxRegion::Equal() for wxOSX. As there doesn't seem to be any native functions for comparing HIShapes, compute their differences to find out if they are equal. Closes #13339.

2011-07-16 00:58 VZ, revision 68279

Ensure we don't modify a shared object in wxOSX wxRegion::DoOffset(). Call AllocExclusive() before modifying the object. Closes #13338.

2011-07-16 00:58 VZ, revision 68278

No real changes, just use AllocExclusive() in wxOSX wxRegion. Don't fiddle with the reference count manually, just use the base class function doing it instead.

2011-07-15 20:49 SJL, revision 68277

Remove some code that shouldn't be in the interface file.

2011-07-15 17:22 SJL, revision 68276

Send correct navigation events when using SetPage on the IE backend, they now mimic Webkit.

2011-07-15 14:38 SJL, revision 68275

Add RunScript and implement on all backends. Document and add a very simple unit test.

2011-07-15 11:36 SJL, revision 68274

Add ClearSelection for msw ie and gtk webkit, with a stub for osx webkit. Document and add to unit tests.

2011-07-15 01:40 LV, revision 68273

Minimal wxScrolledWindow implementation

2011-07-15 01:40 LV, revision 68272

wxNotebook prints out view hierarchy when tab is changed

2011-07-14 21:31 SJL, revision 68271

Fix all the unit tests for gtk, they now all pass on msw with the ie backend and gtk with the webkit backend.

2011-07-14 16:02 SJL, revision 68270

Add unit tests for zoom functions

2011-07-14 15:33 SJL, revision 68269

Yield after control creation to allow it to load the initial page.

2011-07-14 15:19 SJL, revision 68268

Update web units tests so that they compile after api change.

2011-07-14 15:05 SJL, revision 68267

Fix compiler warnings in the IE backend.

2011-07-14 14:53 SJL, revision 68266

Update the web sample to allow choosing between different types of zoom, text or layout.

2011-07-14 13:14 SJL, revision 68265

Implement CanSetZoomType correctly for the IE backend.

2011-07-14 11:58 SJL, revision 68264

Overhaul IE zoom functions to support both text and optical zoom.

2011-07-14 03:45 LV, revision 68262

Minimal wxActionSheetDialog (was: wxMoActionSheet), wxAlertSheetDialog (was: wxMoAlertSheet) implementations

2011-07-14 03:45 LV, revision 68261

Replaced wxSegmentedCtrl implementation with IMPLEMENT_DYNAMIC_CLASS

2011-07-14 03:45 LV, revision 68260

Actual wxListBox item count

2011-07-14 03:45 LV, revision 68259

Separated wxSlider iOS bits

2011-07-14 03:45 LV, revision 68258

Missing iOS implementation files in bakefile

2011-07-14 03:45 LV, revision 68257

wxNotebook iOS implementation exposed (so wxSheetDialog could use it for showing sheets)

2011-07-14 03:45 LV, revision 68256

Removed '#define ClassA SomewhatRelatedClassB'

2011-07-14 03:44 LV, revision 68255

No code signing for now

2011-07-13 21:26 BGC, revision 68252

Fixed memory leak and access violation when releasing storyboards

2011-07-13 19:46 BGC, revision 68251

Added support for animating size and visibility Added wxLogLastError where appropriate Removed duplicate code from wxUIAnimationMSW Fixed warnings C4100 and C4239 wxSTORYBOARD_REPEAT_FOREVER can now be used on MSW as well

2011-07-13 19:25 SJL, revision 68250

Add GetPageText to MSW IE and to GTK WebKit. Add stub for OSX and document.

2011-07-13 17:30 SJL, revision 68249

Rename GetSelectedHTML to GetSelectedSource, this brings it into line with GetPageSource, and also with its intended use.

2011-07-13 17:28 BGC, revision 68248

Fixed build with wxUSE_STD_DEFAULT 0

2011-07-13 16:45 BGC, revision 68247

Fixed typo in files.bkl

2011-07-13 15:20 VZ, revision 68246

Add animation library to the list of all libraries in presets. This is necessary for the animation sample bakefile to work. Also document the need to do this in the tech note explaining how to add new libraries.

2011-07-13 15:19 VZ, revision 68245

Add USE_ANIMATION build option to config.bkl file. This option was used by multilib.bkl but never defined, so running bakefile failed. Do add it and define its default value as 1 for the formats not supporting conditions, such as MSVC IDE. Also mention the need to do this in the tech note explaining how to add new libraries.

2011-07-13 15:19 VZ, revision 68244

Remove non-existent ANIMATION_CMN_SRC variable from files.bkl. Bakefile complains when using a variable that is not defined. As there are currently no common animation sources, simply remove ANIMATION_CMN_SRC for now, it should be added back later if any common files do get added.

2011-07-13 15:19 VZ, revision 68243

No changes, just remove hard TABs. Hard TABs shouldn't be used in wxWidgets sources, including files.bkl file.

2011-07-13 10:32 VS, revision 68242

Better sizing in wxDataViewSpinRenderer and wxDataViewChoiceRenderer. Their GetSize() method used hardcoded size of (80,16). Instead, use GetTextExtent() to compute the size from content, as should be done. Add some extra room for editor control's extra parts. The space needed isn't computed exactly, as that would be quite convoluted (and in the end, most likely not 100% accurate even then), using a simple approximation instead.

2011-07-12 17:47 LV, revision 68241

Reenabled wxSizer positioning in demoframe's "Basic controls"

2011-07-12 17:47 LV, revision 68240

Background colors in demoframe

2011-07-12 17:47 LV, revision 68239

wxNotebook iOS now sends events on tab change

2011-07-12 17:47 LV, revision 68238

Fixed disclosure button

2011-07-12 11:13 VZ, revision 68237

Use native hint wxTextCtrl support in wxSearchCtrl. Instead of using broken emulation of the support for hints available in the text control, use the real wxTextCtrl::SetHint() for SetDescriptiveText() implementation in the search control. This looks better and, more importantly, fixes the bug when searching for the string equal to the current descriptive text searched for an empty string instead. Closes #13324.

2011-07-12 11:13 VZ, revision 68236

Centre wxSlider value correctly when wxSL_MIN_MAX_LABELS is not used. r68230 fixed the width of the value label in this case but not its position: it was left-aligned instead of being centered as it should be. See #13291.

2011-07-12 11:13 VZ, revision 68235

Document wxEnhMetaFileDC-related wxGraphics functions. Closes #13325.

2011-07-12 10:41 SJL, revision 68234

Update selection unit test to test GetSelectedHTML.

2011-07-12 01:54 LV, revision 68231

Various base classes, mobiledemo now runs

2011-07-12 00:49 VZ, revision 68230

Fix showing slider label in wxMSW when wxSL_MIN_MAX_LABELS was not used. wxSlider with wxSL_LABELS style but without wxSL_MIN_MAX_LABELS didn't show the current value because the width of the value label was 0. Fix this by always computing the widths of min and max labels and using the longest of them for the value label, even if we don't actually show them. Closes #13291.

2011-07-12 00:49 VZ, revision 68229

No real changes, just make some wxSlider members local variables. wxMSW wxSlider implementation stored the min and max labels widths as fields of wxSlider object for some reason even though they were only used in one of its methods (and can be easily computed anyhow). Make them simple local variables instead and also rename an existing local variable which started conflicting with their new names.

2011-07-12 00:49 VZ, revision 68228

Fix and improve documentation of wxT_2() macro. Documentation for wxT_2() applied to wxS() instead, fix this. Also correct the wording and add @since tags. Closes #13321.

2011-07-12 00:25 VZ, revision 68227

Don't handle "Return" key as "TAB" even when the default button is disabled. wxMSW used to handle VK_RETURN in the same way as VK_TAB if it wasn't consumed by the default push button but this didn't correspond to the native platform behaviour which considers pressing Return when the OK button is disabled an error and audibly notifies the user about it. Fix this by passing VK_RETURN to IsDialogMessage() if we don't translate it to a button click. Also add a possibility to test what happens when the default (or all) button(s) in the dialog are disabled to the dialogs sample.

2011-07-11 20:26 SJL, revision 68226

Implement GetSelectedHTML for the ie and gtk webkit backends and document.

2011-07-11 16:51 VZ, revision 68225

Copy recently added wxGenericValidator fields in Copy(). The pointers added in r68217 must be also initialized when creating a copy of the validator. Closes #13304.

2011-07-11 14:52 SJL, revision 68224

Fix various gtk webkit warnings.

2011-07-11 13:21 SJL, revision 68223

Tidy up the ie backend a little, make sure all com objects are correctly released.

2011-07-11 11:35 SJL, revision 68222

Fix warnings in the ie backend.

2011-07-11 03:37 LV, revision 68221
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/barbutton.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/button.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/buttonstrip.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/html/webkit.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/app.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/barbutton.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/bmpbutton.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/button.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/buttonstrip.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/defs.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/frame.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/gauge.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/app.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/barbutton.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/add_button_27x27.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/add_button_27x27.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/add_button_27x27.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/checkmark_15x15.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/checkmark_15x15.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/checkmark_15x15.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/delete_button_27x27.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/delete_button_27x27.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/delete_button_27x27.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/delete_button_rotated_27x27.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/delete_button_rotated_27x27.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/delete_button_rotated_27x27.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/detail_disclosure_27x27.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/detail_disclosure_27x27.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/detail_disclosure_27x27.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/disclosure_16x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/disclosure_16x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/disclosure_16x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphone.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphone.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphone.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphonebattery.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphonebattery.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphonebattery.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphonebattery_mono.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphonebattery_mono.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphonebattery_mono.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphone_icon.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphone_icon.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/iphone_icon.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/reorder_27x27.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/reorder_27x27.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/reorder_27x27.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/rotate_anticlock.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/rotate_anticlock.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/rotate_anticlock.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/rotate_clock.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/rotate_clock.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/rotate_clock.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_action_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_action_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_action_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_add_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_add_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_add_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_bookmarks_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_bookmarks_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_bookmarks_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_bookmarks_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_bookmarks_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_bookmarks_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_camera_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_camera_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_camera_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_compose_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_compose_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_compose_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_contacts_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_contacts_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_contacts_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_downloads_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_downloads_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_downloads_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_fastforward_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_fastforward_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_fastforward_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_favourites_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_favourites_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_favourites_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_featured_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_featured_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_featured_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_more_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_more_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_more_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_mostrecent_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_mostrecent_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_mostrecent_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_mostviewed_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_mostviewed_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_mostviewed_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_organize_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_organize_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_organize_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_pause_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_pause_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_pause_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_play_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_play_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_play_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_recent_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_recent_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_recent_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_refresh_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_refresh_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_refresh_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_reply_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_reply_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_reply_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_rewind_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_rewind_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_rewind_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_search_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_search_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_search_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_search_24x24.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_search_24x24.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_search_24x24.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_stop_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_stop_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_stop_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_trash_20x20.inc
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_trash_20x20.png
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/stock_trash_20x20.svg
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bitmaps/_regenerate-rasters.sh
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/bmpbutton.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/button.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/buttonstrip.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/defs.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/frame.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/gauge.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/keyboard.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/listbox.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/navbar.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/navctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/navitem.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/notebook.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/pagectrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/panel.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/scrollwin.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/searchctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/segctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/settings.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/sheets.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/simulator.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/slider.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/statbmp.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/stattext.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/switch.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/tabctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/tablecell.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/tablectrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/textctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/toolbar.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/utils.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/viewcontroller.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/vlbox.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/vscroll.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/webctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/wheelsctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/generic/window.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/keyboard.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/listbox.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/barbutton.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/buttonstrip.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/defs.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/keyboard.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/navbar.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/navctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/navitem.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/pagectrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/scrollwin.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/segctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/settings.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/sheets.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/tabctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/tablecell.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/tablectrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/viewcontroller.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/vlbox.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/vscroll.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/native/wheelsctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/navbar.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/navctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/navitem.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/notebook.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/pagectrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/panel.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/scrollwin.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/searchctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/segctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/settings.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/setup.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/sheets.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/simulator.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/slider.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/statbmp.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/stattext.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/switch.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/tabctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/tablecell.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/tablectrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/textctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/toolbar.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/utils.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/viewcontroller.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/vlbox.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/vscroll.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/web/iehtmlwin.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/web/wxactivex.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/webctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/wheelsctrl.h
  • D /wxWidgets/branches/SOC2011_WXIOS/include/wx/mobile/window.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/navbar.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/navctrl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/navitem.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/checkbox.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/core/private.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/barbutton.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/buttonstrip.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/navbar.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/navctrl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/navitem.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/pagectrl.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/private/navctrlimpl.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/private/tablecellimpl.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/private/tablectrlimpl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/segctrl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/tabctrl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/tablecell.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/tablectrl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/viewcontroller.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/iphone/wheelsctrl.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/notebook.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/osx/toolbar.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/pagectrl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/segctrl.h
  • M /wxWidgets/branches/SOC2011_WXIOS/include/wx/slider.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/tabctrl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/tablecell.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/tablectrl.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/viewcontroller.h
  • A /wxWidgets/branches/SOC2011_WXIOS/include/wx/wheelsctrl.h
  • M /wxWidgets/branches/SOC2011_WXIOS/samples/mobile/demo/demoframe.cpp
  • M /wxWidgets/branches/SOC2011_WXIOS/samples/mobile/demo/demoframe.h
  • M /wxWidgets/branches/SOC2011_WXIOS/samples/mobile/demoios.xcodeproj/project.pbxproj
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_app_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_barbutton_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_bmpbutton_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_buttonstrip_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_button_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_frame_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_gauge_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_keyboard_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_listbox_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_navbar_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_navctrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_navitem_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_notebook_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_pagectrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_panel_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_scrollwin_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_searchctrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_segctrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_settings_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_sheets_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_simulator.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_slider_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_statbmp_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_stattext_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_switch_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_tabctrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_tablecell_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_tablectrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_textctrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_toolbar_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_utils_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_viewcontroller_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_vlbox_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_vscroll_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_webctrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_wheelsctrl_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/mo_window_g.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/generic/simulator.pjd
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_barbutton_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_buttonstrip_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_keyboard_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_navbar_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_navctrl_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_navitem_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_pagectrl_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_scrollwin_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_segctrl_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_settings_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_sheets_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_tabctrl_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_tablecell_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_tablectrl_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_viewcontroller_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_vlbox_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_vscroll_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/native/mo_wheelsctrl_n.mm
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/web/iehtmlwin.cpp
  • D /wxWidgets/branches/SOC2011_WXIOS/src/mobile/web/wxactivex.cpp
  • M /wxWidgets/branches/SOC2011_WXIOS/src/osx/iphone/navctrl.mm
  • M /wxWidgets/branches/SOC2011_WXIOS/src/osx/iphone/notebook.mm
  • M /wxWidgets/branches/SOC2011_WXIOS/src/osx/iphone/pagectrl.mm
  • M /wxWidgets/branches/SOC2011_WXIOS/src/osx/iphone/tablecell.mm
  • M /wxWidgets/branches/SOC2011_WXIOS/src/osx/iphone/tablectrl.mm
  • M /wxWidgets/branches/SOC2011_WXIOS/src/osx/iphone/toolbar.mm

Finished moving wxMo classes to wx prefix, "samples/mobile" builds (but does not link as of yet :-))

2011-07-10 20:11 SJL, revision 68220

Add support for retrieving the currently selected text. Implement on all backends, document and unit test.

2011-07-10 16:20 SC, revision 68219

support multi-line labels, add different native styles for buttons as we did for bitmap buttons

2011-07-10 14:55 VZ, revision 68218

Use the correct event handler in wxMenuBase::UpdateUI(). Use GetWindow() instead of GetInvokingWindow() to send the event to the associated window for the menus that are part of the menu bar and not only the popup ones. This was broken since r64127 because GetInvokingWindow() is now only used for the popup menus. Closes #13317.

2011-07-10 01:37 VZ, revision 68217

Support float, double and file name values in wxGenericValidator. Currently these values can only be read from/written to wxTextCtrl but support for other controls (e.g. wxSpinCtrlDouble for float/double) could be added in the future. Closes #13304.

2011-07-10 01:37 VZ, revision 68216

No changes, just use NULL instead of 0 for pointers. Initialize pointers with NULL in wxGenericValidator. See #13304.

2011-07-10 01:37 VZ, revision 68215

Generate events for two auxiliary mouse buttons in wxGTK. Add code to generate wxEVT_AUXN_XXX events to wxGTK. Closes #13310.

2011-07-10 01:37 VZ, revision 68214

Mention that wxNotebook page must be removed before reparenting it. At least in wxGTK it is necessary to remove the page from the notebook first as reparenting it doesn't work otherwise currently. This should ideally be fixed but in the meanwhile at least document it. See #13305.

2011-07-10 01:37 VZ, revision 68213

Check for GTK window parent, not wx one, when reparenting. A notebook page removed from its notebook can have a non-NULL wx parent but not have any parent at GTK level any longer, so test for the window parent at GTK level before removing the widget from it, otherwise we were getting GTK asserts when trying to remove a window from its no-more-parent. See #13305.

2011-07-10 01:36 VZ, revision 68212

Refresh the generic wxDataViewCtrl header if it was made too small. Although normally the control header is not supposed to be resized below its minimal vertical size, sometimes this can still happen and in this case ugly artefacts were displayed because it wasn't refreshed properly. Do refresh it to avoid them. Closes #13313.

2011-07-10 01:36 VZ, revision 68211

Show extra mouse buttons and wheel state in the text sample output too. Do it for consistency, as the state of all the other buttons is already shown, and also to have some place for testing this functionality. Closes #13309.

2011-07-10 01:36 VZ, revision 68210

Don't duplicate wxImage::ConvertToDisabled() in wxAUI code. Just reuse the existing function. Also add an example of showing a disabled bitmap to the aui sample. Closes #13303.

2011-07-10 01:36 VZ, revision 68209

Output something from the console sample even if it's ran without arguments. Running console sample without parameters didn't do anything by default and didn't output anything neither which was presumably rather confusing. Do output a welcome message at least to indicate that something happened. Closes #13299.

2011-07-10 01:36 VZ, revision 68208

Immediately update MSW cursor when ::SetCursor(wxNullCursor) is called. The cursor was previously reverted to the default one only when a next mouse event was received. Do it immediately now to e.g. avoid showing the busy cursor when the program is not busy any more. Closes #12961.

2011-07-10 01:36 VZ, revision 68207

Fix wxMSW wxSlider best size calculation and label layout. The best size calculation was wrong as the min/max labels height was unnecessarily added to the slier total height even if though these labels are positioned alongside the slider itself in horizontal layout case. The slider also managed to position its value label completely outside the space allocated to it (and the bug in DoGetBestSize() might have been an attempt to work around this), don't do this any more. This also fixes the wrongly centered vertical position of the min/max labels. Closes #13291.

2011-07-10 01:36 VZ, revision 68206

Make coordinates transformations in wxDC really maximally precise. Use the maximal device space extent supported by Win32 GDI and only decrease it if the scale is so small that keeping the device space extent maximal would result in overflowing the int range for the logical space. This makes coordinate translations exact even for huge coordinates, while they could be significantly wrong before due to the integer rounding errors. Closes #13284.

2011-07-10 01:09 LV, revision 68205

mobile demo without wxMo class usage

2011-07-10 01:09 LV, revision 68204

Removed wxMo classes, moved implementation bits to wx namespace

2011-07-10 01:09 LV, revision 68203

Absolute positioning on some controls

2011-07-10 01:09 LV, revision 68202

Some wxMoTableCell properties

2011-07-10 01:09 LV, revision 68201

UITableView does not accept subviews

2011-07-10 01:09 LV, revision 68200

wxMoButton now shows up

2011-07-10 01:05 LV, revision 68199

Additional preprocessor check to separate Cocoa and iOS builds

2011-07-09 21:45 VZ, revision 68198

Mention that wxCB_SORT is not supported in wxGTK 2.8. See #4398.

2011-07-09 20:50 BGC, revision 68197

Added support for repeating storyboards The storyboard will now fire events when starting/finishing

2011-07-09 20:40 JC, revision 68196

Added Robin Dunn's explanation on the relationship of wxBitmap and wxImage into interface doxygen section

2011-07-09 16:31 SJL, revision 68195

Add start of selection api, support for HasSelection, SelectAll and DeleteSelection along with documentation. Implement for IE and WebKitGTK and add stubs for OSX WebKit.

2011-07-09 08:37 SC, revision 68194

avoid scrolling to cleared-non existing- data, reload before, fixes #13318

2011-07-08 21:34 SJL, revision 68193

Add the ability to enable / disable and check for the editable property of a rendering engine. Implement for all three backends and extend the sample, document and unit test.

2011-07-08 20:28 BGC, revision 68192

MSW/MAC OS X implementation for property based animations

2011-07-08 16:46 SJL, revision 68191

Factor out url loading logic into a separate function to reduce repetition.

2011-07-08 16:35 SJL, revision 68190

Add tests for the back and forward history lists.

2011-07-08 16:21 SJL, revision 68189

Add unit tests for history clearing and enabling / disabling.

2011-07-08 15:11 SJL, revision 68188

Add tests for url and history support

2011-07-08 12:51 SJL, revision 68187

Add tests for the page title

2011-07-08 10:31 JC, revision 68186

Merged wxBitmap from src/gtk3 to src/gtk

2011-07-08 10:19 SJL, revision 68185

Add scaffolding for wxWebView unit tests.

2011-07-08 03:59 JC, revision 68184

Trying to port wxBitmap

2011-07-07 17:10 JC, revision 68183

Merged src/gtk3/pen.cpp to src/gtk/pen.cpp.

2011-07-07 17:04 JC, revision 68182

Merged src/gtk3/brush.cpp to src/gtk/brush.cpp.

2011-07-07 16:58 JC, revision 68181

Merged src/gtk3/colour.cpp to src/gtk/colour.cpp. GdkColormap is disabled

2011-07-07 15:05 VZ, revision 68180

Add wxDCImpl::MSWApplyGDIPlusTransform() to formalize wxRendererMSW hack. Replace the dynamic_cast<> used in wxMSW wxRenderer implementation code with a virtual function call.

2011-07-07 15:05 VZ, revision 68179

Make wxGCDC::GetGraphicsContext() const. There is no reason for this accessor to not be const and it prevents other methods using it from being const too, so change this.

2011-07-07 01:24 JC, revision 68178
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/aboutdlg.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/animate.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/app.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/artgtk.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/assertdlg_gtk.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/bmpbuttn.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/bmpcbox.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/button.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/calctrl.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/checkbox.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/checklst.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/choice.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/clrpicker.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/collpane.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/colordlg.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/combobox.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/control.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dataview.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dialog.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dirdlg.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/filectrl.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/filedlg.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/filehistory.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/filepicker.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/font.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/fontdlg.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/fontpicker.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/frame.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/gauge.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/hyperlink.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/infobar.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/listbox.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/mdi.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/mnemonics.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/msgdlg.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/nativewin.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/notebook.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/popupwin.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/print.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/radiobox.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/radiobut.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/region.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/scrolbar.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/scrolwin.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/slider.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/sockgtk.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/spinbutt.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/spinctrl.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/statbmp.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/statbox.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/statline.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/stattext.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/textctrl.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/textentry.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/tglbtn.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/timer.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/toolbar.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/tooltip.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/toplevel.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/treeentry_gtk.c.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/utilsgtk.cpp.old
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/window.cpp.old

Remove old backup files from src/gtk3

2011-07-07 00:51 JC, revision 68177

Added 'draw' signal to window.cpp

2011-07-06 23:15 JC, revision 68176

Merged region.cpp from src/gtk3 to src/gtk

2011-07-06 18:58 JC, revision 68175

Added more cairo-based region code

2011-07-06 13:02 SC, revision 68174

allow NULL parent menu

2011-07-06 12:20 SJL, revision 68173

Implement cut / copy / paste in osx webkit and fix the function stubs.

2011-07-06 11:45 SJL, revision 68172

Add some more missing stubs to the osx webkit backend.

2011-07-06 09:24 JC, revision 68171

Added cairo_region_t based wxRegion implementation

2011-07-05 19:06 SJL, revision 68170

Add stubs to osx webkit backend to allow compilation.

2011-07-05 17:33 SJL, revision 68169

Simplify backend enum naming, we do not need separate values for gtk and osx webkit backends. Simplify factory creation code.

2011-07-05 16:19 SJL, revision 68168

Remove comment about a new frame api as this is now offered.

2011-07-05 15:57 SJL, revision 68167

Bring osx class naming into line with the other ports.

2011-07-05 15:40 SJL, revision 68166

Remove out of date osx defines.

2011-07-05 13:06 SJL, revision 68165

Add osx configure support for wxWebView.

2011-07-05 11:22 CE, revision 68164

for 2.9.2

2011-07-05 00:12 JC, revision 68163

Fixed a crash bug in wxGTK control.cpp

2011-07-04 23:39 VZ, revision 68162

Tag 2.9.2 release.

2011-07-04 23:26 VZ, revision 68161

Improve the description of the available files in readme. Be more clear about what is provided. Add more URLs, everybody likes to click them.

2011-07-04 23:16 VZ, revision 68160
  • D /wxWidgets/tags/WX_2_9_2

Remove 2.9.2 tag before recreating it. There was another change that should be in 2.9.2 since then.

2011-07-04 23:13 VZ, revision 68159

Remove the note about wxUSE_STD_CONTAINERS. We finally didn't switch to using the standard containers by default so don't leave misleading information in the change log (this should have been part of r67735).

2011-07-04 23:10 VZ, revision 68158

Create tag WX_2_9_2

2011-07-04 23:09 VZ, revision 68157

Fix crash when getting or setting wxComboBox value in wxUniv. Forward DoGetValue() and SetValue() to the associated wxTextCtrl. Closes #13298.

2011-07-04 20:46 SJL, revision 68156

Factor logic that returns an IHTMLDocument2 into a separate function to reduce repetition.

2011-07-04 20:27 SJL, revision 68155

Filter out subframes from the ie backend history and the sample. Also document that many wxEVT_COMMAND_WEB_VIEW_LOADED events may be sent, one for each frame.

2011-07-04 19:22 VZ, revision 68154

Fix event types in wxMouseEvent::Aux1DClick() and Aux1DClick(). wxEVT_AUX[12]_UP were wrongly used instead of the correct wxEVT_AUX[12]_DCLICK. Closes #13308.

2011-07-04 18:43 VZ, revision 68153

Fix warnings about implicit double to int conversions in propgrid. Use wxRound() instead of implicit casts to convert double to int. This not only avoids warnings (e.g. when using g++ with -Wconversion) but also should be (marginally) more precise.

2011-07-04 18:43 VZ, revision 68152

Fix harmless warning about double to long long conversion. Work around g++ -Wconversion warning by writing out the casts explicitly. A better solution would be to have wxLongLong::FromDouble() static function but it would have to be done after 2.9.2.

2011-07-04 17:04 LV, revision 68151

wxMoWebCtrl (wxWebKitCtrl iPhone) implementation

2011-07-04 17:04 LV, revision 68150

Minimal wxMoListBox (wxListBox iPhone) implementation

2011-07-04 17:04 LV, revision 68149

Minimal wxMoSegmentedCtrl implementation

2011-07-04 16:05 VZ, revision 68148

Suppress some harmless warnings about unused parameters in wxOSX.

2011-07-04 16:05 VZ, revision 68147

Also accept VT_R4 (float) VARIANTs in wxMSW OLE code. We don't support creating VT_R4 VARIANTs as wxVariant can only contain double, not float, but we can still at least accept them on input.

2011-07-04 13:34 SJL, revision 68146

Add a note to the documentation about the emulation modes of the ie backend.

2011-07-04 11:03 VZ, revision 68145

Fix crash in wxDataViewProgressRenderer in non-Unicode build. We can't use the column pointer in wxDataViewProgressRenderer ctor as it's not set yet, so postpone setting the renderer label until later in non-Unicode build which needs the font used by this column to do the conversion to UTF-8.

2011-07-04 11:02 VZ, revision 68144

Add wxUSE_UNICODE guard around wxDF_UNICODETEXT in the sample. Unicode text is not supported in non-Unicode builds.

2011-07-03 21:20 LV, revision 68143

Absolute control positioning in demoframe as a temp. solution

2011-07-02 22:44 LV, revision 68142

Minimal wxMoPageCtrl implementation

2011-07-02 22:44 LV, revision 68141

Fixed view positioning

2011-07-02 22:44 LV, revision 68140

Use out-of-the-box UIView hierarchy printing method

2011-07-02 19:11 SJL, revision 68138

Add web documentation category.

2011-07-02 18:41 SJL, revision 68137

Get the page title from the IHtmlDocument rather than the bowser as it actually returns the title rather than the url.

2011-07-02 18:24 SJL, revision 68136

Overhaul the wxWebView documentation. Split the documentation into sections and add documentation for clipboard and history functions. Add documentation for wxWebHistoryItem. Fix many spelling mistakes. Alphabetise the function names. Add missing svn properties.

2011-07-02 17:07 SJL, revision 68135

Implement undo and redo for the ie and gtk webkit backends. Extend the sample to show their use.

2011-07-02 16:33 LV, revision 68134

wxMoTableCtrl OnSelectRow event implementation

2011-07-02 16:33 LV, revision 68133

Minimal wxMoBitmapButton implementation

2011-07-02 16:33 LV, revision 68132

Variable initializers in wxMoTableCell::Init

2011-07-02 16:33 LV, revision 68131

More wxMoTableCell properties implemented

2011-07-02 16:32 SJL, revision 68130

Implement clipboard api in gtk.

2011-07-02 13:45 SJL, revision 68129

Add new clipboard api and support for it in the ie backend. Also extend the sample to demonstrate the new functions.

2011-07-02 12:29 VZ, revision 68128

No real changes, just remove trailing commas from enum. wxCompositionMode enum had a trailing comma not allowed by C++ 98 (and which would result in warnings or errors with g++ pedantic switch).

2011-07-02 12:29 VZ, revision 68127

Add wxCOMPOSITION_INVALID mode and use it to simplify the code. Having an invalid element in wxCompositionMode enum allows to directly return it from TranslateRasterOp() function instead of needing a separate bool parameter to indicate that a ROP couldn't be translated. This also incidentally fixes warnings about possibly uninitialized variables in optimized g++ builds.

2011-07-02 12:29 VZ, revision 68126

Avoid g++ warnings about breaking strict aliasing rules in wxTreeCtrl. The standard TreeView_GetItemRect() macro resulted in warnings about breaking strict aliasing rules as it passed a variable of one type via a pointer to another one. Fix this by using a union and our own custom macro instead.

2011-07-02 11:55 LV, revision 68125

Minimal wxMoTableCtrl implementation

2011-07-02 11:54 LV, revision 68124

Fixed strange 40 px offset for wxMoNavigationCtrl navbar

2011-07-02 11:54 LV, revision 68123

Some methods of wxMoNavigationCtrl

2011-07-01 21:46 SJL, revision 68122

Implement extended history api in gtk

2011-07-01 19:44 PC, revision 68121

Don't cause scroll events for position changes from SetScrollbars, broken in r67326. Fixes #13301

2011-07-01 12:57 SJL, revision 68120

Extend history api using the ie backend to include loading history items, and getting the backward and forward history lists.

2011-07-01 12:01 SJL, revision 68119

Use shared pointers throughout when managing history with the ie backend, simplifying memory management. Also add more comments explaining how the history is managed.

2011-07-01 09:54 SJL, revision 68118

Add an extra assert in the case of trying to load an invalid history item

2011-06-30 23:31 VZ, revision 68117

Mention the EOL issue in readme.txt. Emphasize that building Windows archives under Unix *or vice versa) is not supported.

2011-06-30 21:57 SJL, revision 68116

Add support for the new history functions to the ie backend. For this we manage our own history as there are no suitable built-in ways of managing it.

2011-06-30 17:07 SJL, revision 68115

Only send a document complete event when the page is completely loaded, as opposed to with every frame. This brings the event in to line with what is emitted by webkit.

2011-06-30 15:20 CE, revision 68114

update docs for windows checkout process 2/2

2011-06-30 15:17 CE, revision 68113

update docs for windows checkout process 1/2

2011-06-30 14:20 VZ, revision 68112

Initialize variable in UTF{16,32} conversion code to avoid warnings. In optimized build g++ warned about the second element of two-element array passed to encode_utf16() being possibly uninitialized. This wasn't really the case but change the code just to avoid the warnings.

2011-06-30 14:20 VZ, revision 68111

Work around bogus g++ warnings about possibly missing return. OS X g++ warned that "control may reach end of non-void function" in wxRichTextHelpInfo::ShowHelp(). This wasn't really the case but change the function logic slightly to (hopefully) suppress the warning.

2011-06-30 14:20 VZ, revision 68110

Fix harmless warning about unused variable in isosurf sample. Don't declare and initialize a variable that we never use.

2011-06-30 14:20 VZ, revision 68109

Fix warning about hiding a virtual function in propgrid sample. The virtual ColourToString() method was hidden and not overridden in the sample because it didn't use the last argument of the base class method. Fix this in the most straightforward (albeit not necessarily the most correct) way to at least ensure that the function is really overridden.

2011-06-30 12:03 SJL, revision 68108

Add basic history api and implement it under gtk.

2011-06-30 06:54 LV, revision 68107

Minimal wxMoNavigationCtrl and wxMoViewController

2011-06-30 03:02 LV, revision 68106

Window subview hierarchy function improved

2011-06-30 03:02 LV, revision 68105

Minimal wxMoNotebook implementation (now sort of works)

2011-06-30 03:02 LV, revision 68104

Minimal wxMoSearchCtrl implementation

2011-06-30 03:02 LV, revision 68103

wxSearchCtrl OSX now checks whether menus are enabled

2011-06-30 03:02 LV, revision 68102

Removed big parts of wx library from the iOS Xcode project in order for it to build faster

2011-06-30 03:01 LV, revision 68101

Minimal wxMoTectCtrl implementation

2011-06-29 19:50 VZ, revision 68100

Change the loop condition to avoid comparing unsigned value with 0. This resulted in (useful) g++ warning and didn't make any sense in any case. Check for the loop variable value being 0 at the end of the loop instead now. If the old code was correct it shouldn't change its behaviour and if not, this might fix a bug.

2011-06-29 19:50 VZ, revision 68099

Always initialize SelectInHDC::m_hgdiobj in wxMSW. Leaving m_hgdiobj uninitialized probably didn't result in any problems considering how this class is currently used but it did result in g++ warnings about uninitialized member with aggressive warning flags and also could easily become a problem in the future so just ensure that we always initialize it.

2011-06-29 19:50 VZ, revision 68098

Fix two harmless gcc warnings about missing initializers. Add values to make g++ -Wmissing-field-initializers warnings (implicitly enabled by -Wextra) go away.

2011-06-29 19:50 VZ, revision 68097

Mention that readme.txt needs to be updated before a release. Hopefully this means it won't be forgotten the next time. Also mentioned that the new docs.wxwidgets.org link should be now already created when the release is being done.

2011-06-29 19:50 VZ, revision 68096

Add a tiny script for producing HTML documentation archives. Also update the release making document to point to it.

2011-06-29 19:50 VZ, revision 68095

Fix typo in error message about incorrect syntax. Output the error to stderr, not a file called "2".

2011-06-29 19:49 VZ, revision 68094

Update the readme file for 2.9.2. Just increment version number and year in a couple of places.

2011-06-29 18:09 SJL, revision 68093

Give the sample a more sensible initial size for web browsing

2011-06-29 18:04 SJL, revision 68092

Adjust animation size to fit the toolbar properly

2011-06-29 14:03 SJL, revision 68091

Update the sample to show how to block navigation and new window events

2011-06-29 13:33 CE, revision 68090

fix misisng html format files

2011-06-29 11:27 SJL, revision 68089

Update the web sample to use images from the art provider if possible. Scale existing images down to 24x24 so that this fit better with the art provider images.

2011-06-29 11:22 VZ, revision 68088

Updated copyright year before 2.9.2 release. Use 2011 instead of 2010 in the manual and in several .plist files.

2011-06-29 10:46 CE, revision 68087

2.9.2-rc1 in file

2011-06-29 10:37 VZ, revision 68086

Replace stc.{h,cpp} with the generated versions with all their typos. Revert the changes of r67280 which fixed several typos in these files as they were getting modified each time gen_iface.py was rerun and we don't want to touch the original Scintilla files to fix these typos.

2011-06-29 10:37 VZ, revision 68085

Generate code using IsOk() instead of Ok() in stc.cpp. Modify the script generating this file itself to produce IsOk() instead of Ok(). This replaces the changes of r67681 which only modified the generated file.

2011-06-29 10:27 SJL, revision 68084

Add support for loading a url in the constructor to the ie backend and update the sample to use it.

2011-06-29 10:09 SJL, revision 68083

Add support for new window events in gtk

2011-06-29 03:07 LV, revision 68082

Minimal wxMoGauge implementation

2011-06-29 03:07 LV, revision 68081

Minimal wxMoNotebook implementation

2011-06-29 03:07 LV, revision 68080

Minimal wxMoButton implementation

2011-06-29 03:07 LV, revision 68079

Minimal wxMoSwitchCtrl implementation

2011-06-29 03:07 LV, revision 68078

Minimal wxMoSlider implementation

2011-06-29 03:07 LV, revision 68077

Minimal wxMoStaticText implementation

2011-06-28 19:24 VS, revision 68076

Move wxThreadEvent into wxBase. For this, it cannot derive from wxCommandEvent. Extracted the bits from wxCommandEvent useful for passing data between threads into wxEventBasicPayloadMixin helper class shared by both.

2011-06-28 19:06 SJL, revision 68075

Don't use a depreciated method for loading a url.

2011-06-28 18:57 SJL, revision 68074

Bring gtk class naming into line with the new naming scheme by dropping the gtk part.

2011-06-28 18:11 SJL, revision 68073

Update msw files to use the new definitions

2011-06-28 17:15 SJL, revision 68072

Fix the build system in gtk, plus a couple of compilation errors. wxWebView now successfully builds under gtk and the sample runs correctly.

2011-06-28 15:46 LV, revision 68071

window.mm sets random bg colors for debugging purposes

2011-06-28 15:23 LV, revision 68070

Attempts to show wxNotebook tabs

2011-06-28 15:23 LV, revision 68069

Debug function for recursive UIWindow subview tree printing

2011-06-28 15:23 LV, revision 68068

Use whole screen for UIWindow

2011-06-28 15:23 LV, revision 68067

Xcode demo project now includes iphone impl. files for easier building

2011-06-27 18:58 LV, revision 68057

Minimal wxNotebook iOS implementation, demo doesn't crash

2011-06-27 13:03 LV, revision 68056

Dummy wxNotebook iOS implementation

2011-06-27 13:03 LV, revision 68055

Reenable disabled iOS capabilities

2011-06-27 13:03 LV, revision 68054

Deprecated accessors, obscure defines

2011-06-27 13:03 LV, revision 68053

Check existence of parent

2011-06-27 13:03 LV, revision 68052

wxMo implementation files temp. moved to the demo project

2011-06-27 02:09 VZ, revision 68051

Add support for child documents to docview framework. Child documents are virtual documents corresponding to parts of their parent document which can't be saved nor loaded independently of their parent and are closed when the parent is closed. This finally makes some use of wxDocument::m_documentParent field which was always present in the docview code but never used before.

2011-06-26 03:33 JC, revision 68050

Minor changes

2011-06-26 01:12 JC, revision 68049

Fix a minor bug so that sample/minimal can build again

2011-06-26 00:23 JC, revision 68048

--with-gtk=2 and --with-gtk=3 both build OK

2011-06-25 22:03 JC, revision 68047

Renamed files so that this new branch can build with gtk+2. I have to keep the gtk+2 build always OK when merging the gtk+3 to gtk+2

2011-06-25 09:16 SC, revision 68046

bringing target naming in line with other projects

2011-06-25 02:15 RD, revision 68045

Paper size fix for wxOSX-cocoa

2011-06-24 20:41 SC, revision 68044

adapting to new wx

2011-06-24 20:39 SC, revision 68043

adapting to new wx

2011-06-24 20:37 SC, revision 68042

fixing iphone condition

2011-06-24 20:36 SC, revision 68041

new projects for mobile

2011-06-24 20:35 SC, revision 68040

new projects for mobile

2011-06-24 20:34 SC, revision 68039

new projects for mobile

2011-06-24 15:11 VZ, revision 68037

Fix code reading from the pipe stream in exec sample. Backport of r68036 from trunk, see #13290.

2011-06-24 15:10 VZ, revision 68036

Fix code reading from the pipe stream in exec sample. We must be reading bytes, not (wide) characters. Closes #13290.

2011-06-24 14:37 SC, revision 68035

backport xcode changes

2011-06-24 14:37 SC, revision 68034

backport xcode changes

2011-06-24 14:13 SC, revision 68033

backport xcode changes

2011-06-24 14:09 SC, revision 68032

backport xcode changes

2011-06-24 14:09 SC, revision 68031

backport xcode changes

2011-06-23 22:44 SJL, revision 68030

Fix a number of mingw compile errors.

2011-06-23 18:05 SC, revision 68029

adaption to new configurations

2011-06-23 10:02 VZ, revision 68028

Update printing sample to compile again after r68026. The sample was using Initialize() overload that doesn't exist any longer, use InitializeWithModality() instead.

2011-06-23 00:58 VZ, revision 68027

Fix bug with out of range date in wxMSW wxDatePickerCtrl under XP too. The bug fix of r67990 relied on DateTime_SetSystemtime() returning FALSE if setting the date failed but, unfortunately, this function doesn't behave correctly under XP (and presumably earlier systems) and returns TRUE even if it didn't actually change the date because it was out of range. Implement an alternative solution not relying on this function return value but simply checking the range ourselves.

2011-06-23 00:58 VZ, revision 68026

Restore wxPreviewFrame::Initialize(void) and add InitializeWithModality(). The changes of r67619 changed the signature of the virtual Initialize() method and in doing so broke the existing code overriding it. Avoid this problem by restoring the old method signature and adding a function with a different name providing the new functionality. Also notice in the documentation that there is no real need to override Initialize() in any case (but this doesn't change the fact that there is existing code that does do it). See #13108.

2011-06-23 00:58 VZ, revision 68025

Use strdup() even in strict ANSI mode with MinGW. MinGW headers define MSVC-compatible _strdup() even in strict ANSI mode so we can always use it with MinGW. This fixes a linking problem when wx itself was built without strict ANSI but the program using it does use strict ANSI mode (e.g. due to the use of -std=c++0x g++ option).

2011-06-23 00:57 VZ, revision 68024

Avoid crash on startup when using single mode in docview sample. The view doesn't have any associated frame when using the special "single view" mode in the sample, so don't try to show it when creating a new view. This resulted in a crash when starting the sample with --single command line parameter.