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

2008-09-22 16:06 VZ, revision 55797

mention that width/height parameters to wxDisplaySize[MM]() can be NULL

2008-09-22 16:03 VZ, revision 55796

added a simple test for wxGetDisplayXXX() functions

2008-09-22 14:11 VZ, revision 55795

fix the event handling in presence of pushed event handlers broken by r55784 (closes #9992)

2008-09-22 14:00 SC, revision 55794

using new API instead of 2.8 compat, fixes #9990

2008-09-22 13:19 SC, revision 55793

fixing typo, thanks to Angelo Mottola

2008-09-22 12:43 VZ, revision 55792

no changes, just clarified meaning of various conversion functions in a comment

2008-09-22 12:24 SC, revision 55791

fixing override, fixes #9985 (second error)

2008-09-22 00:53 KO, revision 55790

Rebake after taskbar addition (apparently dlist.h commit didn't include rebake, so I'm committing that as well).

2008-09-22 00:51 KO, revision 55789

Adding compiling (but not yet working) taskbar implementation for OS X Cocoa, mostly borrowed from wxCocoa. Also enabled HTML Help support as it seems this compiles fine now.

2008-09-22 00:49 VZ, revision 55788

no changes, just some markup fixes

2008-09-22 00:34 VZ, revision 55787

use ProcessEventHere() instead of ProcessEvent() in TryValidator() to avoid passing the unhandled event to wxApp before it can be processed by this window itself

2008-09-22 00:33 VZ, revision 55786

hook the docview-specific customization of event handling logic at TryValidator() level instead of ProcessEvent(): this ensures that the events are not sent to wxApp before they're passed to all the handlers which might process them (before the events were passed to wxDocument and then immediately to wxApp)

2008-09-22 00:10 VZ, revision 55785

correct and expand (while omitting the irrelevant bits which only distract from the main topic) the explanation of how events are processed

2008-09-22 00:08 VZ, revision 55784

extracted the part of ProcessEvent() which is repeated multiple times during the handling of a single event in the new ProcessEventHere() method; this ensures that wxApp::FilterEvent() is not called multiple times for the same event unnecessarily

2008-09-21 23:48 FM, revision 55783

other ifacecheck fixes

2008-09-21 23:13 FM, revision 55782

various misc ifacecheck fixes (many virtual attributes missing)

2008-09-21 22:35 FM, revision 55781

revised and fixed some typos

2008-09-21 21:11 FM, revision 55780

ignore preprocessor lines which #define a symbol to 'nothing'

2008-09-21 21:09 FM, revision 55779

complete rev55777 with some icon.h modifications which I missed in the first place

2008-09-21 20:04 SC, revision 55778

fixing typo (lead to always floating layering for simple frames)

2008-09-21 20:03 FM, revision 55777

introduced wxICON_DEFAULT_TYPE and wxBITMAP_DEFAULT_TYPE; documented these default argument values; matched the wxBitmap and wxIcon interfaces to their real implementations; revised icon.h interface header

2008-09-21 19:58 JMS, revision 55776

Fixed non-precompiled headers compilation

2008-09-21 19:04 SC, revision 55775

fixes #9982

2008-09-21 18:54 VS, revision 55774

Removed too strict check from wx-config that prevented wxwin.m4 from wx-2.8 from working with trunk version of wx (the "Extra unknown input parameters : $input_parameters" error).

2008-09-21 18:52 SC, revision 55773

fixing focus, fixes #9985

2008-09-21 17:06 JMS, revision 55772

Revised #ifndef WX_PRECOMP headers, added missing #include wx/wxcrtvararg.h

2008-09-21 16:54 JMS, revision 55771

'wx(U)LongLong << variant' type safety improved (now works even if variant has plain long value). Added << operator and WXVARIANT template specialization for wx(U)LongLong_t as well. Changed WX_PG_DECLARE/IMPLEMENT_VARIANT_DATA so that classname << variant can be customized.

2008-09-21 16:50 FM, revision 55770

fix default argument values

2008-09-21 15:58 JMS, revision 55769

Remove redundant GetValueRef() from wxVariantData impl macro

2008-09-21 15:48 JMS, revision 55768

Removed #include <typeinfo> (since C++ RTTI is no longer used)

2008-09-21 15:42 JMS, revision 55767

Moved SetPropertyAttributeAll() to wxPropertyGridInterface

2008-09-21 14:13 JMS, revision 55766

A lot of documentation revision. Updated doctest code in propgrid sample to reflect sample code on overview page.

2008-09-21 13:05 VZ, revision 55765

don't waste time sending out update UI events for separators, they can't be updated anyhow

2008-09-21 11:38 VS, revision 55764

Get rid of gs_cairo; if wxGtkPrint* classes are used, Cairo is guaranteed to be available.

2008-09-21 10:27 VZ, revision 55763

no changes, just reformat/reindent, remove wxT()s

2008-09-21 09:42 VS, revision 55762

route all Cairo calls in GTK printing code through gs_cairo (is this still needed?)

2008-09-21 09:35 VS, revision 55761

added wxGetDisplayPPI() convenience function and wxPrintout::SetPPI*() overloads accepting single wxSize argument

2008-09-21 08:50 VS, revision 55760

progress message passed to wxDC::StartDoc() is not appropriate for PostScript document title

2008-09-21 08:49 VS, revision 55759

progress message passed to wxDC::StartDoc() is not appropriate for PostScript document title

2008-09-21 08:44 RR, revision 55758

Added wxDList<T>. not yet used anywhere

2008-09-21 00:53 KO, revision 55756

Rebake after changes.

2008-09-21 00:51 KO, revision 55755

Stubbed wxToolTip implementation to get code that uses it building.

2008-09-20 23:59 KO, revision 55754

Rebake after bakefile changes.

2008-09-20 23:56 KO, revision 55753

Copy headers and get MDI and glcanvas fully building for OS X Cocoa port.

2008-09-20 23:46 KO, revision 55752

Fix bakefiles. Precomp variable is used undefined when building samples (it was only defined inside the test bakefiles).

2008-09-20 23:06 KO, revision 55751

Source changes needed to get MDI support compiling on OS X Cocoa, and a explicit cast to CGImageRef so the compiler doesn't complain.

2008-09-20 22:03 VZ, revision 55750

add const synonyms for wxGridTableBase::GetNumberRows/Cols(), using const_cast<> all the time is painful

2008-09-20 21:58 VZ, revision 55749

fix g++ warning about order of objects in the initializer list

2008-09-20 00:09 VZ, revision 55748

use a single wxKeyboardEvent parameter instead of 4 bools in tons of places

2008-09-19 23:59 VZ, revision 55747

allow specifying the initial modifier keys values in the ctor

2008-09-19 23:33 VZ, revision 55746

- Main change is the addition of wxGridSelectRowsOrColumns selection mode (which is still probably buggy, wxGridSelection needs to be reviewed) - Add XYToCell() overloads returning wxGridCellCoords (instead of modifying the argument passed by reference -- where did this come from?) and document them. - Added GoToCell() which does make the new current cell visible unlike SetGridCursor() (which was documented as doing it, but wasn't) - Changed SetCurrentCell() to only not change the cell if wxEVT_GRID_SELECT_CELL it generates is vetoed, not just processed as this seems to make more sense - Split jumbo (~400 lines) ProcessGridCellMouseEvent() function into chunks - Add many more comments to make reading this code seem less like puzzle solving for the next unfortunate soul to do it

2008-09-19 18:41 VZ, revision 55745

make wxKeyEvent and wxMouseEvent derive from the same wxKeyboardState object (indirectly via wxMouseState in the case of the latter) to make Get/HasModifiers() available in wxMouseEvent as well while avoiding code duplication

2008-09-19 17:39 JMS, revision 55744

Removed macros to create enum and flag props with custom, static choice sets. Now use wxPGProperty::SetChoices() instead.

2008-09-19 17:24 JMS, revision 55743

Eliminated WX_PG_DECLARE/IMPLEMENT_DERIVED_PROPERTY_CLASS

2008-09-19 17:13 JMS, revision 55742

Eliminated WX_PG_DECLARE_X_METHODS macros

2008-09-19 17:10 JMS, revision 55741

Eliminate a warning

2008-09-19 16:57 JMS, revision 55740

Moved wxPGChoices m_choices member from various property classes to base wxPGProperty. This allows any property to have choices without subclassing and therefore work with Choice and ComboBox editors. Also removed redundant choice manipulation functions from wxPropertyGridinterface (ie. now use ones in wxPGProperty).

2008-09-19 16:43 JMS, revision 55739

Do not insert client data if client data is not used

2008-09-19 10:42 MW, revision 55735

Change <checkout> slightly so that it doesn't display the branch as it makes the column rather wide.

2008-09-19 10:28 FM, revision 55734

improved support for typedefs

2008-09-19 10:18 VZ, revision 55733

add unit test for wxTextEntry methods of wxComboBox

2008-09-19 10:17 VZ, revision 55732

fix bug in SetInsertionPoint(-1) implementation

2008-09-19 10:13 VZ, revision 55731

set selection point to end in wxTextEntryBase::SetValue() as this should be done in all ports and in all controls (fixes a unit test failure for wxComboBox)

2008-09-19 10:08 VZ, revision 55730

implement EnableTextChangedEvents() to make ChangeValue() work as expected, i.e. not generate any events

2008-09-19 09:03 VZ, revision 55729

do enable PCH for the tests, wx/wx.h was not precompiled for them resulting in much slower compilation than expected

2008-09-19 08:55 VZ, revision 55728

extract wxTextEntry unit tests in a reusable base class

2008-09-19 08:18 VZ, revision 55727

set buffer length after reading the file contents into it successfully (part of #9980)

2008-09-19 08:11 VZ, revision 55726

return 0 (meaning the file is not seekable, as the docs now explain) instead of 4KB for the files in sysfs under Linux (#9965)

2008-09-19 07:50 VZ, revision 55725

fix ownerdrawn button label drawing in ODS_NOACCEL case (#3519)

2008-09-19 07:38 VZ, revision 55720

cancel the current operation if mouse capture is lost (#9979)

2008-09-18 20:49 SC, revision 55712

making sure unknown charsets are not defaulting to a valid system default

2008-09-18 19:05 RR, revision 55711

Move definition of wxListIteratorFunction and ..SortFuntion to defs.h so it can be used from elsewhere

2008-09-18 18:47 FM, revision 55710

fix for gccxml

2008-09-18 18:47 FM, revision 55709

fix default arguments for various functions/ctors

2008-09-18 18:34 FM, revision 55708

few details fixed

2008-09-18 18:14 SC, revision 55707

remove tests, from trunk, until we've sorted out the hangs

2008-09-18 17:47 JMS, revision 55706

Removed unused comment

2008-09-18 17:43 JMS, revision 55705

Document struct wxPGPaintData in function docs of only function that uses it

2008-09-18 17:40 VZ, revision 55704

mention that you need to update samples/samples.dsw manually currently

2008-09-18 17:25 JMS, revision 55703

Added section for propgrid sample

2008-09-18 17:14 JMS, revision 55702

Replaced @link with @ref

2008-09-18 16:56 VZ, revision 55701

use #defines, not typedefs, for compatibility class names declarations to avoid breaking existing code forward declaring them

2008-09-18 16:53 JMS, revision 55700

Made section names more globally unique

2008-09-18 16:44 VZ, revision 55699

rebaked after propgrid sample addition

2008-09-18 15:23 JMS, revision 55698

Added 'propgrid'

2008-09-18 12:27 SC, revision 55697

adding new commands for tests

2008-09-18 09:12 SC, revision 55696

fixing deprecated constructors for osx

2008-09-18 08:38 SC, revision 55695

in release builds gcc on osx evaporates these inlines if not WXEXPORTed

2008-09-17 22:20 VZ, revision 55694

ensure that the copies of the bitmap passed to wxMemoryDC ctor are not modified when this bitmap is

2008-09-17 18:15 JMS, revision 55693

Removed wxPGProperty class overview docs from actual header file

2008-09-17 18:11 JMS, revision 55692

Fixed typos

2008-09-17 18:09 JMS, revision 55691

Removed unused commented-out define

2008-09-17 18:08 RR, revision 55690

minor corrections

2008-09-17 18:08 JMS, revision 55689

Removed #ifndef DOXYGEN

2008-09-17 17:34 JMS, revision 55688

Added separate SetFocusOnCanvas() function so that m_editorFocused will be more reliable updated

2008-09-17 15:49 JMS, revision 55687

Removed some old testing code. Added more appropriate minimal content.

2008-09-17 15:36 JMS, revision 55686

Try to improve focus problem situation by using more SetFocusIgnoringChildren() instead of SetFocus()

2008-09-17 15:00 JMS, revision 55685

wxUSE_PROPGRID is now recognized by source and header files

2008-09-17 08:13 SC, revision 55684

next attempt

2008-09-17 07:39 MW, revision 55673

General purpose slave lock.