]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/changes.txt
Add wxABI_VERSION > 20601 wrappers
[wxWidgets.git] / docs / changes.txt
... / ...
CommitLineData
1---------------------------------------------------------------
2wxWidgets Change Log - For more verbose changes, see the manual
3---------------------------------------------------------------
4
52.6.2
6-----
7
8All:
9
10- Fixed wxScopeGuard to work with VC++, documented it.
11- Fixed proxy handling in wxURL.
12
13All (GUI):
14
15- Added wxXmlResource::Unload()
16- Possibility of modeless wxWizard dialog (with presentation in sample).
17- Fixed a rare crash due to malformed HTML in wxHTML (Xavier Nodet)
18
19wxMSW:
20
21- Separators are now correctly shown in the toolbars under Windows XP
22- Fixed multiline tooltips handling.
23- Fixed wxSlider::GetSelEnd() (Atilim Cetin)
24- Fixed accelerators of menu items added to already attached submenus
25
26wxUniv:
27
28- Window creation now honours wxVSCROLL.
29
30
312.6.1
32-----
33
34All:
35
36- Added wxLaunchDefaultBrowser.
37- Added wxPLURAL() macro in addition to _() (Jonas Rydberg)
38
39All (GUI):
40
41- Fixed potential infinite loop when adjusting wxScrolledWindow scrollbars.
42- Radio in menus do not send menu event for selections of already selected item.
43- Fixed wrong positioning of marks and enumerations in lists of wxHTML.
44- wxImage::Rotate90 respects alpha channel.
45- Added wxEVT_SCROLL_CHANGED as synonym for wxEVT_SCROLL_ENDSCROLL.
46- Replaced artwork for some cursors, icons and toolbar buttons.
47- Fixed sizing problem in generic wxCalendarCtrl for short day abbreviations.
48- Fixed wxWindow::DoGetBestSize to keep original best size.
49- PNM now supports ASCII and raw grey formats.
50- wxGrid focus and edit key improvements.
51
52wxMSW:
53
54- Fixed erroneous selection of content in wxComboBox when within a wxStaticBox
55 (checking for selection caused by WM_STYLECHANGED).
56- Added deferred positioning to wxRadioBox, wxSlider and wxSpinCtrl and thereby
57 eliminated some refresh glitches when resizing.
58- Eliminated further refresh glitches caused by wxRadioBox (to nearby controls)
59 by refreshing parent when the radio box moves.
60- Added ability set the system option "msw.staticbox.optimized-paint" to 0 to
61 allow a panel to paint graphics around controls within a static box.
62- Refresh exposed areas when resizing, using WM_WINDOWPOSCHANGED.
63- Worked around an apparent bug in deferred window positioning (moving a
64 window from (x, y) to (a, b) and back to (x, y) misses the last step) by
65 checking window positions against corresponding sizer state, if any.
66- A control's text colour now reflects the system colour setting.
67- Fixed wxFileName::GetLongPath() to behave correctly during the first call too.
68- Fixed alpha blitting to take into account source position.
69- Setting foreground colour for wxCheckBox now works when using XP themes too.
70- wxStaticBox label can use custom foreground colour.
71- Now uses newer font MS Shell Dlg 2 if possible.
72- Compiles again with WIN64.
73- Winelib compilation now works.
74- When converting a wxIcon to a bitmap check if the icon has an alpha
75 channel and set the bitmap to use it.
76- wxSlider now also sends wxEVT_SCROLL_CHANGED when using mouse wheel
77- Miscellaneous wxMediaCtrl improvements.
78- wxTopLevelWindow::ShowFullScreen logic error fixed.
79- Fixed wxScrollBar background colour bug.
80- Fixed problems with paper sizes being ignored.
81- wxNotebook refresh problem fixed.
82- DDE fixed for Unicode.
83- Fixed ownerdrawn multiline buttons.
84- wxCheckListBox item background fixed.
85- Fixed some wxRegKey bugs.
86
87wxWinCE:
88
89- Fixed wxFileName::CreateTempFileName.
90
91wxGTK:
92
93- Added support for wxSTAY_ON_TOP (GTK 2.4+).
94- Fixed wxTextCtrl::SetStyle for overlapping calls.
95- Fixed scrollbar border colour.
96- Added bitmap support in menus.
97
98wxMac:
99
100- Added support for launching 'APPL' bundles with wxExecute (usually they have a
101 .app extension and are the ones that reside in the Applications folder).
102- Fixed a bug in wxGetKeyState where shift and some other keys were returning an
103 incorrect state.
104- Fixed toolbar colour bug on Tiger.
105- Fixed visual problems caused by removal of About menu item.
106- Window menu now added automatically.
107- Configure fixed for wxBase compilation.
108- Modified function key support fixed.
109- wxTopLevelWindow::Maximize improvements.
110
111wxX11:
112
113- Menu problems fixed.
114- wxScrolledWindow scrolls any child windows.
115- Fixed a font memory leak.
116- Multiple wxTimers now work correctly.
117
118
1192.6.0
120-----
121
122All:
123
124- wxPathExists deprecated, use wxDirExists instead.
125- Configure: --enable-std_iostreams, --enable-std_string are now the default.
126
127All (GUI):
128
129- Fixed ~wxStatusBar and ~wxToolBar which tried to check
130 non-existent wxFrameBase RTTI, causing a crash if not in a frame.
131
132wxMSW:
133
134- Fixed static box border when the label is empty.
135- Fixed SetBackgroundColour() to change only label background, not entire box.
136- wxHelpController is now aliased to wxCHMHelpController.
137
138wxWinCE:
139
140- Fixed device origin setting and clipping region setting.
141
142wxGTK:
143- New configure syntax for specifying the GTK+ version.
144 --with-gtk Use GTK 2.x, no fallback
145 --with-gtk=1 Use GTK 1.2, no fallback
146 --with-gtk=2 Use GTK 2.x, no fallback
147 --with-gtk=any Use any available GTK
148- wxMenuItem::SetText() takes care of hotkeys, too.
149- Reworked text wrapping for wxStaticText.
150
151wxMac:
152- Implemented most of the wxFileType and wxMimeTypesManager functions
153
1542.5.5
155-----
156
157All:
158
159- wxURI::GetUser() only returns the user name now, use GetUserInfo() to get
160 user and password as in 2.5.4; wxURI::GetPassword() added.
161- Added wxDebugReport class.
162- Added wxTempFileOutputStream by Stas Sergeev.
163- Fixed wxDateTime::SetToWeekDayInSameWeek(Sun, Monday_First).
164- Added WXK_SPECIAL keycodes for special hardware buttons.
165- Fixed bug with wxFile::Seek(-1, wxFromCurrent).
166- Added wxString/C array constructors to wxArrayString.
167- Added wxMemoryInputStream(wxMemoryOutputStream&) constructor (Stas Sergeev)
168
169All (GUI):
170
171- Added GetIcon, GetBitmap to wxImageList. wxGenericImageList's original
172 GetBitmap is renamed GetBitmapPtr.
173- Added XPM data constructor to wxImage.
174- Added style parameter to wxBufferedDC to allow buffering just the client, or
175 the whole virtual area.
176- Restored ability to set a custom splitter sash size with SetSashSize.
177- Fixed wxScrolledWindow sizer behaviour so that the virtual size
178 isn't used to set the window size.
179- Added wxTE_BESTWRAP (based on patch by Mart Raudsepp).
180- wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED is now only sent once at the end of
181 splitter dragging and not after each CHANGING event (Jacobo Vilella Vilahur).
182- Added wxImage::IsTransparent().
183
184Unix:
185
186- Fixed build on Linux/AMD64.
187
188wxMSW:
189
190- Added "orient" parameter to wxMDIParentFrame::Tile().
191- wxTextCtrl with wxTE_RICH2 style now uses RichEdit 4.1 if available.
192- fix handling Alt-key events in wxComboBox (reported by Joakim Roubert).
193- wxWindow::Refresh() refreshes the window children as well.
194- Improved static box and radio box refresh and background colour
195 handling (Jamie Gadd).
196
197wxGTK:
198
199- Improved wxSystemSettings::GetMetric() to work better with X11 (Mart Raudsepp).
200- Corrected wxListBox selection handling.
201- Corrected default button size handling for different themes.
202- Corrected splitter sash size and look for different themes.
203- Fixed keyboard input for dead-keys.
204- Added support for more wrapping styles (Mart Raudsepp).
205- GTK2.4+ wxFileDialog reimplemented to support non-modal usage better,
206 and fix all known bugs (Mart Raudsepp).
207
208wxMac:
209
210- Added wxFRAME_EX_METAL, wxDIALOG_EX_METAL for metallic-look windows.
211
212wxPalmOS:
213
214- Native wxRadioBox implementation.
215
216wxWinCE:
217
218- Added wxNB_FLAT for flat-look notebooks on Windows CE.
219- Titlebar OK button on PocketPC now sends command set by SetAffirmativeId.
220 You can also override wxDialog::DoOK if you need more flexibility.
221- Dialog size now takes into account SIP or menubar.
222- Panels more naturally white on PocketPC.
223- wxDIALOG_EX_CONTEXTHELP ignored on WinCE since it interferes
224 with correct titlebar style.
225- Frames have Ctrl+Q accelerator set automatically, as per the
226 PocketPC guidelines
227- Documented issues in manual under wxWinCE topic.
228- Made (Un)RegisterHotKey WinCE-aware.
229- Sends wxEVT_HIBERNATE event.
230- Now fakes wxEVT_ACTIVATE_APP to be symmetrical with wxEVT_HIBERNATE.
231- Added wxTE_CAPITALIZE for CAPEDIT controls.
232- wxDialog::GetToolBar can be used if you need to add buttons
233 to the dialog's toolbar.
234
2352.5.4
236-----
237
238All:
239
240- wxEvent and derived classes don't have public members any more, you must
241 use accessors methods now (Mart Raudsepp)
242- new classes for reading and writing ZIP files (M.J.Wetherell)
243- large files support for wxFFile (M.J.Wetherell)
244