wxWidgets SVN Changelog

Select Changelog:

wxWidgets, wxPython, wxWebSite, wxPyWeb

Select page:

Previous Page1 2 3 15 28 40Next Page

Changes per page:

25 50 100 250

Summarize files:

On | Off

Search:

Filter by Developer:

Sort Alphabetically Sort by Commits Show/Hide Inactive Developers
Show All
Vadim Zeitlin (17,160)
Robin Dunn (7,249)
Julian Smart (5,571)
Václav Slavík (4,915)
Robert Roebling (3,709)
Stefan Csomor (3,686)
Francesco Montorsi (1,299)
David Elliott (984)
Mattia Barbon (841)
Stefan Neis (781)
Michael Wetherell (766)
Paul Cornett (765)
Chris Elliott (655)
Kevin Ollivier (600)
Jaakko Salli (542)
Ron Lee (517)
Jacob Jansen (363)
Steven Lamerton (186)
Bryan Petty (177)
User: HH (110)
Javier Torres (80)
Julien Weinzorn (50)
Peter Cawley (44)
Bo Yang (37)
Peter Most (32)
Mingquan Yang (29)
Ron Lee (27)
Rickard Westerlund (23)
Bo Yang (37)
Bryan Petty (177)
Chris Elliott (655)
David Elliott (984)
Francesco Montorsi (1,299)
Jaakko Salli (542)
Jacob Jansen (363)
Javier Torres (80)
Julian Smart (5,571)
Julien Weinzorn (50)
Kevin Ollivier (600)
Mattia Barbon (841)
Michael Wetherell (766)
Mingquan Yang (29)
Paul Cornett (765)
Peter Cawley (44)
Peter Most (32)
Rickard Westerlund (23)
Robert Roebling (3,709)
Robin Dunn (7,249)
Ron Lee (517)
Ron Lee (27)
Stefan Csomor (3,686)
Stefan Neis (781)
Steven Lamerton (186)
User: HH (110)
Vadim Zeitlin (17,160)
Václav Slavík (4,915)

This changelog reflects changes in the wxWidgets SVN repository, and is updated every 10 minutes. All reported times are in UTC.

  • Legend:
  • Added (A) Added (A)
  • Deleted (D) Deleted (D)
  • Modified (M) Modified (M)
  • Copied (R) Copied (R)
  • [Branch]
  • [Tag]
  • Active Filters:
  • David Elliott Remove Filter

Changelog for wxWidgets (984 revisions):

r52099: 2008-02-26 05:57:42 [DE] David Elliott

M  /src/cocoa/window.mm  [diff, log, file]

 * When hiding a wxWindow make sure that none of its subviews are the first
     responder. If one of them is, make it resign. If it refuses, don't hide
     the window and return false.
 * When showing a wxWindow that has been hidden, schedule a reconfiguration
     of the key-view loop so that tabbing will work correctly.
 * Add some comments about why wxCocoa does what it does.
 
 This makes the widgets sample much more usable.

r51903: 2008-02-19 01:13:48 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/unix/dlunix.cpp  [diff, log, file]

 Backport 51898 from trunk

r51902: 2008-02-19 00:25:05 [DE] David Elliott

M  [WX_2_8_BRANCH] /configure  [diff, log, file]
M  [WX_2_8_BRANCH] /configure.in  [diff, log, file]
M  [WX_2_8_BRANCH] /include/wx/dynlib.h  [diff, log, file]

 Backport 51895 & 51896 which define HAVE_DLOPEN/HAVE_DLERROR when configure
 is run on an OS X system supporting them (everything >= 10.3).

r51898: 2008-02-18 23:44:46 [DE] David Elliott

M  /src/unix/dlunix.cpp  [diff, log, file]

 Rework the dl* Darwin compatibility code so it uses the real functions when
 available. If compiled to allow for pre-10.3 systems it will do the check
 at runtime and the compatibility functions will be compiled but likely
 not used. If compiled with 10.3 or higher as the minimum version, the
 compatibility functions will not be compiled and the library will work
 identically as it does on all other UNIX.
 
 Even if the compatibility code is compiled in, the function names are now
 prefixed with wx_darwin_ and are marked static so they don't make it into
 the exported symbols, even in their C++-mangled form.

r51896: 2008-02-18 22:53:38 [DE] David Elliott

M  /include/wx/dynlib.h  [diff, log, file]

 Don't include dlfcn.h from wx/dynlib.h on Darwin. We might be using our own
 internal replacement functions.

r51895: 2008-02-18 22:50:15 [DE] David Elliott

M  /configure  [diff, log, file]
M  /configure.in  [diff, log, file]

 Test for dlopen/dlerror on Mac OS X as with any other UNIX.
 Indent dlerror test appropriately.

r51894: 2008-02-18 21:51:29 [DE] David Elliott

M  [WX_2_8_BRANCH] /include/wx/cocoa/listbox.h  [diff, log, file]
M  [WX_2_8_BRANCH] /src/cocoa/listbox.mm  [diff, log, file]
M  /include/wx/cocoa/listbox.h  [diff, log, file]
M  /src/cocoa/listbox.mm  [diff, log, file]

 Limit wxListBox best size to 100x100. Particularly important on trunk where
 the best size is not cached and will thus keep telling the sizers that the
 best size is the full size of the content (i.e. such that you wouldn't need
 to scroll it).

r51893: 2008-02-18 21:26:51 [DE] David Elliott

M  /include/wx/cocoa/listbox.h  [diff, log, file]
M  /src/cocoa/listbox.mm  [diff, log, file]

 Revert the 2.8 hacks from r51892 on the trunk.

r51892: 2008-02-18 21:13:58 [DE] David Elliott

