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

2007-10-17 21:52 DE, revision 49205

Apply modified patch 1785299 to trunk and 2.8.

2007-10-17 20:57 RR, revision 49204

Make wxRenderer::DrawItemSelectionRect() draw a focus outline of wxCONTROL_CURRENT and wxCONTROL_FOCUSED is given, blind patch for wxMac

2007-10-17 18:30 VZ, revision 49203

explicitly mention that IsChecked() can't be used with wxCheckListBox

2007-10-17 18:22 VZ, revision 49202

remove wxWindow::Clear() from wxDFB and wxMGL which was unused (probably replaced by ClearBackground()) and conflicted with methods with the same name in other classes

2007-10-17 18:19 VZ, revision 49201

test for __DARWIN__ with ifdef, not if

2007-10-17 17:55 VZ, revision 49200

include -DWXUSINGDLL in wx-config output under all platforms and not only Cygwin/Mingw32

2007-10-17 17:32 VZ, revision 49199

fix references to wxCmdLineParser ctor

2007-10-17 17:29 VZ, revision 49198

fix broken links

2007-10-17 09:43 RR, revision 49196

Correct focus rect to not appear in unfocussed controls (currently doesn't appear at all under XP

2007-10-17 09:21 RR, revision 49195

Correct EnsureVisible() to show last item entirely

2007-10-17 09:17 RR, revision 49194

More alignment issues

2007-10-17 08:50 RR, revision 49193

Change default alignment to centre vertically

2007-10-17 08:49 RR, revision 49192

Document alignment parameter

2007-10-17 08:37 RR, revision 49191

Ensure item is visible when selection moves, remove compile warnings

2007-10-17 08:03 RR, revision 49190

Minor doc updates

2007-10-17 07:57 RR, revision 49189

Minor doc updates

2007-10-17 07:56 RR, revision 49188

Minor doc updates

2007-10-17 07:56 RR, revision 49187

Minor doc updates

2007-10-17 06:58 BP, revision 49186

Corrected doc typo (missing escaped underscore). Patch by Tim Stahlhut.

2007-10-17 02:59 PC, revision 49185

remove C++ comment

2007-10-17 02:58 PC, revision 49184

Fix declaration-after-statement compile error, remove C++ comments, remove unused GtkPizzaAdjData

2007-10-16 21:49 RR, revision 49183

Moved paragraph to right place

2007-10-16 21:48 RR, revision 49182

Minor sample corrections

2007-10-16 21:41 RR, revision 49181

Correct activate logic for <ENTER>

2007-10-16 21:38 RR, revision 49180

Correct activate logic for mouse clicks

2007-10-16 21:04 RR, revision 49179

Correct drawing placement (16px + 1 px border below)

2007-10-16 20:54 RR, revision 49178

Correct text colour in wxIconTextRenderer

2007-10-16 20:48 RR, revision 49177

Support for hover effect in header buttons

2007-10-16 17:53 RR, revision 49173

Doc improvements

2007-10-16 16:33 BIW, revision 49172

check if pane still exists before closing

2007-10-16 16:33 BIW, revision 49171

check if pane still exists before closing

2007-10-16 12:13 RR, revision 49170

Corrected AppendXXXColumn method params

2007-10-16 11:54 RR, revision 49169

Docs for wxDataViewTreeStore

2007-10-16 11:41 RR, revision 49168

Add wxDataViewTreeStore with sample

2007-10-14 08:51 DE, revision 49155

Fix wxExecute process end detect behavior for wxCocoa and wxMac. I have no idea why the current code used for Intel Macs doesn't work but it's not working for me at all. This should probably be backported to 2.8.

2007-10-14 08:37 DE, revision 49154

Combine the check for wxMac and then the other check for wxMac/wxCocoa into one define called USE_OLD_DARWIN_END_PROCESS_DETECT because it's wrong to created pipeEndProcDetect on wxCocoa when it's not going to use it! The next commit will show why it's now "Old".

2007-10-14 04:44 DE, revision 49153

Don't force the child's m_isShown state to match that of the parent in CocoaAddChild.

2007-10-13 22:01 RR, revision 49152

Beginning of wxDataViewTreeStore API

2007-10-13 22:00 RR, revision 49151

Minor doc corr

2007-10-13 22:00 RR, revision 49150

Made wxList no longer inherit from wxObject, no change in STL mode

2007-10-13 12:11 RR, revision 49149

Use typesafe wxVariantList in wxVariant instead of wxList

2007-10-13 11:57 RR, revision 49148

define typesafe wxVariantList (to be used by wxVariant instead of wxList

2007-10-13 11:45 RR, revision 49147

wxVariantData no longer inherits from wxObject

2007-10-13 08:47 DE, revision 49146

Implement creation of wxFont from wxNativeFontInfo. Implement all of the getters to return the fields from the wxNativeFontInfo contained in the wxFontRefData.

2007-10-13 08:30 DE, revision 49145

Replace most of the fields in wxFontRefData with one wxNativeFontInfo. Done on both trunk and 2.8. Because the data members line up perfectly and because I did not add nor remove any methods the ABI is (surprisingly) not effected by this change. The GetNativeFontInfo call now works.

2007-10-13 07:18 DE, revision 49144

Move wxCocoa's wxFontRefData from the header to the implementation file.

2007-10-13 06:58 DE, revision 49143

Rename src/cocoa/font.cpp to font.mm in both trunk and 2.8 branch.

2007-10-12 20:31 DE, revision 49142

Disable accidently committed F-Script code.

2007-10-12 20:30 DE, revision 49141

Remove wxNonControlNSControl from trunk. Leave in 2.8 because it removes symbols (although theoretically no one could have ever linked against them).

2007-10-12 20:27 DE, revision 49140

Use WXNSView just like wxWindow does when creating a wxControl. There are already wxControl subclasses such as wxStaticBox not using primary views which derive from NSControl so wxControl has to support this already.