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):

2012-01-31 18:37 SC, revision 70487

revert to using Update()

2012-01-31 16:00 SC, revision 70486

reenabling an Update where necessary

2012-01-31 14:09 VZ, revision 70485

Fix wxHTTP::SetPostBuffer() compilation in ANSI build. wxString::mb_str() returns a raw pointer and not wxScopedCharBuffer when wxUSE_UNICODE==0 so fix the code to do it differently in this case.

2012-01-31 14:09 VZ, revision 70484

Don't document wxVector<>::reverse_iterator. Documenting just this class but not iterator (and const_iterator) is inconsistent but documenting all of them is too much mostly useless work as all iterators (of the same category) have the same interface anyhow. So just remove the documentation of reverse_iterator for now. See #2585.

2012-01-31 14:09 VZ, revision 70483

Remove dummy Lithuanian translations. All non-translated strings were "translated" as their English originals in lt.po. This was just a artefact of the software used for translation and wrong, so remove all these dummy translations.

2012-01-31 08:30 PC, revision 70482

handle theme change which changes window border width

2012-01-30 17:30 SC, revision 70481

attempt to isolate which Update() calls are necessary at all, as they cause performance issues under OSX

2012-01-30 17:25 SC, revision 70480

always setting the event object to the menu, see #1595

2012-01-30 17:05 SC, revision 70479

fixing the routing of UpdateUI to the window by just passing NULL as source

2012-01-29 09:49 PC, revision 70478

move SetPangoAttrsForFont to wxFont, should have been part of r70475

2012-01-29 09:35 PC, revision 70477

use GTKSetPangoAttrs in wxCairoContext

2012-01-29 09:14 PC, revision 70476

move Pango underline workaround into wxFont::GTKSetPangoAttrs

2012-01-29 09:00 PC, revision 70475

move SetPangoAttrsForFont to wxFont

2012-01-28 14:37 SC, revision 70474

use translatable strings as format template for menu lines

2012-01-28 14:31 SC, revision 70473

adding OSX to the platforms which do the ui update upon menu open

2012-01-25 16:10 JS, revision 70465

Added further API for intercepting deletion and content insertion Added simple implementation of locked objects to sample

2012-01-25 11:33 SC, revision 70464

structure code to Cocoa's possibilities, allows tool windows with just a caption and no buttons

2012-01-25 07:39 BP, revision 70463

Added more conveniently placed 'List of All Members' link on all class doc pages in the header summary (using JS).

2012-01-25 01:10 VZ, revision 70462

Fix return value of wxMBConvUTF8::FromWChar(). Apply the same fix as was done in r68694 for ToWChar() to FromWChar(): it also returned an off by 1 value when not using MAP_INVALID_UTF8_NOT. Closes #13400.

2012-01-25 01:05 VZ, revision 70461

Update wxCommandProcessor after saving wxDocument. Surprisingly, wxCommandProcessor::MarkAsSaved() method was never called by wxDocument so saving the document didn't update wxCommandProcessor dirty status. Do add a call to MarkAsSaved() now, this allows wxCommandProcessor to track its status correctly (and actually more correctly than the dirty status of the document which becomes "dirty" after doing and undoing an operation after saving it, unlike wxCommandProcessor::IsDirty() which correctly returns false in this case).

2012-01-25 01:05 VZ, revision 70460

Fix wxCommandProcessor::IsDirty() result after undoing everything after save. IsDirty() returned false when all commands were undone after saving even though it clearly should have returned true in this case. Fix this and add comments explaining what happens in this method. Closes #2862.

2012-01-25 01:05 VZ, revision 70459

Don't compare invalid iterators in wxCommandProcessor::IsDirty(). Check that m_lastSavedCommand is valid before comparing it with m_currentCommand as comparing invalid iterators results in an assert in STL build (and probably should also result in an assert in non-STL build too for consistency). Also move IsDirty() implementation out of line to make it easier to modify it further in the future and because there is no real reason to keep it inline. Closes #13465.

2012-01-25 01:05 VZ, revision 70458