M  [WX_2_8_BRANCH] /include/wx/cocoa/listbox.h  [diff, log, file]
M  [WX_2_8_BRANCH] /src/cocoa/listbox.mm  [diff, log, file]
M  /include/wx/cocoa/listbox.h  [diff, log, file]
M  /src/cocoa/listbox.mm  [diff, log, file]

 Ensure that the NSTableColumn width is that of its largest item to enable
 horizontal scrolling in wxListBox.
 Copyright 2008 Software 2000 Ltd.

r51891: 2008-02-18 20:36:16 [DE] David Elliott

M  [WX_2_8_BRANCH] /include/wx/cocoa/objc/objc_uniquifying.h  [diff, log, file]
M  /include/wx/cocoa/objc/objc_uniquifying.h  [diff, log, file]

 Add a new macro to the Objective-C uniquifying support that allows a
 uniquified class to be a subclasses of another uniquified class.

r51869: 2008-02-18 04:58:07 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/cocoa/window.mm  [diff, log, file]
M  /src/cocoa/window.mm  [diff, log, file]

 Fix bug where native views with the NSScrollView wrapper would have their
 document size reset to the wx virtual size upon any size event.

r51800: 2008-02-14 23:34:48 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/cocoa/listbox.mm  [diff, log, file]
M  /src/cocoa/listbox.mm  [diff, log, file]

 Better listbox scrollbar behavior.

r51799: 2008-02-14 22:54:20 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/cocoa/listbox.mm  [diff, log, file]
M  /src/cocoa/listbox.mm  [diff, log, file]

 Hack: force a vertical scroller on wxListBox.

r51798: 2008-02-14 21:31:18 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/cocoa/msgdlg.mm  [diff, log, file]

 Ensure that the (separate on 2.8 branch) message dialog style gets set when constructing wxCocoa's message dialog.

r51797: 2008-02-14 21:08:44 [DE] David Elliott

A  /include/wx/cocoa/private/scrollview.h  [log, file]
M  /src/cocoa/window.mm  [diff, log, file]

 Move wxWindowCocoaScrollView class into its own header.
 (Equivalent of r51796 on the 2.8 branch)

r51796: 2008-02-14 20:40:16 [DE] David Elliott

A  [WX_2_8_BRANCH] /include/wx/cocoa/private/scrollview.h  [log, file]
M  [WX_2_8_BRANCH] /src/cocoa/window.mm  [diff, log, file]

 Move wxWindowCocoaScrollView class into its own header.

r51795: 2008-02-14 19:46:21 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/cocoa/listbox.mm  [diff, log, file]
M  [WX_2_8_BRANCH] /src/cocoa/NSMenu.mm  [diff, log, file]
M  /src/cocoa/listbox.mm  [diff, log, file]
M  /src/cocoa/NSMenu.mm  [diff, log, file]

 More GC fixes.

r51766: 2008-02-13 20:30:36 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/cocoa/NSControl.mm  [diff, log, file]
M  /src/cocoa/NSControl.mm  [diff, log, file]

 Fix (at least) slider action messages in GC mode.
 Copyright 2008 Software 2000 Ltd.

r51765: 2008-02-13 20:24:06 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/common/filename.cpp  [diff, log, file]

 If aWxString.fn_str() is used as the argument to wxStat then wxStat should not
 be used at all because wxStat is looking for a wxChar* that it will pass
 through wxConvFile whereas fn_str() effectively returns a char* suitable for
 use directly with the real function.

r51650: 2008-02-11 07:29:43 [DE] David Elliott

M  [WX_2_8_BRANCH] /src/cocoa/notebook.mm  [diff, log, file]
M  /src/cocoa/notebook.mm  [diff, log, file]

 When Cocoa sends [tabView:didSelectTabViewItem:] create a page changed event
 instead of a page changing event and actually send it.
 Copyright 2008 Software 2000 Ltd.

r51628: 2008-02-10 10:59:39 [DE] David Elliott

M  /build/bakefiles/files.bkl  [diff, log, file]
M  /Makefile.in  [diff, log, file]

 Move stackwalk.cpp and epolldispatcher.cpp to BASE_UNIX_AND_DARWIN_(SRC|HDR)
 from BASE_UNIX_(SRC|HDR). The stackwalk.cpp works fine on Leopard (which
 added backtrace) and epolldispatcher may work on a future OS X that
 implements epoll. Leave configure to determine whether or not the code is
 appropriate for Darwin systems. That is its purpose!

r51627: 2008-02-10 07:20:29 [DE] David Elliott

M  /include/wx/colour.h  [diff, log, file]

 Add wxCocoa to the list of ports which don't need wxColour to derive from wxGDIObject.

r51595: 2008-02-08 09:12:04 [DE] David Elliott

M  [WX_2_8_BRANCH] /include/wx/cocoa/trackingrectmanager.h  [diff, log, file]
M  /include/wx/cocoa/trackingrectmanager.h  [diff, log, file]

 Fix tracking rectangles in 64-bit build by remembering the tag as the 64-bit integer that it is in that mode.

r51591: 2008-02-08 08:06:26 [DE] David Elliott

M  [WX_2_8_BRANCH] /include/wx/cocoa/ObjcRef.h  [diff, log, file]
M  /include/wx/cocoa/ObjcRef.h  [diff, log, file]

 Reword the comment again. I forgot to save before committing.

r51590: 2008-02-08 08:04:46 [DE] David Elliott

M  [WX_2_8_BRANCH] /include/wx/cocoa/ObjcRef.h  [diff, log, file]
M  /include/wx/cocoa/ObjcRef.h  [diff, log, file]

 Change the __NEXT_RUNTIME__ test to __OBJC_GC__ which is what I really meant
 but I had to look up which preprocessor define was emitted by -fobjc-gc.
 Also improve the comments a bit.