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-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.