Forward declare wxFont in wx/gtk/private.h. This fixes compilation in STL build (for some strange reason it doesn't affect the default build however).

2012-01-25 01:05 VZ, revision 70457

Minor fixes to wxDataViewCtrl::HitTest() in wxGTK. Initialize the return parameters with invalid values and use const_cast<>. See #12582.

2012-01-25 01:04 VZ, revision 70456

Set the initial size of the expanded ribbon panel correctly. We need to set the client size of the frame showing the panel to the panel size and not the full frame size. Closes #13850.

2012-01-24 23:17 VZ, revision 70455

Fix setting frame icon when using non-standard icon sizes in wxMSW. Set the closest (and larger, if possible) icon if the icon of exactly the system icon size is not available. This fixes setting the icons when using custom DPI settings under MSW as the standard icon size may be different from the standard 32*32 in this case. This also improves wxIconBundle::GetIcon() to make its behaviour when the icon with exactly the given size is not found more flexible as a side effect. Closes #13891.

2012-01-24 22:50 VZ, revision 70454

Append all items at once during wxChoice creation in wxMSW. Appending all items at once is more efficient than doing it one by one in the loop 9probably because of CB_INITSTORAGE that we send in this case). Closes #13899.

2012-01-24 19:07 PC, revision 70453

add strike-through font support to wxGraphicsContext on GTK

2012-01-23 22:06 SC, revision 70452

adding missing stubs

2012-01-23 15:42 VZ, revision 70451

Add unit test verifying compilation of various wxFont ctors. Check that various invocations of wxFont ctor at least compile to avoid problems like the ones fixed by r70450.

2012-01-23 15:42 VZ, revision 70450

Fix wxButtonToolBar compilation after adding new wxFont ctor overload. The new wxFont ctor added in r70445 resulted in ambiguity when using wxFont(int, wxFontFamily, wxFontStyle, int) ctor mixing the type-safe values for the 2nd and 3rd arguments with "untyped" int for the 4th one. Fix this by avoiding the use of this ctor as it seems impossible to do it in any other way.

2012-01-23 14:59 VZ, revision 70449

Add a property to configure file property dialog kind. Add wxPG_FILE_DIALOG_STYLE allowing to pass wxFileDialog style that should be used by the given wxFileProperty. This notably allows to have file properties accepting not yet existing files, as is needed when using them for the file names to be saved, not opened. Closes #13894.

2012-01-23 13:33 VZ, revision 70448

Fix wxTextAttr::m_fontStrikethrough initialization. The code added in r70447 didn't initialize m_fontStrikethrough correctly. This fixes unit test failures for wxRichTextCtrl that appeared since this change. See #9907.

2012-01-23 12:28 VZ, revision 70447

Implement support for stricken-through fonts in markup parser. Now that we have strike-through support in wxFont, implement support for <s> tag in the markup parser. See #9907.

2012-01-23 12:28 VZ, revision 70446

Add support for stricken-through fonts. Support stricken-through fonts in wxMSW and wxGTK (including special support in wxStaticText and wxTextCtrl). Closes #9907.

2012-01-23 12:28 VZ, revision 70445

Add wxFont ctor taking a single flags argument instead of style/weight/... Currently this ctor just does the same thing as the existing ctors in a different way but it will be extended to support wxFONTFLAG_STRIKETHROUGH in the next commits. See #9907.

2012-01-23 12:28 VZ, revision 70444

Fix wxAffineMatrix2D::Translate() to multiply on the left. The affine transform was previously multiplied by the translation matrix on the right but this was incompatible with both the MSW version of the same method and all the other methods of the generic version. So multiply the transform by the translation on the left, as everywhere else. Closes #13875.

2012-01-23 12:28 VZ, revision 70443

Fix incorrect scroll positions used in SetScrollbars(). SetScrollbars() passed its input positions expressed in scroll units to CalcUnscrolledPosition() which takes positions in pixels. This was definitely wrong so don't do this and perform the conversion from scroll units to pixels in SetScrollbars() itself for clarity instead. It's not clear what concrete bugs, if any, does this fix as the calculated positions are almost never used anyhow but the old code was obviously incorrect and the new version has a chance of not being wrong so it's already an improvement. Closes #9988.

2012-01-23 12:28 VZ, revision 70442

Add check for wxFileCtrl dependency on wxDateTime to wx/chkconf.h. Enable wxDateTime if it's disabled but wxFileCtrl is enabled as the latter needs the former, at least in the generic version. Closes #12821.

