]> git.saurik.com Git - wxWidgets.git/blame - docs/changes.txt
Make radiobuttons siblings instead of children in radioboxes again and remove refresh...
[wxWidgets.git] / docs / changes.txt
Content-type: text/html ]> git.saurik.com Git - wxWidgets.git/blame - docs/changes.txt


500 - Internal Server Error

Malformed UTF-8 character (fatal) at /usr/lib/x86_64-linux-gnu/perl5/5.40/HTML/Entities.pm line 485, <$fd> line 807.
CommitLineData
5fae57de
JS
1---------------------------------------------------------------
2wxWidgets Change Log - For more verbose changes, see the manual
3---------------------------------------------------------------
d643b80e 4
aae53500
VZ
5INCOMPATIBLE CHANGES SINCE 2.6.x
6================================
7
8- wxFontData::GetColour() now returns a const colour
e72d82bb
VZ
9- wxDC objects can't be created directly now (this never worked, now it doesn't
10 even compile)
aae53500
VZ
11
12
254e8e29
VZ
132.7.0
14-----
15
42d0df00
VZ
16All:
17
18- wxLaunchDefaultBrowser() now supports wxBROWSER_NEW_WINDOW flag
4626c57c 19- Added wxStringTokenizer::GetLastDelimiter(); improved documentation
ce045aed 20- wxGetWorkingDirectory() deprecated. Use wxGetCwd() instead.
42d0df00 21
c6ece595
VZ
22All (GUI):
23
5d7836c4 24- Added wxTreeBook.
e7102772 25- Added wxKeyEvent::GetModifiers()
5d7836c4 26- Added wxDialog::SetEscapeId().
f7c40316 27- wxItemContainerImmutable::FindString unified (affects wxRadioBox, wxListBox,
5d7836c4
JS
28 wxComboBox and wxChoice).
29- wxWindow::Fit() now works correctly for frames and dialogs too.
30- Added access to the border size between pages and controller in book
31 based controls (wxBookCtrlBase::Get/SetInternalBorder).
32- Added initial wxRichTextCtrl implementation.
d8fd7acb
WS
33- All book based controls (notebook, treebook etc.) share now the same
34 options for orientation (wxBK_TOP, wxBK_DEFAULT, ...) instead of duplicated
35 wxLB_TOP, wxNB_TOP, wxCHB_TOP, wxTBK_TOP.
3db52265
JS
36- Added parent window parameter to wxHelpController constructor
37 and added SetParentWindow/GetParentWindow.
60104cba 38- wxMultiChoiceDialog uses now wxCheckListBox if possible, wxListBox if not.
1fdc16ad 39- Added wxBitmapButton::SetHoverBitmap()
60fef964
WS
40- Access to titles through Get/SetTitle is available now only for top level
41 windows (wxDialog, wxFrame).
6dc2a916 42- Fixed memory leak of pending events in wxEvtHandler
3bfa7be9 43- Added wxRadioBox::IsItemEnabled/Shown()
3d941982 44- Added space after list item number in wxHTML.
3c115835
VS
45- Implemented <sub> and <sup> handling in wxHTML (based on patch
46 by Sandro Sigala)
c6ece595 47
af1f0a76
VZ
48wxMSW:
49
5d7836c4
JS
50- wxFileDialog respects absence of wxCHANGE_DIR flag under NT (Brad Anderson).
51- Switching page of a hidden notebook doesn't lose focus (Jamie Gadd).
2c028d83 52- Removed wxImageList *GetImageList(int) const.
7dbe942a 53- Fixed MDI context menu problem.
a71d815b 54- Removed __WIN95__ define
af1f0a76 55
46cbb21e
JS
56wxGTK:
57
76471ff7
VZ
58- wxEVT_MENU_CLOSE and wxEVT_MENU_OPENED for popup menus are now generated
59- Implemented wxCURSOR_BLANK support
8e3e14c4 60- wxSlider generates all scroll events now and not only wxEVT_SCROLL_THUMBTRACK
46cbb21e
JS
61- Fixed problem with choice editor in wxGrid whereby the editor
62 lost focus when the combobox menu was shown.
398c701f
JS
63- Fixed problem trying to print from a preview, whereby wrong printer
64 class was used.
46cbb21e 65
0c389749
DS
66wxMac:
67
68- Fixed problem with clipboard support for custom data flavors.
62bdd4db
JS
69- Fixed focus handling for generic controls in carbon-cfm.
70- Fixed a printing crash bug, for example using File->Print and changing
71 Popup from 'Copies & Pages' to e.g. 'Layout'.
72- Improved support for help and application menu items.
73- Added default implementations for wxTextCtrl::Replace and wxTextCtrl::Remove.
74- Added support for 10.4 context menu.
75- Added support for wxFRAME_EX_METAL and wxDIALOG_EX_METAL styles.
76- Added wxNotebook::HitTest support.
77- Corrected idle wake-up.
78- Corrected wxExecute.
79- Now makes use of full printer resolution.
80- Corrected CGImage handling in wxBitmap.
81- Now uses simple hide/how transition for top-level windows.
82- Uses reasonable temporary path for wxFileName::CreateTempFileName.
83- Added support for default key handling (escape, enter, command-period) even
84 if there is no control on the frame or dialog that has the focus.
85- Fixed joystick bugs including a link error and a crash if no joysticks
86 were found.
87- Removed an errorneous assertion from wxDir.
88- Uses CoreFoundation based and thread-safe implementation for message boxes
89 under Mach-O.
90- wxBitmapButton is created as a content icon if wxBORDER_NONE is
91 specified, otherwise as a bevel button.
92- Mouse event ids set correctly (fixing problems with Connect in particular).
0c389749 93
7b504551
WS
94wxWinCE:
95
96- Pressing build-in joystick on WinCE phones fires wxEVT_JOY_BUTTON_DOWN event.
31618973 97- Native wxCheckListBox implementation.
08b97268 98- All wxTopLevelWindows resizes accordingly to SIP visibility.
717870a6 99- ::wxGetUserName() implemented.
2ad495fb 100- wxDisplay enumeration support.
e8615999 101- Fixed wxFileDialog breakage on WinCE due to incorrect structure size.
7b504551 102
254e8e29
VZ
103Unix:
104
5d7836c4 105- NO_GCC_PRAGMA is not used any more, remove checks for it if you used it.
254e8e29 106
af1f0a76 107
af5d391c
WS
1082.6.2
109-----
110
1a64b24d
VZ
111All:
112
fd725bce
WS
113- Fixed wxScopeGuard to work with VC++, documented it.
114- Fixed proxy handling in wxURL.
b23030d6
JS
115- Added wxEVT_MEDIA_LOADED event for wxMediaCtrl.
116- Added new methods to wxMediaCtrl (wxURI version of Load, ShowPlayerControls).
117- Added wxZipFSHandler::Cleanup() (Stas Sergeev).
118- Added wxImage::RotateHue() and RGB <-> HSV conversions (John Anderson).
119- Fixed compilation with IBM xlC compiler.
e38bddf5 120- wxABI_VERSION, see 'Backward Compatibility' topic overview in the manual.
12c69341
JS
121- Added wxLongLong::ToDouble().
122- Added wxDateTime::[Make]FromTimezone(), fixed several TZ-related bugs.
123- Fixed bug in wxStreamBuffer::Read(wxStreamBuffer *) (Paul Cornett).
bf8ca20d 124- Fixed wxListbook and wxChoicebook internal layout.
1a64b24d 125
60fd818a
VZ
126All (GUI):
127
5d1b4919 128- Added wxStaticText::Wrap()
6ba93d23 129- wxChoice and wxComboBox::GetSelection() now returns completed selection,
12c69341 130 added a new GetCurrentSelection() function having the old behaviour.
3285ee53 131- Added wxXmlResource::Unload().
b3eb133b 132- Possibility of modeless wxWizard dialog (with presentation in sample).
3285ee53 133- Fixed a rare crash due to malformed HTML in wxHTML (Xavier Nodet).
b23030d6 134