2012-01-23 12:28 VZ, revision 70441

Fix incorrect cast resulting in a warning in wxMSW wxMenu code. Menu id is a 32 bit UINT value, even in 64 bit builds, so don't cast it to UINT_PTR. Closes #13815.

2012-01-23 12:28 VZ, revision 70440

Avoid warnings about mismatched format string in wxMSW wxClipboard code. Cast the string offsets to "unsigned" explicitly, even though they can be 64 bit (whereas unsigned is 32 bits) under Win64, the strings we operate with here shouldn't be more than 4GiB long. See #13815.

2012-01-23 12:27 VZ, revision 70439

Update OS X toolkit names list in wxwin.m4. There is no more "mac" toolkit in 2.9, we have "osx_carbon" and "osx_cocoa" instead (and also "osx_iphone" but it's not used with configure so far). Closes #13817.

2012-01-23 12:15 SC, revision 70438

using existing member

2012-01-22 18:31 SN, revision 70437

Fixed typo in variable name, fixing #13872.

2012-01-22 18:27 SN, revision 70436

Fixed typo in variable name, fixing #13872.

2012-01-22 01:58 VZ, revision 70434

Added a simple benchmark of wxLogDebug() and wxLogTrace(). Measure time taken by these calls when the debug/trace messages are not enabled. See #11829.

2012-01-22 01:58 VZ, revision 70433

Create wxStaticText with correct label directly in wxTextSizerWrapper. This is shorter and arguably more clear than doing it in two steps as we did before and also works in wxUniv, unlike creating wxStaticText with empty label and setting it later. Closes #13858.

2012-01-21 18:03 VZ, revision 70432

Fix reparenting generic wxSpinCtrl. The existing Reparent() implementation was wrong as it reparented spin control subwindows under the new parent but left the main window itself under the old one. Fix this by just not overriding Reparent() at all, the inherited version works just fine for this control. Closes #13849.

2012-01-21 01:53 DS, revision 70430
  • D /wxWidgets/trunk/demos/forty/makemac6.mcp
  • D /wxWidgets/trunk/samples/dnd/dndM7.mcp
  • D /wxWidgets/trunk/samples/docview/docviewM7.mcp
  • D /wxWidgets/trunk/samples/erase/makemac6.mcp
  • D /wxWidgets/trunk/samples/grid/griddemoM7.mcp
  • D /wxWidgets/trunk/samples/html/about/aboutmac6.mcp
  • D /wxWidgets/trunk/samples/html/help/makemac6.mcp
  • D /wxWidgets/trunk/samples/html/test/makemac6.mcp
  • D /wxWidgets/trunk/samples/html/virtual/virtualmac6.mcp
  • D /wxWidgets/trunk/samples/image/makemac6.mcp
  • D /wxWidgets/trunk/samples/internat/makemac6.mcp
  • D /wxWidgets/trunk/utils/helpview/src/HelpviewM7.mcp

deleted CodeWarrior project files

2012-01-21 01:01 DS, revision 70429

Fixed mismatch in amount of format specifiers in Japanese translation for i18n sample. The translation was missing a %s, copied the translation from the same string at samples/internat/ja/internat.po.

2012-01-21 00:18 VZ, revision 70419

Update the message catalog charset expected by the unit test. The charset of the message catalog files changed to UTF-8 in r70411 but the unit test still expected ISO-8859-1. Update the unit test too to make it pass again.

2012-01-20 23:11 VZ, revision 70418

Fix time zone in wxDateTime::UNow(). The internal wxDateTime representation is in the UTC, so use wxGetUTCTimeMillis() in UNow(), using wxGetLocalTimeMillis() made it inconsistent with Now() and wrong. Really closes #13862.

2012-01-20 23:11 VZ, revision 70417

Ensure wxCharTypeBuffer data is NUL-terminated after extend() call. As wxCharTypeBuffer ctor taking the length NUL-terminates the buffer, it may be expected that extend() does the same but it did not. Do add the NUL at the end for consistency, even though it's not really needed for the existing code using extend() in wxWidgets itself. Closes #13885.

2012-01-20 23:11 VZ, revision 70416

Fix documentation of wxConfig::Read(float*) overload. Grouping methods using "//@{" and "//@}" apparently doesn't work and completely wrong documentation is used in this case, so document the two overloads separately, as it's done for the other methods. Closes #13884.

2012-01-20 23:11 VZ, revision 70415

Add error checking when retrieving client data from wxMSW wxListBox. Verify if retrieving client data failed which might happen if the index is invalid for example. This makes code more robust and also consistent with wxChoice. Closes #13883.

2012-01-20 23:11 VZ, revision 70414

Check that an error really occurred when getting wxChoice data in wxMSW. We could wrongly return NULL client data if -1 was stored as client data in wxChoice because it's the same value as CB_ERR and we always interpreted it as an error, while it may not be one if GetLastError() doesn't indicate it. See #13883.

2012-01-20 23:11 VZ, revision 70413

Destroy modeless wxGenericAboutDialog when it is closed. Don't leave the wxGenericAboutDialog object alive when non-modal about dialog (as can be used under GTK and OS X) is closed. This is wasteful and, worse, resulted in the program not exiting after such a dialog was shown because it counted as a remaining open top level window. This also fixes the same bug in wxGTK when using GTK+ 2.4.

2012-01-20 17:51 DS, revision 70412

Removed ellipsis from "About..." occurrences. MS and Apple guidelines mention ellipses should generally be used when a command needs additional information from the user before the operation can execute. This is not the case for showing an about dialog so the ellipses have been removed.

2012-01-20 17:33 DS, revision 70411

Changed .po files to use UTF-8 charset. Changing the localisation files to be in UTF-8 allows them to be committed by the pre-commit hook script. Also regenerated relevant .mo files.

2012-01-20 13:35 VZ, revision 70410

Reset next wxMenu event handler in wxUniv when detaching it from wxMenuBar. A detached menu must not send its events to the menu bar that it isn't part of any longer. Closes #2620.

2012-01-20 13:30 VZ, revision 70409

Try to avoid truncation of the message in wxMSW wxMessageDialog. Use (documented but undefined) TDF_SIZE_TO_CONTENT flag under Windows Vista/7 to reduce the chance that Windows truncates or ellipsizes the message text if it can't wrap it. Truncation can still happen for very long words but there doesn't seem to be any drawbacks to using TDF_SIZE_TO_CONTENT and it does avoid truncation in at least some cases. This also improves the situation for wxRichMessageDialog and wxProgressDialog. Closes #13843.

2012-01-20 13:22 VZ, revision 70408

Add SetPostBuffer(wxMemoryBuffer) and SetPostText() to wxHTTP. This allows to post binary data or text data in e.g. UTF-8 encoding (which is by far the most common case) easily. Deprecate the existing SetPostBuffer(wxString) as it didn't explicitly specify the encoding to use for the data to be posted. Closes #13870.

2012-01-20 13:22 VZ, revision 70407

Added wxMemoryBuffer::Clear() and IsEmpty() methods. Add two convenient methods which may be used instead of testing or setting the buffer length.

2012-01-19 23:17 VZ, revision 70406

Respect image mask in the docview sample. Draw images with transparency, if any. See #13881.

2012-01-19 16:09 SC, revision 70405

adapting to new raw_control

2012-01-19 16:06 SC, revision 70404

fixing m_axe access indices

2012-01-19 16:01 SC, revision 70403

guard against invalid color ref

2012-01-19 16:01 SC, revision 70402

solving include order problems for stl and xti

2012-01-19 15:59 SC, revision 70401

use better backward compatibility for menu_open, don't autoenable

2012-01-19 15:06 SC, revision 70400

guard against invalid color ref

2012-01-19 15:04 SC, revision 70399

solving include order problems for stl and xti

2012-01-19 10:50 SC, revision 70398

attempt for workaround for stl forward declaration problems

2012-01-19 10:45 SC, revision 70397

gcc 4.3 issues warning if type attributes are given again - even if they are identical - therefore comment them out

2012-01-19 10:00 SC, revision 70396

gcc 4.3 issues warning if type attributes are given again - even if they are identical - therefore comment them out

2012-01-19 09:55 SC, revision 70395

adding unix defaults

2012-01-19 00:12 VZ, revision 70394

Skip EVT_RIGHT_UP event in wxHtmlWindow if it wasn't handled. This fixes generation of EVT_CONTEXT_MENU for mouse clicks in wxHtmlWindow under MSW: it wasn't generated before because we always ate the right mouse clicks. Closes #2465.

2012-01-19 00:10 DS, revision 70393

replaced _T() usage with wxT()

2012-01-18 20:42 VZ, revision 70392

Avoid needless second string conversion when adding files to memory FS. Create the buffer holding the result of conversion instead of converting twice, once to only get the length of the result and the second time to get the data. Closes #13877.

2012-01-18 20:14 BP, revision 70391

Gave proper spacing to header include sections.

2012-01-18 19:00 DS, revision 70390

Synchronised svn:eol-style and svn:executable properties of some file types. Changed the properties of the following file types: .am .m4: LF .plist .plist.in: native .guess .sh .sh.in .sub: LF, executable

2012-01-18 18:55 DS, revision 70389

merged libpng 1.5.7 to trunk

2012-01-18 18:39 DS, revision 70388

tagged libpng 1.5.7

2012-01-18 18:37 DS, revision 70387

Upgraded to libpng 1.5.7 (without contrib subdirectory). Also re-added some files that went missing while updating to 1.5.6 (that update was based on the .zip release which contains different files compared to the .tar.gz release).

2012-01-18 18:26 VZ, revision 70386

Don't auto-link with 3rd party libraries in DLL build using MSVC. It's unnecessary to link with these libraries as they're already embedded inside our DLLs and the functions from them can't be used anyhow as they're not declared as DLL-exported in the libraries headers.

2012-01-18 15:19 SC, revision 70385

fixing RTTI

2012-01-18 15:05 SC, revision 70384

adding conversion for stl

2012-01-18 11:05 VZ, revision 70383

No changes, just minor wxMSW code cleanup: use WinStruct<>. Use WinStruct instead of the usual ZeroMemory() + cbSize setting fragment to initialize Win32 structs that need to be initialized in this way. No real changes.

2012-01-18 10:51 VZ, revision 70382

Fix header formatting problem in wxMessageBox() documentation. @header macro must be preceded by a new line.

2012-01-18 01:25 JTN, revision 70381
  • D /wxWidgets/trunk/build/buildbot/config/JTN.xml

Removed wxQt build slave

2012-01-18 00:48 VZ, revision 70380

Consistently use "checked" in wxRadioButton documentation. We used "depressed" or "selected"; replace both of them with hopefully more clear "checked".

2012-01-17 22:54 SC, revision 70379

missing commit, see #10269

2012-01-17 21:03 JS, revision 70378

Added drawing context to allow 'virtual' (dynamic) attributes, for e.g. showing bookmarks without affecting the content

2012-01-17 15:05 VS, revision 70377

Replace wxDataViewCtrl::StartEditor() with EditItem(). This is more consistent with other wxDVC methods (taking column pointer as its argument) and other DVC-like classes where the name EditLabel() is used for similar purposes.

2012-01-17 15:05 VS, revision 70376

Removed unused, wrong wxDataViewCtrl code.

2012-01-17 15:05 VS, revision 70375

Add wxDataViewCtrl::GetCurrentColumn().

2012-01-17 13:56 JS, revision 70374

Support for undoable application of custom properties, and customisation of properties menu label

2012-01-17 07:18 DS, revision 70373
  • D /wxWidgets/trunk/docs/osx/SetTypeFromExtension.sea.hqx

Deleted SetTypeFromExtension.sea.hqx. The script or application in this file was used to set the file type for CodeWarrior projects on the Mac. Since that IDE is not supported anymore and OS X is moving away from file and creator types the file can be deleted.

2012-01-17 07:12 DS, revision 70372
  • D /wxWidgets/trunk/samples/dialogs/makefile.mgl

Deleted makefile.mgl. The makefile referred to a file in src/mgl/, wxMGL has been removed since r70353 so this makefile can be deleted.

2012-01-17 07:06 DS, revision 70371

Fixed keyboard navigation in generic tree control. Under MSW any cursor key presses would not be handled by the generic tree control (and it would lose focus). Added the style wxWANTS_CHARS to the creation of wxGenericTreeCtrl to fix keyboard navigation.

2012-01-16 20:02 JS, revision 70369

Fixed duplicate comment #13871