]> git.saurik.com Git - wxWidgets.git/blob - docs/changes.txt
Added wxRICHTEXT_SETSTYLE_RESET SetStyleEx() flag to allow for clearing attributes...
[wxWidgets.git] / docs / changes.txt
1 ---------------------------------------------------------------
2 wxWidgets Change Log - For more verbose changes, see the manual
3 ---------------------------------------------------------------
4
5 INCOMPATIBLE CHANGES SINCE 2.6.x
6 ================================
7
8 Changes in behaviour not resulting in compilation errors, please read this!
9 ---------------------------------------------------------------------------
10
11 - For all wxInputStreams, Eof() becomes true after an attempt has been made
12 to read _past_ the end of file.
13 - wxFileName::DirExists() checks if the path of the file is a directory, not
14 if the whole name is a directory.
15 - wxDialog::CreateButtonSizer() may return NULL now, please see the manual.
16 - wxStaticBoxSizer now deletes the associated wxStaticBox when it is deleted.
17 - wxArray::Alloc() now works as reserve() and does not clear the array any more
18 - Windows calling CaptureMouse() are now required to handle the
19 wxEVT_MOUSE_CAPTURE_LOST event and not call ReleaseMouse() in this case.
20 - wxInputStream::GetC() now returns an int in the range 0 - 255 on success
21 instead of a char the range -128 - 127.
22 - A sequence returned by wxFileSystem::FindFirst()/FindNext() may now be
23 be scoped to a single instance of wxFileSystem.
24
25
26 Changes in behaviour which may result in compilation errors
27 -----------------------------------------------------------
28
29 - Some classes (notably wxBitmap and wxImage) don't define operator==() as it
30 used to work in somewhat unexpected way as it compared only internal pointers
31 and not the object data. The code using it will have to be updated:
32 * If the object was compared with wxNullXXX, use IsOk() method instead
33 * If valid object need to be compared, use IsSameAs() to reproduce the old
34 behaviour or change the code to avoid comparing bitmaps &c.
35 - wxFontData::GetColour() now returns a const colour.
36 - wxDC objects can't be created directly now (this never worked, now it doesn't
37 even compile).
38 - wxCHECK family of macros now must be followed by a semicolon.
39 - wxMBConv::cMB2WC() and cWC2MB() take size of the input buffer and return
40 length of the converted string in all cases now.
41 - wxHtmlWindow::OnCellClicked() now returns bool.
42 - wxHtmlCell::OnMouseClick() was deprecated and replaced with
43 wxHtmlCell::ProcessMouseClick(); old code overriding OnMouseClick() will
44 continue to work with WXWIN_COMPATIBILITY_2_6, but should be rewritten to
45 use ProcessMouseClick().
46 - wxHtmlCell::GetCursor() was deprecated and replaced with
47 wxHtmlCell::GetMouseCursor(); old code overriding GetCursor() will
48 continue to work with WXWIN_COMPATIBILITY_2_6, but should be rewritten to
49 use GetMouseCursor().
50 - wxHtmlCell::AdjustPagebreak() signature has changed, update your code if you
51 override it.
52 - wxFontEnumerator::GetFacenames() and GetEncodings() now return arrays and
53 not pointers to arrays.
54 - SetDefaultItem() method was moved from wxPanel to wxTopLevelWindow
55 - wxDialog::OnOK/OnCancel() don't exist any more, use SetAffirmative/EscapeId()
56 - wxPathList doesn't derive from (deprecated) wxStringList any more
57 - wxGLContext class has no 1:1 coupling to a wxGLCanvas class any more.
58 As a consequence, the class interface changed largely. Code updates, if
59 any are required at all, are easy to accomplish though.
60
61
62 Deprecated methods since 2.6.x and their replacements
63 -----------------------------------------------------
64
65 - wxGetWorkingDirectory() deprecated in favour of wxGetCwd().
66 - wxDC::BeginDrawing() and wxDC::EndDrawing() deprecated, don't use them.
67 - wxWindowBase::GetBestFittingSize --> wxWindowBase::GetEffectiveMinSize.
68 - wxWindowBase::SetBestFittingSize --> wxWindowBase::SetInitialSize.
69
70
71 Major new features in 2.8 release
72 ---------------------------------
73
74 - New AUI library supporting docking windows and much more.
75 - New rich text control library implementing a generic wxRichTextCtrl,
76 using only the wxWidgets API. Also includes formatting dialogs, conversion
77 to HTML, and printing classes.
78 - New wxComboCtrl class giving the ability to create custom, graphical
79 comboboxes. Associated classes include wxOwnerDrawnComboBox, wxComboPopup
80 and wxBitmapComboBox.
81 - Further functionality including wxAnimationCtrl (moved from contrib/src/anim
82 and enhanced), wxHtmlSimpleListBox, wxHyperlinkCtrl, wxColourPickerCtrl,
83 wxDirPickerCtrl, wxFilePickerCtrl, wxFontPickerCtrl, wxCollapsiblePane,
84 wxAboutBox, wxTreebook, tar streams.
85
86
87 2.8.0
88 -----
89
90 All:
91
92 - wxArrayString::Alloc() now works as reserve() and doesn't clear array contents
93 - Fixed long standing bug in wxFileConfig groups renaming (Antti Koivisto).
94
95 wxMSW:
96
97 - Fixed version script problems when using configure with cygwin/mingw32.
98 - Use system default paper size for printing instead of A4
99
100 2.7.2
101 -----
102
103 All:
104
105 - Added wxFFile overload to wxFileName::CreateTemporaryFileName().
106 - Added GetTempDir() to wxFileName and wxStandardPaths.
107 - Added wxTar streams.
108 - Added wxFilterFSHandler and wxArchiveFSHandler.
109 - Added wxString::ToLongLong() and ToULongLong().
110
111 All (GUI):
112
113 - wxMemoryDC constructor now optionally accepts a wxBitmap parameter,
114 calling SelectObject itself if a valid bitmap is passed.
115 - Reverted wxBuffered[Paint]DC to pre 2.7.1 state, added
116 wxAutoBufferedPaintDC and wxAutoBufferedPaintDCFactory.
117 - Renamed wxProgressDialog::UpdatePulse() to just Pulse().
118 - Added wxCollapsiblePane (Francesco Montorsi).
119 - Added wxSimpleHtmlListBox (Francesco Montorsi).
120 - Printing framework fixes by Robert J. Lang. Bugs fixed,
121 wxPrinterDC::GetPaperRect() and other functions added to allow
122 easier printing implementation, and the documentation updated.
123 - Many enhancements to wxRichTextCtrl including URL support,
124 formatting and symbol dialogs, print/preview, and better list
125 formatting.
126 - Support for loading TGA files added (Seth Jackson).
127 - Added wxTB_RIGHT style for right-aligned toolbars (Igor Korot).
128 - wxHtmlWindow now generates events on link clicks (Francesco Montorsi).
129 - wxHtmlWindow now also generates wxEVT_COMMAND_TEXT_COPY event.
130
131 Unix Ports:
132
133 - Added autopackage for wxGTK and an example of using autopackage for a wx
134 program (Francesco Montorsi).
135
136 wxGTK:
137
138 - More RTL work.
139 - Support wxALWAYS_SHOW_SB.
140 - Speed up MIME types loading. Only the GNOME database should be loaded under
141 GNOME etc. For this, the code queries the X11 session protocol.
142 - wxCaret redraw problem during scrolling fixed.
143
144
145 2.7.1
146 -----
147
148 All:
149
150 - Added wxDir::FindFirst() (Francesco Montorsi).
151 - Added wxPlatformInfo class (Francesco Montorsi).
152 - Added wxLocale::IsAvailable() (Creighton).
153 - Added Malay translations (Mahrazi Mohd Kamal).
154 - Added reference counting for wxVariant.
155 - For consistency, all classes having Ok() method now also have IsOk() one, use
156 of the latter form is preferred although the former hasn't been deprecated yet.
157 - Added wxFileName::Is(Dir|File)(Writ|Read|Execut)able() (Francesco Montorsi).
158 - Added wxFileName::GetSize() and GetHumanReadableSize() (Francesco Montorsi).
159 - Added wxSizer::Replace (Francesco Montorsi).
160 - wxXmlDocument can now optionally preserve whitespace (Francesco Montorsi).
161 - Added wxBookCtrl::ChangeSelection() and wxTextCtrl::ChangeValue() to provide
162 event-free alternatives to SetSelection() and SetValue() functions; see the
163 "Events generated by the user vs programmatically generated events" paragraph
164 in the "Event handling overview" topic for more info.
165
166 All (GUI):
167
168 - Support for right-to-left text layout (started by Diaa Sami during Google Summer of
169 Code, with a lot of help from Tim Kosse and others).
170 - wxAnimationCtrl added (Francesco Montorsi).
171 - Added wxAboutBox() function for displaying the standard about dialog.
172 - Added wxID_PAGE_SETUP standard id.
173 - Added wxSize::IncBy() and DecBy() methods.
174 - Added wxTextCtrl::IsEmpty().
175 - Added file type parameter to wxTextCtrl::LoadFile, wxTextCtrl::SaveFile for
176 consistency with wxRichTextCtrl.
177 - wxRichTextCtrl: fixed range out-by-one bug to be consistent with wxTextCtrl API,
178 fixed some attribute bugs and added wxRichTextStyleComboCtrl.
179 - Added wxWindow::IsDoubleBuffered().
180 - Added wxHL_ALIGN_* flags to wxHyperlinkCtrl (Francesco Montorsi).
181 - Added wxGauge::Pulse() and wxProgressDialog::UpdatePulse() (Francesco Montorsi).
182
183 wxMSW:
184
185 - Implemented wxComboBox::SetEditable().
186 - wxSemaphore::Post() returns wxSEMA_OVERFLOW as documented (Christian Walther)
187 - Fixed a bug whereby static controls didn't use the correct text colour if the
188 parent's background colour had been set (most noticeable when switching to a
189 high-contrast theme).
190 - Respect wxBU_EXACTFIT style in wxToggleButton (Alexander Borovsky).
191
192 wxMac:
193
194 - Add parameter to the --enable-universal_binary configure option for the path
195 to the SDK.
196
197 wxGTK:
198
199 - Automatically use stock items for menu items with standard ids.
200 - Setting cursor now works for all controls.
201 - Implemented right-to-left support.
202 - Implemented left indentation and tab stops support in wxTextCtrl (Tim Kosse).
203 - Fixed wxHTML rendering of underlined text of multiple words (Mart Raudsepp).
204
205 wxUniv:
206
207 - Added wxTLW::UseNativeDecorations() and UseNativeDecorationsByDefault().
208
209
210 2.7.0
211 -----
212
213 All:
214
215 - Added positional parameters support to wxVsnprintf() (Francesco Montorsi).
216 - wx(F)File, wxTextFile and wxInputStreams recognize Unicode BOM now.
217 - Many fixes for UTF-16/32 handling in Unicode builds.
218 - wxLaunchDefaultBrowser() now supports wxBROWSER_NEW_WINDOW flag.
219 - Added wxStandardPaths::GetResourcesDir() and GetLocalizedResourcesDir()
220 - Added wxStandardPaths::GetDocumentsDir() (Ken Thomases).
221 - Added wxStringTokenizer::GetLastDelimiter(); improved documentation.
222 - Fixed wxTextFile in Unicode build.
223 - Added possibility to specify dependencies for a wxModule.
224 - Speed improvements to wxRegEx when matching is done in a loop such as
225 during a search and replace.
226 - Fix regerror and regfree name conficts when built-in regex and system regex
227 are both used in the same program.
228 - Basic authentication supported added to wxHTTP.
229 - wxCondition::WaitTimeout() now returns correct value when timeout occurs.
230 - Fixed occasional wxThread cleanup crash.
231 - Bug in wxLogStream::DoLogString in Unicode builds fixed.
232 - Added support for memo fields to wxODBC.
233 - Fixed Unicode builds using SunPro compiler by defining__WCHAR_TYPE__.
234 - wxFileName now also looks for TMPDIR on Unix.
235 - Fixed build error in list.h with VC++ 2005.
236 - Fixed wxODBC buffer overflow problem in Unicode builds.
237 - Fixed wxSocketBase::InterruptWait on wxBase.
238 - Important code cleanup (Paul Cornett).
239 - Added support for wxLongLong in wx stream classes (Mark Junker).
240 - wxSOCKET_REUSEADDR can be used with wxSocketClient.
241 - Overloaded Connect() and SetLocal() methods for binding to local address/port.
242 - Albanian translation added (Besnik Bleta).
243 - Assert messages now show the function in which assert failed.
244 - wxApp::OnAssertFailure() should now be used instead the old wxApp::OnAssert().
245 - Fixed several bugs in wxDateTime::ParseDate().
246 - The WXK*PRIOR and WXK*NEXT constants are now aliases for WXK*PAGEUP
247 and WXK*PAGEDOWN. If you have switch statements that use both
248 constants from a set then you need to remove the PRIOR/NEXT
249 versions in order to eliminate compiler errors.
250 - Fixed bug where wxDateTime::Now() would sometimes return an incorrect value
251 the first time it was called.
252 - Added wxString::rbegin() and rend().
253 - Added wxString::EndsWith().
254 - wxSocket::_Read continues reading from socket after exhausting pushback buffer.
255 Previously, only the buffer would be returned, even if more data was requested.
256 - Added wxPowerEvent (currently MSW-only).
257 - Make wx-config compatible with Bourne shells.
258 - Fixed wxDb::Open(wxDbConnectInf) when using connection string (Hellwolf Misty).
259 - Fixed crash in wxDb::Open() in Unicode build (Massimiliano Marretta).
260 - Fixed wxTimeSpan::Format() for negative time spans.
261 - Optionally count repeating wxLog messages instead of logging all (Lauri Nurmi).
262
263 All (GUI):
264
265 - New AUI (Advanced User Interface) library for docking windows and much more.
266 - Added wxComboCtrl and wxOwnerDrawnComboBox (Jaakko Salli).
267 - Added wxTreebook (uses a wxTreeCtrl to control pages).
268 - Added wxColour/Dir/File/Font/PickerCtrls (Francesco Montorsi).
269 - Added wxDC::GradientFillLinear/Concentric().
270 - Added wxHyperlinkCtrl (Francesco Montorsi).
271 - Added clipboard events (wxEVT_COMMAND_TEXT_COPY/CUT/PASTE).
272 - Allow to reorder wxGrid columns by drag-and-drop (Santiago Palacios).
273 - Added wxRadioBox::SetItemToolTip().
274 - Added support for CMYK JPEG images loading (Robert Wruck).
275 - Added wxListCtrl::GetSubItemRect() and subitem hit testing (Agron Selimaj).
276 - Added wxKeyEvent::GetModifiers().
277 - Added wxDialog::SetEscapeId().
278 - wxItemContainerImmutable::FindString unified (affects wxRadioBox, wxListBox,
279 wxComboBox and wxChoice).
280 - wxWindow::Fit() now works correctly for frames and dialogs too.
281 - Added access to the border size between pages and controller in book
282 based controls (wxBookCtrlBase::Get/SetInternalBorder).
283 - Added initial wxRichTextCtrl implementation.
284 - All book based controls (notebook, treebook etc.) share now the same
285 options for orientation (wxBK_TOP, wxBK_DEFAULT, ...) instead of duplicated
286 wxLB_TOP, wxNB_TOP, wxCHB_TOP, wxTBK_TOP.
287 - Added parent window parameter to wxHelpController constructor
288 and added SetParentWindow/GetParentWindow.
289 - wxMultiChoiceDialog uses now wxCheckListBox if possible, wxListBox if not.
290 - Added wxBitmapButton::SetHoverBitmap().
291 - Access to titles through Get/SetTitle is available now only for top level
292 windows (wxDialog, wxFrame).
293 - Fixed memory leak of pending events in wxEvtHandler.
294 - Added wxRadioBox::IsItemEnabled/Shown().
295 - Added space after list item number in wxHTML.
296 - Implemented <sub> and <sup> handling in wxHTML (based on patch
297 by Sandro Sigala).
298 - Added caption parameter to wxGetFontFromUser and wxGetColourFromUser.
299 - Added wxGetMouseState function.
300 - Added wxHtmlHelpWindow, wxHtmlHelpDialog and wxHtmlModalHelp classes,
301 allowing HTML help to be embedded in an application.
302 - wxCalendarCtrl positioning and hit-testing fixes for dimensions other than
303 best size.
304 - wxCalendarCtrl colour schema changed and adjusted to system settings.
305 - wxImage::Mirror() and GetSubBitmap() now support alpha (Mickey Rose).
306 - More checking of image validity before loading into wxImage.
307 - Added wxImage::ConvertToGreyscale.
308 - Added ability to use templates with static event tables
309 with BEGIN_EVENT_TABLE_TEMPLATEn() macros.
310 - Added play, pause, and state change events to wxMediaCtrl.
311 - Added double-buffering to wxVListBox and fixed a scrolling issue.
312 - Added wxToolbook (uses a wxToolBar to control pages).
313 - Added SetSheetStyle to wxPropertySheetDialog and allowed it to
314 behave like a Mac OS X settings dialog.
315 - Added <disabled> XRC tag for wxToolBar elements and <bg> for wxToolBar itself.
316 - Fixed centering of top level windows on secondary displays.
317 - Implemented wxDisplay::GetFromWindow() for platforms other than MSW.
318 - UpdateUI handler can now show/hide the window too (Ronald Weiss).
319 - More than one filter allowed in in wxDocTemplate filter.
320 - Added wxListBox::HitTest().
321 - Added wxDisplay::GetClientArea().
322 - Indices and counts in wxControlWithItems derived API are unsigned.
323 - Added support for links to wxHtmlListBox; use code has to override
324 wxHtmlListBox::OnLinkClicked() to take advantage of it.
325 - Added an easier to use wxMenu::AppendSubMenu().
326 - wxString <-> wxColour conversions in wxColour class (Francesco Montorsi).
327 - Fixed bug with ignoring blank lines in multiline wxGrid cell labels.
328 - Added wxTextAttr::Merge() (Marcin Simonides).
329 - Added wxTB_NO_TOOLTIPS style (Igor Korot).
330 - Added wxGenericDirCtrl::CollapsePath() (Christian Buhtz).
331 - Added wxTreeCtrl::ExpandAllChildren() (Christian Buhtz)
332 - Fixed 64-bit issue in wxNotebook causing segfaults on Tru64 Unix.
333 - Made it possible to associate context help to a region of a window.
334 - Added support for tabs in wxRichTextCtrl (Ashish More).
335 - Fixed problem with zoom setting in print preview.
336 - Moved wxRichTextCtrl from the advanced library to its own.
337 - wxNB_HITTEST_* flags renamed to wxBK_HITTEST_* to serve all book controls.
338 - Added wxTopLevelWindow::SetTransparent and CanSetTransparent, with
339 implementations (so far) for wxMSW and wxMac.
340 - Allow customizing individual grid lines appearance (Søren Lassen).
341 - Fixed middle click events generation in generic wxTreeCtrl (Olly Betts).
342 - Added wxEVT_MOUSE_CAPTURE_LOST event that must be handled by all windows
343 that CaptureMouse() is called on.
344
345 wxMSW:
346
347 - Fixed crash with ownerdrawn menu items accelerators (Perry Miller).
348 - wxFileDialog respects absence of wxCHANGE_DIR flag under NT (Brad Anderson).
349 - Switching page of a hidden notebook doesn't lose focus (Jamie Gadd).
350 - Removed wxImageList *GetImageList(int) const.
351 - Fixed MDI context menu problem.
352 - Removed __WIN95__ define.
353 - Create msw/rcdefs.h in setup.h's directory, which can be included by
354 resource files. It containts platform/compiler specific defines (such as
355 target cpu) which can be used in #ifs in .rc files.
356 - Add support for Win64 manifests and VC++ 8 automatic manifests (see the
357 wxMSW faq for details).
358 - New TARGET_CPU=amd64 (or 'ia64') option for the makefile.vc files which
359 puts 64-bit builds in their own directory and adds /machine:amd64 or ia64
360 to the link command.
361 - wxStatusBar::GetFieldRect now returns correct values under XP.
362 - wxStatusBar no longer corrupts surrounding windows on resize.
363 - Enable wxListCtrl in report mode to be able to use images in other
364 columns, if ComCtl32 >= 470.
365 - Fixed problem where using SetValue and wxTE_RICH2 would cause control to
366 show.
367 - Numpad special keys are now distinguished from normal keys.
368 - Fixed GDI leak in wxStaticBitmap when setting images after
369 initial construction.
370 - Menu codes now stripped before measuring control labels.
371 - MFC sample now compiles in Unicode mode.
372 - Fixed SetScrollbar thumb size setting bug (set orientation before triggering
373 events).
374 - Fixed icon to cursor conversion problem for bitmaps with masks.
375 - Fixed wxToolBar background colour problem for some video cards.
376 - wxGenericDirCtrl now shows volume name.
377 - Added XP theme support for DrawHeaderButton, DrawTreeItemButton.
378 - Made the wxActiveXContainer class public and documentated.
379 - Added a Windows Media Player 9/10 backend for wxMediaCtrl.
380 - Multiline notebook tab label change now resizes the control
381 correctly if an extra row is removed or added.
382 - Fixed a crash when dismissing wxPrintDialog under VC++ 7.1.
383 - Fixed out by one error in wxTextCtrl::GetStyle.
384 - Fixed problem with getting input in universal/unicode build of wxMSW.
385 - Link oleacc.lib conditionally.
386 - Drag and drop now works inside static boxes.
387 - Fall back to unthemed wxNotebook if specified orientation not available.
388 - wxListCtrl and wxTreeCtrl now resize their standard font if the user
389 changes the system font.
390 - wxDisplay doesn't require multimon.h now and is enabled by default (Olly Betts).
391 - Fixed wxChoice/wxComboBox slow appending and infinite recursion
392 if its size is set within a paint handler (for example when embedded in a
393 wxHtmlWindow). [Now reverted due to problems in W2K and below.]
394 - wxDC::GetTextExtent() width calculation is more precise for italics fonts now.
395 - Warning fixes for VC++ 5.0 (Igor Korot).
396
397 wxGTK:
398
399 - Fixed handling of font encoding in non-Unicode build
400 - wxEVT_MENU_CLOSE and wxEVT_MENU_OPENED for popup menus are now generated.
401 - Implemented wxCURSOR_BLANK support.
402 - wxSlider generates all scroll events now and not only wxEVT_SCROLL_THUMBTRACK.
403 - Fixed a host of bugs in wxMediaCtrl as well as added a GStreamer 0.10
404 implementation.
405 - Improved configure checks for GStreamer. You may also now specify
406 --enable-gstreamer8 to force configure to check for GStreamer 0.8.
407 - Fixed problem with choice editor in wxGrid whereby the editor
408 lost focus when the combobox menu was shown.
409 - Fixed focusing with mnemonic accelerator keys on wxStaticText which
410 is now able to focus on wxComboBox and possibly other controls
411 previously unable to be focused before.
412 - Enabled mnemonics and the corresponding accelerator keys for
413 wxStaticBox and wxRadioBox.
414 - Fixed problem trying to print from a preview, whereby wrong printer
415 class was used.
416 - Worked around pango crashes in strncmp on Solaris 10.
417 - Polygon and line drawing speeded up if there is no scaling.
418 - Fixed problems with CJK input method.
419 - Implemented ScrollLines/Pages() for all windows (Paul Cornett).
420 - Support underlined fonts in wxTextCtrl.
421 - Support all border styles; wxListBox honours the borders now.
422 - wxWindow and wxScrolledWindow now generate line, page and thumb-release scroll events.
423 - Added file preview support in file dialogs.
424 - Implemented SetLineSize and GetLineSize for wxSlider.
425
426 wxMac:
427
428 - Fixed problem with clipboard support for custom data flavors.
429 - Fixed focus handling for generic controls in carbon-cfm.
430 - Fixed a printing crash bug, for example using File->Print and changing
431 Popup from 'Copies & Pages' to e.g. 'Layout'.
432 - Improved support for help and application menu items.
433 - Added default implementations for wxTextCtrl::Replace and wxTextCtrl::Remove.
434 - Added support for 10.4 context menu.
435 - Added support for wxFRAME_EX_METAL and wxDIALOG_EX_METAL styles.
436 - Added wxNotebook::HitTest support.
437 - Corrected idle wake-up.
438 - Corrected wxExecute.
439 - Now makes use of full printer resolution.
440 - Corrected CGImage handling in wxBitmap.
441 - Now uses simple hide/show transition for top-level windows.
442 - Uses reasonable temporary path for wxFileName::CreateTempFileName.
443 - Added support for default key handling (escape, enter, command-period) even
444 if there is no control on the frame or dialog that has the focus.
445 - Fixed joystick bugs including a link error and a crash if no joysticks
446 were found.
447 - Removed an errorneous assertion from wxDir.
448 - Uses CoreFoundation based and thread-safe implementation for message boxes
449 under Mach-O.
450 - wxBitmapButton is created as a content icon if wxBORDER_NONE is
451 specified, otherwise as a bevel button.
452 - Mouse event ids set correctly (fixing problems with Connect in particular).
453 - Fixed wxZipInputStream read error on wxSocketInputStream which signals the
454 end of file with an error.
455 - Xcode wxWidgets and minimal sample project files updated to create Universal
456 binaries.
457 - Fix for setting wxMenuBar more than once.
458 - wxListBox minimum size bug fixed.
459 - Fixed wxNotebook off-by-one bug in HitTest.
460 - Fixed joystick GetXMin/Max bug.
461 - Fixed Unix domain socket problem in wxIPC.
462 - Fixed non-detection of process termination on Intel Macs by
463 polling for process termination in a separate thread.
464
465 wxCocoa:
466
467 - wxDirDialog is now native (Hiroyuki Nakamura).
468
469 wxWinCE:
470
471 - Pressing build-in joystick on WinCE phones fires wxEVT_JOY_BUTTON_DOWN event.
472 - Native wxCheckListBox implementation.
473 - All wxTopLevelWindows resizes accordingly to SIP visibility.
474 - ::wxGetUserName() implemented.
475 - wxDisplay enumeration support.
476 - Fixed wxFileDialog breakage on WinCE due to incorrect structure size.
477 - New wxSystemOption "wince.dialog.real-ok-cancel" to switch between WinCE
478 guidelines with Ok-only dialogs and dialogs using wxButtons.
479 - Checkable items in wxToolMenuBarTool supported.
480 - Fixed date formatting and mktime.
481 - Fixed getting standard folder paths on WinCE.
482 - Support for backspace key on Smartphone.
483 - Made both windows wxMediaCtrl Windows backends compilable with wxWinCE - it
484 is recommended that you use wxMEDIABACKEND_WMP10 on this platform
485 directly, however.
486 - Added support for the context menu event (wxContextMenuEvent)
487 and added platform-specific wxWindow::EnableContextMenu.
488 - Fixed wxGenericFileDialog to work with WinCE.
489 - Fixed compilation and menubar disappearance on Windows Mobile 5.
490 - Fixed wxDatePickerCtrl usage.
491
492 wxUniv:
493
494 - Send wxEVT_SCROLL_XXX events from wxSlider (Danny Raynor).
495 - Implemented wxToggleButton (David Bjorkevik).
496 - Label in Toolbar tools implemented (Danny Raynor).
497
498 wxX11:
499
500 - Invisible text problem fixed.
501 - Bitmap clipping with masks and scaling improved.
502 - Fixed a crash bug in the generic timer.
503 - Implemented child process termination notifications (David Björkevik)
504
505 Unix:
506
507 - NO_GCC_PRAGMA is not used any more, remove checks for it if you used it.
508
509 wxMGL:
510
511 - Fixed NUM_LOCK having no effect.
512 - Fixed wxFileExists (affecting wxImage::LoadFile).
513
514
515 2.6.2
516 -----
517
518 All:
519
520 - Fixed wxScopeGuard to work with VC++, documented it.
521 - Fixed proxy handling in wxURL.
522 - Added wxEVT_MEDIA_LOADED event for wxMediaCtrl.
523 - Added new methods to wxMediaCtrl (wxURI version of Load, ShowPlayerControls).
524 - Added wxZipFSHandler::Cleanup() (Stas Sergeev).
525 - Added wxImage::RotateHue() and RGB <-> HSV conversions (John Anderson).
526 - Fixed compilation with IBM xlC compiler.
527 - wxABI_VERSION, see 'Backward Compatibility' topic overview in the manual.
528 - Added wxLongLong::ToDouble().
529 - Added wxDateTime::[Make]FromTimezone(), fixed several TZ-related bugs.
530 - Fixed bug in wxStreamBuffer::Read(wxStreamBuffer *) (Paul Cornett).
531 - Fixed wxListbook and wxChoicebook internal layout.
532
533 All (GUI):
534
535 - Added wxStaticText::Wrap()
536 - wxChoice and wxComboBox::GetSelection() now returns completed selection,
537 added a new GetCurrentSelection() function having the old behaviour.
538 - Added wxXmlResource::Unload().
539 - Possibility of modeless wxWizard dialog (with presentation in sample).
540 - Fixed a rare crash due to malformed HTML in wxHTML (Xavier Nodet).
541 - Ctrl+mouse wheel changes zoom factor in print preview (Zbigniew Zagórski).
542 - Cross-compile now supported for wxGTK, wxX11 and wxMotif.
543 - Cygwin compilation of wxX11, wxGTK and wxMotif now supported.
544 - Now reads "help" parameter for all windows (context help text).
545 - wxWizard adapts to PDA-sized screens.
546 - Unicode fixes for IPC and a new IPC sample (Jurgen Doornik).
547
548 wxMSW:
549
550 - wxMSW now builds with (beta of) MSVC 8 (a.k.a. 2005).
551 - Separators are now correctly shown in the toolbars under Windows XP.
552 - Fixed multiline tooltips handling.
553 - Fixed wxSlider::GetSelEnd() (Atilim Cetin).
554 - Fixed accelerators of menu items added to already attached submenus.
555 - Position of wxEVT_MOUSEWHEEL events is now in client, not screen, coordinates.
556 - Handle absence of wxListCtrl column image better (Zbigniew Zagórski).
557 - Fixed asynchronous playback of large sound files in wxSound.
558 - Added wxDynamicLibrary::GetSymbolAorW().
559 - Fixed default size of wxStaticText controls with border being too small.
560 - Fixed bugs with wxStatusBar positioning (with or withour sizers) (Jamie Gadd).
561 - Mouse move events are now generated for all static controls (Jamie Gadd).
562 - Fixed nested static box display and splitter sash on some themes (Jamie Gadd).
563 - Made wxJoystick::GetProductName() more useful (John Ratliff).
564 - Native spline drawing implementation (Wlodzimierz ABX Skiba).
565
566 wxGTK:
567
568 - ShowFullScreen() shows the window if it was still hidden (rpedroso).
569 - Implemented wxTopLevelWindow::RequestUserAttention() (Mart Raudsepp).
570 - Base library is now binary compatible when built with wxGTK and wxMotif.
571 - wxTextCtrl::XYToPosition, PositionToXY and GetLineLength calls are now
572 instantaneous in case of GTK 2.x multi-line controls (Mart Raudsepp).
573 - Added support for left, centre and right text alignment attributes under
574 GTK+2 multi-line text controls (Mart Raudsepp).
575 - Various wxFont improvements for GTK 2.x builds (Mart Raudsepp).
576 - Changed order of child deletion in window destructor and
577 removed focus handlers to avoid spurious events (David Surovell).
578 - Fixed domain socket handling.
579
580 wxMac:
581
582 - First implementation of native HIToolbar support.
583 - Added text control context menu (ported from wxMSW).
584 - More CoreGraphics implementation improvements.
585 - Various text control bug fixes.
586 - Automatic menu management improved.
587 - Fixed crash when wxRadioButton is deleted from a group of radio buttons,
588 due to dangling cycle pointers.
589 - Native spline drawing implementation for CoreGraphics (Robert J. Lang).
590 - Made wxDialog::IsModal meaning the same as other ports (true only when
591 showing modally).
592
593 wxOS2
594
595 - Adjustments for building with Open Watcom C++.
596
597 wxUniv:
598
599 - Window creation now honours wxVSCROLL.
600 - Standalone scrollbars generate events of correct type (Jochen Roemmler).
601
602 wxMotif:
603
604 - Base library is now binary compatible when built with wxGTK and wxMotif.
605 - wxMotif can now display Japanese text under Japanese locale.
606 - Fixed button size in common dialogs.
607 - Made wxFileDialog translatable.
608 - All top level windows should now have a border unless the wxNO_BORDER
609 flag has been specified.
610 - Improved wxNotebook support for sizers. It requires the wxNotebook to
611 be created with a "sensible" initial width.
612 - Made wxDialog::IsModal meaning the same as other ports (true only when
613 showing modally).
614
615 wxMGL:
616
617 - Fixed crash on exit.
618 - Fixed drawing problems when windows are resized.
619
620 wxX11:
621
622 - Various wxFont improvements for unicode builds (Mart Raudsepp).
623
624
625 2.6.1
626 -----
627
628 All:
629
630 - Added wxLaunchDefaultBrowser.
631 - Added wxPLURAL() macro in addition to _() (Jonas Rydberg)
632
633 All (GUI):
634
635 - Fixed potential infinite loop when adjusting wxScrolledWindow scrollbars.
636 - Radio in menus do not send menu event for selections of already selected item.
637 - Fixed wrong positioning of marks and enumerations in lists of wxHTML.
638 - wxImage::Rotate90 respects alpha channel.
639 - Added wxEVT_SCROLL_CHANGED as synonym for wxEVT_SCROLL_ENDSCROLL.
640 - Replaced artwork for some cursors, icons and toolbar buttons.
641 - Fixed sizing problem in generic wxCalendarCtrl for short day abbreviations.
642 - Fixed wxWindow::DoGetBestSize to keep original best size.
643 - PNM now supports ASCII and raw grey formats.
644 - wxGrid focus and edit key improvements.
645
646 wxMSW:
647
648 - Fixed erroneous selection of content in wxComboBox when within a wxStaticBox
649 (checking for selection caused by WM_STYLECHANGED).
650 - Added deferred positioning to wxRadioBox, wxSlider and wxSpinCtrl and thereby
651 eliminated some refresh glitches when resizing.
652 - Eliminated further refresh glitches caused by wxRadioBox (to nearby controls)
653 by refreshing parent when the radio box moves.
654 - Added ability set the system option "msw.staticbox.optimized-paint" to 0 to
655 allow a panel to paint graphics around controls within a static box.
656 - Refresh exposed areas when resizing, using WM_WINDOWPOSCHANGED.
657 - Worked around an apparent bug in deferred window positioning (moving a
658 window from (x, y) to (a, b) and back to (x, y) misses the last step) by
659 checking window positions against corresponding sizer state, if any.
660 - A control's text colour now reflects the system colour setting.
661 - Fixed wxFileName::GetLongPath() to behave correctly during the first call too.
662 - Fixed alpha blitting to take into account source position.
663 - Setting foreground colour for wxCheckBox now works when using XP themes too.
664 - wxStaticBox label can use custom foreground colour.
665 - Now uses newer font MS Shell Dlg 2 if possible.
666 - Compiles again with WIN64.
667 - Winelib compilation now works.
668 - When converting a wxIcon to a bitmap check if the icon has an alpha
669 channel and set the bitmap to use it.
670 - wxSlider now also sends wxEVT_SCROLL_CHANGED when using mouse wheel
671 - Miscellaneous wxMediaCtrl improvements.
672 - wxTopLevelWindow::ShowFullScreen logic error fixed.
673 - Fixed wxScrollBar background colour bug.
674 - Fixed problems with paper sizes being ignored.
675 - wxNotebook refresh problem fixed.
676 - DDE fixed for Unicode.
677 - Fixed ownerdrawn multiline buttons.
678 - wxCheckListBox item background fixed.
679 - Fixed error when trying to read a value from key not accessible for writing.
680 - Fixed keyboard cue visibility issues under Windows 2000/XP
681
682 wxWinCE:
683
684 - Fixed wxFileName::CreateTempFileName.
685
686 wxGTK:
687
688 - Added support for wxSTAY_ON_TOP (GTK 2.4+).
689 - Fixed wxTextCtrl::SetStyle for overlapping calls.
690 - Fixed scrollbar border colour.
691 - Added bitmap support in menus.
692
693 wxMac:
694
695 - Added support for launching 'APPL' bundles with wxExecute (usually they have a
696 .app extension and are the ones that reside in the Applications folder).
697 - Fixed a bug in wxGetKeyState where shift and some other keys were returning an
698 incorrect state.
699 - Fixed toolbar colour bug on Tiger.
700 - Fixed visual problems caused by removal of About menu item.
701 - Window menu now added automatically.
702 - Configure fixed for wxBase compilation.
703 - Modified function key support fixed.
704 - wxTopLevelWindow::Maximize improvements.
705
706 wxX11:
707
708 - Menu problems fixed.
709 - wxScrolledWindow scrolls any child windows.
710 - Fixed a font memory leak.
711 - Multiple wxTimers now work correctly.
712
713
714 2.6.0
715 -----
716
717 All:
718
719 - wxPathExists deprecated, use wxDirExists instead.
720 - Configure: --enable-std_iostreams, --enable-std_string are now the default.
721
722 All (GUI):
723
724 - Fixed ~wxStatusBar and ~wxToolBar which tried to check
725 non-existent wxFrameBase RTTI, causing a crash if not in a frame.
726
727 wxMSW:
728
729 - Fixed static box border when the label is empty.
730 - Fixed SetBackgroundColour() to change only label background, not entire box.
731 - wxHelpController is now aliased to wxCHMHelpController.
732
733 wxWinCE:
734
735 - Fixed device origin setting and clipping region setting.
736
737 wxGTK:
738 - New configure syntax for specifying the GTK+ version.
739 --with-gtk Use GTK 2.x, no fallback
740 --with-gtk=1 Use GTK 1.2, no fallback
741 --with-gtk=2 Use GTK 2.x, no fallback
742 --with-gtk=any Use any available GTK
743 - wxMenuItem::SetText() takes care of hotkeys, too.
744 - Reworked text wrapping for wxStaticText.
745
746 wxMac:
747 - Implemented most of the wxFileType and wxMimeTypesManager functions
748
749 2.5.5
750 -----
751
752 All:
753
754 - wxURI::GetUser() only returns the user name now, use GetUserInfo() to get
755 user and password as in 2.5.4; wxURI::GetPassword() added.
756 - Added wxDebugReport class.
757 - Added wxTempFileOutputStream by Stas Sergeev.
758 - Fixed wxDateTime::SetToWeekDayInSameWeek(Sun, Monday_First).
759 - Added WXK_SPECIAL keycodes for special hardware buttons.
760 - Fixed bug with wxFile::Seek(-1, wxFromCurrent).
761 - Added wxString/C array constructors to wxArrayString.
762 - Added wxMemoryInputStream(wxMemoryOutputStream&) constructor (Stas Sergeev)
763
764 All (GUI):
765
766 - Added GetIcon, GetBitmap to wxImageList. wxGenericImageList's original
767 GetBitmap is renamed GetBitmapPtr.
768 - Added XPM data constructor to wxImage.
769 - Added style parameter to wxBufferedDC to allow buffering just the client, or
770 the whole virtual area.
771 - Restored ability to set a custom splitter sash size with SetSashSize.
772 - Fixed wxScrolledWindow sizer behaviour so that the virtual size
773 isn't used to set the window size.
774 - Added wxTE_BESTWRAP (based on patch by Mart Raudsepp).
775 - wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED is now only sent once at the end of
776 splitter dragging and not after each CHANGING event (Jacobo Vilella Vilahur).
777 - Added wxImage::IsTransparent().
778
779 Unix:
780
781 - Fixed build on Linux/AMD64.
782
783 wxMSW:
784
785 - Added "orient" parameter to wxMDIParentFrame::Tile().
786 - wxTextCtrl with wxTE_RICH2 style now uses RichEdit 4.1 if available.
787 - fix handling Alt-key events in wxComboBox (reported by Joakim Roubert).
788 - wxWindow::Refresh() refreshes the window children as well.
789 - Improved static box and radio box refresh and background colour
790 handling (Jamie Gadd).
791
792 wxGTK:
793
794 - Improved wxSystemSettings::GetMetric() to work better with X11 (Mart Raudsepp).
795 - Corrected wxListBox selection handling.
796 - Corrected default button size handling for different themes.
797 - Corrected splitter sash size and look for different themes.
798 - Fixed keyboard input for dead-keys.
799 - Added support for more wrapping styles (Mart Raudsepp).
800 - GTK2.4+ wxFileDialog reimplemented to support non-modal usage better,
801 and fix all known bugs (Mart Raudsepp).
802
803 wxMac:
804
805 - Added wxFRAME_EX_METAL, wxDIALOG_EX_METAL for metallic-look windows.
806
807 wxPalmOS:
808
809 - Native wxRadioBox implementation.
810
811 wxWinCE:
812
813 - Added wxNB_FLAT for flat-look notebooks on Windows CE.
814 - Titlebar OK button on PocketPC now sends command set by SetAffirmativeId.
815 You can also override wxDialog::DoOK if you need more flexibility.
816 - Dialog size now takes into account SIP or menubar.
817 - Panels more naturally white on PocketPC.
818 - wxDIALOG_EX_CONTEXTHELP ignored on WinCE since it interferes
819 with correct titlebar style.
820 - Frames have Ctrl+Q accelerator set automatically, as per the
821 PocketPC guidelines
822 - Documented issues in manual under wxWinCE topic.
823 - Made (Un)RegisterHotKey WinCE-aware.
824 - Sends wxEVT_HIBERNATE event.
825 - Now fakes wxEVT_ACTIVATE_APP to be symmetrical with wxEVT_HIBERNATE.
826 - Added wxTE_CAPITALIZE for CAPEDIT controls.
827 - wxDialog::GetToolBar can be used if you need to add buttons
828 to the dialog's toolbar.
829
830 2.5.4
831 -----
832
833 All:
834
835 - wxEvent and derived classes don't have public members any more, you must
836 use accessors methods now (Mart Raudsepp)
837 - new classes for reading and writing ZIP files (M.J.Wetherell)
838 - large files support for wxFFile (M.J.Wetherell)
839 - classes in the manual are now cross-referenced (Zbigniew Zagórski)
840 - Norwegian (Bokmål) translation added (Hans F. Nordhaug)
841 - wxDynamicLibrary::HasSymbol() added
842 - added wxEXEC_NODISABLE flag to be used with wxExecute(wxEXEC_SYNC)
843 - added wxTextInputStream::operator>>(wchar_t) for compilers which support this
844 - added wxURI, a class for dealing with Uniform Resource Identifiers
845 - changed wxURL to inherit from wxURI and provide assignment and comparison
846 - implemented wxConvUTF7 (modified patch from Fredrik Roubert)
847 - added versions of MB2WC and WC2MB for wxMBConv that works for embedded null chars
848 - Unicode support in wxODBC is now fully implemented
849 - A new data type specific to wxWidgets called SQL_C_WXCHAR has been introduced.
850 SQL_C_WXCHAR should be used rather than SQL_C_CHAR to ensure transparent
851 behavior between Unicode and non-unicode builds
852 - BLOB example added to samples/db (thanks to Casey O'Donnell)
853 - use wxStream::GetLength() instead of deprecated GetSize()
854 - wxGetOsDescription() is now more precise (Olly Betts)
855 - XRC supports system fonts and colours (Ray Gilbert)
856 - Added flags argument to wxKill/wxProcess::Kill to kill child processes.
857 - Added wxPrintFactory classes so that it is possible to add a new
858 print system backend at run-time. This was required by the new GNOME
859 printing stuff in the GTK port.
860 - Deprecated print setup dialog.
861 - Added support to the wxODBC classes for Firebird 1.5 database
862 - The samples/db sample program now includes an optional example of using a BLOB
863 datatype (if BLOB support is enabled and supported by the database)
864 - added wxDynamicLibrary::ListLoaded()
865 - wxGetPowerType() and wxGetBatteryState() addition
866 - wxSystemSettings::GetSystem*() members deprecated and replaced with
867 wxSystemSettings::Get*()
868 - wxWindowBase::DoGetBestSize now includes the difference (if any) between
869 the client size and total size of the window. Code that sets the
870 client size using the best size, or that added extra space to sizers
871 to compensate for this bug may need to be changed.
872 - Changed calculation of scrolling area to not clip away some bits
873 due to a rounding error.
874 - Changed GetVirtualSize() to return client size by default until
875 SetVirtualSize() gets called. From then on it will only return that.
876 - Various changes to how wxListCtrl and wxTreeCtrl react to right
877 mouse clicks and left mouse click for starting a drag operation.
878 - "Alt" key (VK_MENU) now results in WXK_ALT keyboard event, not WXK_MENU
879 - wxFFile::ReadAll() now takes an optional wxMBConv parameter
880 - wxCommandProcessor::MarkAsSaved() and IsDirty() added (Angela Wrobel)
881 - added wxStackWalker and related classes (Win32 and some Unix versions only)
882
883
884 All (GUI):
885
886 - added wxMediaCtrl
887 - added wxDatePickerCtrl
888 - wxHtmlWindow now supports background images given in <body> tag
889 - wxSplitterWindow now supports gravity parameter (Zbigniew Zagórski)
890 - recursive wxSizer::GetItem returns item of given window, sizer or nth index
891 - wxLayoutConstraints now use best size, not current size, for AsIs() condition
892 - wxSizer::Add/Insert etc. now returns pointer to wxSizerItem just added and this
893 item remembers its wxRect area (Brian A. Vanderburg II)
894 - wxBookCtrl renamed to wxBookCtrlBase, wxBookCtrl is reserved for most native
895 book control (for now wxChoicebook for MSSmartphone, wxNotebook for others).
896 Necessary event macros, types and styles mapped accordingly.
897 - new wxBrush::IsHatch() checking for brush type replaces IS_HATCH macro
898 - wxProgressDialog accepts smooth gauge again (wxPD_SMOOTH style)
899 - wxProgressDialog new style: wxPD_CAN_SKIP which provides skipping some parts
900 of the progress (with new "Skip" button in dialog)
901 - wxGenericListCtrl::SetItemState(-1) now changes the state of all items as
902 in wxMSW version (Gunnar Roth)
903 - added wxImage::InitAlpha()
904
905 Unix:
906
907 - wxPuts() now correctly outputs trailing new line in Unicode build
908
909 wxGTK:
910
911 - Added printing support by way of using libgnomeprint. The library
912 now checks at runtime, if the library is installed and will use it
913 if it is. Otherwise, it will fall back to the old PostScript printing
914 code, from which the Pango drawing code was removed.
915 - Implemented/improved wxDC::DrawRotatedText()
916 - fixed wxFileDialog::SetWildcard()
917 - native file dialog is now used if available (Zbigniew Zagorski)
918 - implemented wxTextCtrl::Freeze() and Thaw(). The GtkTextBuffer
919 is not a valid one during frozen state. Get a pointer to it right
920 after wxTextCtrl creation if you really need to. (Mart Raudsepp)
921 - Changed calls to GTK+ 2.4.x functions so that the code checks at
922 runtime, which library version is installed so that these functions
923 are only called with GTK+ 2.4.x installed and should yield linker
924 errors otherwise.
925 - wxTextCtrl text insertion efficiency fixed. (Mart Raudsepp)
926 - Added wxRawBitmap support
927 - Corrected Input method handler code (for Chinese etc.) and its
928 interaction with wxWidgets' events.
929 - wxTE_AUTO_URL implemention for wxGTK2 multiline wxTextCtrls (Mart Raudsepp)
930
931 wxMac:
932
933 - Vertical sliders oriented consistent with MSW/GTK (0 at top) (Kevin Hock)
934 - wxDynamicLibrary::GetDllExt() now returns ".bundle", not ".dylib"
935 - wxDynamicLibrary::GetSymbol() now prepends underscore to the symbol name
936 - wxJoystick now works on OSX
937
938 wxMSW:
939
940 - fixed enhanced metafiles loading from files (Andreas Goebel)
941 - wxRadioButtons no longer have to be consecutive in a group
942 - fixed spurious selection of combobox text during resize
943 - pass correct tool id (and not always -1) to EVT_TOOL_RCLICKED() handler
944 - added wxRegKey::Export(file)
945
946 wxWinCE:
947 - Added support for MS Handheld PC 2000. This was done before 2.5.4,
948 but not mentioned anywhere.
949 - Added (preliminary) support for sockets
950
951 wxUniv:
952
953 - wxBU_... button align flags support
954 - vertical notebook orientation support
955 - 3rd state support for checkboxes
956 - wxLB_SORT and wxCB_SORT now cause case-insensitive sorting
957
958 wxPalmOS:
959
960 - William Osborne has won and new port was born
961 (see: "wxPalmOS porting challenge")
962 - polishing of the port (unnecessary 2.4 API compatibility, removed
963 all wxMSW specific code which was base for the new port)
964 - enumeration of available volumes
965 - native wxPrefConfig around Preferences database
966 - native wxProgressDialog implementation
967 - native wxColourDialog implementation
968 - native wxSystemSettings colours
969 - native wxButton implementation
970 - native wxCheckBox implementation
971 - native wxSlider implementation
972 - native wxToggleButton implementation
973 - native wxRadioButton implementation
974 - native wxStaticText implementation
975 - native wxDatePickerCtrl implementation
976
977
978 2.5.3
979 -----
980
981 All:
982
983 - support for large (>2 Gb) files in wxFile (Tim Kosse)
984 - number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten)
985 - fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem)
986 - fixed bug in wxDateTime::Set(jdn) when DST was in effect
987 - fixed fatal bug in wxString when wxUSE_STL==1 (Kurt Granroth)
988 - support msgids in charsets other than C and languages other than English
989 (based on patch by Stefan Kowski)
990 - added wxMicroSleep() and wxMilliSleep() replacing deprecated wxUsleep()
991 - basic UDP sockets support (Lenny Maiorani)
992 - fixed wxDateTime::GetWeekDayName() for some dates (Daniel Kaps)
993 - deprecated wxDateTime::SetToTheWeek() in favour of SetToWeekOfYear()
994 - active mode support in wxFTP (Randall Fox)
995 - sped up wxHTTP and wxFTP
996 - added wxStringInput/OutputStreams
997 - added wxFileConfig::Save(wxOutputStream)
998 - fixed wxString's behavior with inserted null characters
999
1000 All (GUI):
1001
1002 - added wxWindow::MoveBefore/AfterInTabOrder() to change tab navigation order
1003 - added wxTaskBarIcon::CreatePopupMenu which is now the recommended way
1004 of showing a popup menu; calling wxTaskBarIcon::PopupMenu directly
1005 is discouraged
1006 - added ..._CMD_...(id) variants for wxGrid event table entry macros
1007 - added wxWindow::Navigate for programmatic navigation to the next control
1008 - wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set
1009 - added wxKeyEvent::GetUnicodeKey()
1010 - added wxKeyEvent::CmdDown() and wxMouseEvent::CmdDown()
1011 - implemented wxListCtrl::FindItem() for non-MSW (Robin Stoll)
1012 - added status bar fields styles support (Tim Kosse)
1013 - added convenience functions wxSizer::AddSpacer() and
1014 wxSizer::AddStretchSpacer() (as well as Prepend and Insert variants)
1015 - added samples/splash
1016 - added support for stock buttons
1017 - added wxTopLevelWindow::RequestUserAttention()
1018 - support for comma in contrib gizmo wxLEDNumberCtrl (Grant Likely)
1019 - recursive wxSizer::Show for subsizer and return value if element was found
1020 - added wxChoicebook control
1021 - smoother time estimation updates in wxProgressDialog (Christian Sturmlechner)
1022 - the XRC contrib library was moved to the core
1023 - wx(Choice/List/Note)book controls send CHANG(ED/ING) events in SetSelection
1024 - it is now possible to create a wxFont with given size in pixels (d2walter)
1025 - added wxTopLevelWindow::IsActive()
1026 - wxSystemSettings::GetMetric now returns -1 for metrics that are not
1027 supported, instead of zero.
1028 - IMPLEMENT_DYNAMIC_CLASS2 macro compilation fixed (Serge Bakkal)
1029
1030 Unix:
1031
1032 - wxTaskBarIcon now supports freedesktop.org System Tray protocol
1033 - security fixes to wxSingleInstanceChecker
1034 - wx-config script was modified to allow choosing from multiple installed
1035 builds of wxWidgets and to return flags/libs for selected libraries only
1036 - wx-config has new --version-full option
1037
1038 wxCocoa:
1039
1040 - added Unicode compatibility layer for OSX 10.2
1041 - fixed so that wxCocoa runs in OSX 10.2
1042 - Tooltips now supported
1043 - wxSound now supported
1044 - wxDisplay now supported
1045 - Some stock cursors now supported
1046
1047 wxMac:
1048
1049 - fixed MLTE text control GetLineText and GetLineLength on OSX
1050 - added OSX wxTaskBarIcon implementation for the OSX Dock
1051 - added Unicode compatibility layer for OSX 10.2
1052 - wxGetKeyState now works with nearly all wx key codes
1053
1054 wxGTK:
1055
1056 - wxGTK uses GTK+ 2.x by default now, you have to pass --disable-gtk2 to
1057 configure if you want to use GTK+ 1.2
1058 - fixed many rendering artifacts and wrong colours with lots of GTK+ themes
1059 - implemented wxColourDialog as native dialog
1060 - implemented wxTextCtrl::HitTest() (GTK+ >= 2)
1061 - implemented wxTextCtrl::ScrollLines() and ScrollPages for GTK+ 2.x
1062 - wxTreeCtrl::GetCount() counts root as well now (compatible with MSW)
1063 - added support for wxCHK_3STATE style (GTK2 only)
1064 - implemented text underlining under GTK2
1065 - implemented wxFRAME_NO_TASKBAR style (GTK >= 2.2)
1066 - implemented support for wxSYS_DCLICK_?, wxSYS_DRAG_? and wxSYS_CURSOR_?
1067 in wxSystemSettings::GetMetric (Mart Raudsepp)
1068 - implemented wxTopLevel::IsMaximized() for GTK+2 and WMs that implement
1069 freedesktop.org's wm-spec (Mart Raudsepp)
1070 - wxEVT_CONTEXT_MENU is now generated for right mouse press, not release
1071 - implemented alpha channel support in wxBitmap
1072 - added native GTK+2 wxArtProvider implementation with ability to load
1073 icons from icon theme in addition to recognized stock art
1074 - fixed crash on 64 bit platforms (Paul Cornett)
1075
1076 wxMotif:
1077
1078 - added support for wxCHK_3STATE style (3 state checkbox)
1079
1080 wxMSW:
1081
1082 - fixed UNC paths handling in wxFileSystem (Daniel Nash)
1083 - set wxKeyEvent::m_uniChar in Unicode build
1084 - support for alpha channel in toolbar bitmaps (Jurgen Doornik)
1085 - wxFileDialog can now be moved and centered (Randall Fox)
1086 - restored (and improved) possibility to use wx with MFC broken in 2.5.2
1087 - fixed wxTextCtrl::SetMaxLength for rich edit controls
1088 - fixed flat style for toolbars under XP, Windows Classic style
1089 - fixed truncation of transferred data in wxConnection under unicode build
1090 - wxChoice and wxComboBox dropdown background can be set now too (Adrian Lupei)
1091 - fixed wxMaximizeEvent generation in wxFrame
1092 - don't send duplicate EVT_COMBOBOX events whenever selection changes any more
1093 - implemented support for selecting printer bin (Steven Van Ingelgem)
1094 - fixed wxListCtrl::SetSingleStyle() which was broken since a few releases
1095 - fixed print setup problem (always uses default printer) in Unicode build
1096
1097 wxUniv/X11:
1098
1099 - fixed fatal crash when opening a menu
1100
1101 wxWinCE:
1102
1103 - added native WinCE driven smartphone wxTextCtrl implementation using spinners
1104 - added native WinCE driven smartphone wxChoice implementation using spinners
1105 - added automated but customizable handling of native WinCE driven smartphone menus
1106 - fixed wxRadioBox and wxStaticBox
1107
1108 wxHTML:
1109
1110 - added support for nested index entries and index entries pointing to more
1111 than one page to wxHtmlHelpController
1112
1113
1114 2.5.2
1115 -----
1116
1117 All:
1118
1119 - Hindi translation added (Dhananjaya Sharma)
1120 - Brazilian Portuguese translation added (E. A. Tacao)
1121 - wxDynamicCast() now uses static_cast<wxObject *> internally and so using it
1122 with anything not deriving from wxObject will fail at compile time (instead
1123 of run-time) now
1124 - when wxUSE_STL == 1 and STL provides quasi-standard hash_map/hash_set,
1125 wxHashMap/wxHashSet are just typedefs for them. This makes impossible
1126 to forward declare these classes.
1127
1128 All (GUI):
1129
1130 - wxHtmlWindow now delays image scaling until rendering,
1131 resulting in much better display of scaled images
1132 - Added UpdateSize to wxSplitterWindow to allow layout while hidden
1133 - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock)
1134 - support for KOI8-U encoding added (Yuriy Tkachenko)
1135 - The old wxADJUST_MINSIZE behaviour is now the default behaviour for
1136 sizer items that are windows. This means that GetAdjustedBestSize
1137 will now be called by default to determine the minimum size that a
1138 window in a sizer should have. If you want to still use the initial
1139 size (and not the BestSize) then use the wxFIXED_MINSIZE flag. When
1140 windows are added to a sizer their initial size is made the window's
1141 min size using SetSizeHints, and calls to wxSizer::SetItemMinSize
1142 are also forwarded to SetSizeHints for window items.
1143 - added wxRegEx::GetMatchCount()
1144 - it is now possible to display images in wxHtmlListBox
1145
1146 wxMSW:
1147
1148 - wxWindow::Freeze()/Thaw() can now be nested
1149 - Added wxSP_NO_XP_THEME style to wxSplitterWindow to switch off
1150 XP theming (some applications look bad without 3D borders)
1151 - wxMenuBar::GetLabelTop() doesn't include '&'s in the label any more
1152 - wxRegConf couldn't read global settings without admin privileges and didn't
1153 even try to do it by default -- now it does
1154 - wxTaskBarIcon must be explicitly destroyed now, otherwise the application
1155 won't exit even though there are no top level windows
1156 - wxFileName::GetModificationTime() works with opened files too now
1157 - wxDC::GetClippingBox() now works even for clipping regions created by Windows
1158 - fixed wxFileDataObject in Unicode build (Alex D)
1159 - subindented paragraphs support (Tim Kosse)
1160
1161 wxGTK:
1162
1163 - added support for wxTE_RIGHT and wxTE_CENTRE styles under GTK2 (Mart Raudsepp)
1164
1165 wxMotif:
1166
1167 - removed wxMenuItem::DeleteSubMenu()
1168 - wxButtons use Motif default size, which is smaller than it used to be
1169 and closer to wxMSW/wxGTK look. This can be disabled by setting
1170 motif.largebuttons system option to 1 (see wxSystemOptions).
1171
1172 wxUniv/X11:
1173
1174 - implemented DrawRoundedRectangle() (clawghoul)
1175
1176 wxHTML:
1177
1178 - improved tables and lists layout algorithms (Tim Kosse)
1179 - <div> handling fix (Xavier Nodet)
1180
1181 Unix:
1182
1183 - fixed priorities of mailcap entries (David Hart)
1184 - added "wx-config --libs=std,<extra>" syntax (i.e. support for "std")
1185
1186 wxODBC:
1187
1188 - Full Unicode support is now available
1189 - BLOB support is working
1190
1191
1192 2.5.1
1193 -----
1194
1195 All:
1196
1197 - event table macros now do some minimal type safety checks (Michael Sögtrop)
1198 - added wxGzipInput/OutputStream, bug fixes in wxZlibStreams (M.J.Wetherell)
1199 - wxDateTime::ParseDateTime() implemented (Linus McCabe)
1200 - wxHTTP::GetResponse() added (David Nock)
1201 - added conversions to/from UTF 16/32 LE/BE (Andreas Pflug)
1202 - added wxTextInputStream::ReadChar() (M.J.Wetherell)
1203 - added translation to Afrikaans (Petri Jooste)
1204 - Spanish translations updated (Javier San Jose)
1205 - added gettext plural forms support to wxLocale (Michael N. Filippov)
1206 - wxFileName::Normalize(wxPATH_NORM_ALL) doesn't lower filename case any more
1207 - wxFileName::Normalize(wxPATH_NORM_ENV_VARS) now works
1208 - check if file exists in wxFileConfig::DeleteFile() (Christian Sturmlechner)
1209 - when wxUSE_STL == 1 wxHashTable will not be implemented using wxHashMap
1210 (as in 2.5.0).
1211 - added some extra convenience functions to wxRect such as
1212 GetBottomRight (Hajo Kirchhoff)
1213 - changed built-in regex library to a Unicode-compatible version based
1214 on TCL sources (Ryan Norton, M. J. Wetherell)
1215 - added extra convenience functions to wxPoint for adding a
1216 wxSize (Wlodzimierz Skiba)
1217 - intermediate wxIPaddress class added to prepare for
1218 wxIPV6address (Ray Gilbert)
1219 - added overloaded constructors and Create() methods taking wxArrayString
1220 for wxChoice, wxComboBox, wxListBox, wxRadioBox, wxCheckListBox,
1221 wxSingleChoiceDialog, wxMultipleChoiceDialog
1222 - renamed wxWave class to wxSound
1223
1224 All (GUI):
1225
1226 - added 3-state checkboxes for MSW/Mac (Dimitri Schoolwerth)
1227 - added some support for C++ exceptions in the library (do read the manual!)
1228 - added wxListCtrl::GetViewRect()
1229 - added wxTextCtrl::MarkDirty()
1230 - wxToolBar::ToggleTool() now works for radio buttons (Dag Ã…gren)
1231 - wxListCtrl now sends an END_LABEL event if editing was cancelled, too
1232 - bug in wxRect ctor from two [out of order] wxPoints fixed (Steve Cornett)
1233 - status text is now restored after wxMenu help is shown in it
1234 - bug in wxWindow::RemoveEventHandler() fixed (Yingjun Zhang)
1235 - make it possible to use wxRTTI macros with namespaces (Benjamin I. Williams)
1236 - wxColourDatabase API now uses objects instead of pointers
1237 - added resolution option to JPEG image handler (Jeff Burton)
1238 - added wxCalendarEvent::SetDate, wxCalendarEvent::SetWeekDay
1239 - wxGenericDirCtrl now accepts multiple wildcards
1240 - added focus event forwarding to wxGrid (Peter Laufenberg)
1241 - fixed scrollbar problem in wxGrid (not showing scrollbars
1242 when sizing smaller) (Shane Harper)
1243 - dbbrowse demo fixed for Unicode (Wlodzimierz Skiba)
1244 - added wxStatusBar support to XRC (Brian Ravnsgaard Riis)
1245 - wxMenu::Append and etc. return a pointer to the wxMenuItem that was
1246 added or inserted, or NULL on failure.
1247 - using a -1 (wxID_ANY) for menu or toolbar item IDs will now generate new id
1248 - added option to generate C++ headers to wxrc utility (Eduardo Marques)
1249 - added wxDC::DrawPolyPolygon() for MSW/PS (Carl-Friedrich Braun)
1250 - wxBufferedDC now allows to preserve the background and is documented
1251 - added wxDC::GetPartialTextExtents
1252
1253 wxMSW:
1254
1255 - wxWidgets now builds under Win64
1256 - fixed DDE memory leaks
1257 - fixed wxTE_*WRAP styles handling
1258 - wxTextCtrl::GetValue() works with text in non default encoding
1259 - changed wxCrashReport to generate minidumps instead of text files
1260 - wxRadioButtons are now checked when they get focus (standard behaviour)
1261 - several fixes to owner drawn menu items (Christian Sturmlechner)
1262 - wxGauge now supports full 32 bit range (Miroslav Rajcic)
1263 - make it possible to give focus to the notebook tabs (Hajo Kirchhoff)
1264 - MDI child frames are not always resizeable any more (Andrei Fortuna)
1265 - fixed enumerating of entries/groups under '/' in wxRegConfig
1266 - added wxSYS_ICONTITLE_FONT (Andreas Pflug)
1267 - added wxPATH_NORM_SHORTCUT to wxFileName
1268 - wxComboBox::GetValue within a wxEVT_COMMAND_TEXT_UPDATED event
1269 should now pass the correct value even if the handler for
1270 wxEVT_COMMAND_COMBOBOX_SELECTED changed the selection
1271 - wxFileDialog now returns correct filter index for multiple-file dialogs
1272 - added wxTextCtrl::HitTest()
1273 - experimental wxURL implementation using WinInet functions (Hajo Kirchhoff)
1274 - fixed several bugs in wxNotebook with wxNB_MULTILINE style
1275 - accelerators are now initially hidden if appropriate (Peter Nielsen)
1276 - background colour of a wxComboBox may now be set
1277 - fixed wxListCtrl::GetItemText/BackgroundColour()
1278 - Esc can now be used to close menus in the dialogs (Hartmut Honisch)
1279 - Added msw.remap system option so colourful toolbar buttons
1280 aren't mangled if you set it to 0. The default is 1
1281 - Toolbar buttons are now centred if the bitmap size is smaller
1282 than the specified default size
1283 - Fixed a bug in wxSpinCtrl::DoGetBestSize that would make wxSpinCtrl too tall
1284
1285 wxGTK:
1286
1287 - fixes to wxTextCtrl scrolling under GTK2 (Nerijus Baliunas)
1288 - fix for crash when using user-dashed lines (Chris Borgolte)
1289 - fixed wxChoice::Delete() in presence of client data
1290 - allow calling wxWindow::SetFont if window not yet created
1291 - use same average character width as other ports when calculating dialog units
1292 - fixed mouse wheel handling under GTK2 (Hugh Fisher)
1293 - wxNotebook::HitTest() implemented (Daniel Lundqvist)
1294 - memory leaks fixes in wxFileDialog (John Labenski)
1295 - don't drop click events from triple clicks (Frode Solheim)
1296
1297 wxMac:
1298
1299 - use same average character width as other ports when calculating dialog units
1300 - implemented handling of mouse wheel
1301 - fix for long file names (longer than 32 characters) in file dialogs
1302 - use Unix sockets for Mach-o builds
1303
1304 wxMotif:
1305
1306 - look for Motif 2.1 headers before Motif 1.2 ones in configure
1307
1308 wxHTML:
1309
1310 - wxHtmlHelpController now supports compressed MS HTML Help files (*.chm)
1311 on Unix (Markus Sinner)
1312
1313 Unix:
1314
1315 - added XFree86 resolution changing using xf86vidmode extensions (Ryan Norton)
1316 - implemented asynchronous playback in wxSound and added SDL backend in
1317 addition to existing OSS one
1318 - it is now possible to send PostScript to any output stream (Zoltan Kovacs)
1319
1320
1321 2.5.0
1322 -----
1323
1324 All:
1325
1326 - It is now possible to build several smaller libraries instead of single
1327 huge wxWidgets library; wxBase is now dependency of GUI ports rather then
1328 separately compiled library
1329 - added wxDateSpan::operator==() and !=() (Lukasz Michalski)
1330 - added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth)
1331 - use true/false throughout the library instead of TRUE/FALSE
1332 - wxStopWatch::Start() resumes the stop watch if paused, as per the docs
1333 - added wxDirTraverser::OnOpenError() to customize the error handling
1334 - added wxArray::SetCount()
1335 - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
1336 by default in Unicode mode
1337 - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
1338 - added wx/math.h (John Labenski)
1339 - added Catalan translations (Pau Bosch i Crespo)
1340 - added Ukrainian translations (Eugene Manko)
1341 - fixed bug with deleting entries at root level in wxFileConfig
1342 - chkconf.h now includes platform-specific versions (for MSW
1343 and Mac) which contain some tests that were in setup.h
1344 - added event sink argument to wxEvtHandler::Connect()
1345 - added support for POST method and alt ports to wxHTTP (Roger Chickering)
1346 - added wxSocket::IPAddress() (Chris Mellon)
1347 - wxDataStreams can read/write many elements at once (Mickael Gilabert)
1348 - added wxRecursionGuard class
1349 - added wxThreadHelper class (Daniel Howard)
1350 - Added STL support (--enable-stl for configure, wxUSE_STL in setup.h).
1351 When enabled, wxString will derive from std::string, wxArray from,
1352 std::vector, wxList from std::list. In addition wxHashTable will be
1353 implemented in terms of wxHashMap.
1354 - Added wxList::compatibility_iterator. Can be used like wxNode* (except
1355 it can't be delete()d). It permits writing code which will work
1356 both with wxUSE_STL==1 and wxUSE_STL==0.
1357
1358 wxBase:
1359
1360 - added Watcom makefiles
1361 - fixed bug with searching in sorted arrays (Jürgen Palm)
1362
1363 All GUI ports:
1364
1365 - added wxVScrolledWindow, wxVListBox and wxHtmlLbox classes
1366 - added wxListbook control
1367 - added alpha channel support to wxImage
1368 - added wxRenderer class allowing to customize the drawing of generic controls
1369 - added wxCLOSE_BOX style for dialogs and frames
1370 - added wxSplitterWindow and wxWizard handlers to XRC
1371 - wxWizard is now sizer-friendly and may be made resizeable (Robert Vazan)
1372 - added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski)
1373 - added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
1374 - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
1375 - improved contrib/utils/convertrc parsing (David J. Cooke)
1376 - fixed handling of URLs and filenames in wxFileSystem
1377 - implemented alignment for wxGrid bool editor and renderer
1378 - support wxListCtrl columns alignment for all platforms and not just MSW
1379 - added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
1380 - added wxTB_HORZ_TEXT style for MSW and GTK (Axel Schlueter)
1381 - fixed user dash handling for MSW and GTK (Ken Edwards)
1382 - WXR resources can now be used in Unicode builds
1383 - it is now possible to use several wxFileHistory objects in the same menu
1384 by giving them different base IDs (Dimitri Schoolwerth)
1385 - Added wxTLW::SetShape with implementations for wxMSW and wxGTK (so far)
1386 - FL: removed const from EnableTool parameters
1387 - FL: signal child window when toolbar is closed
1388 - In various places, changed tests for pathsep on last char of string to call
1389 wxEndsWithPathSeparator(s)
1390 - Added to defs.h a couple of macros (wxPtrToULong & wxULongToPtr)
1391 - Minor improvements to document/view framework, including
1392 delayed deletion of a document (until after the user has chosen
1393 a new document), and more intelligent addition of filenames to
1394 the file history, including not adding filenames if not using the
1395 default extension for the template
1396 - sped up wxImage::Scale using fixed point arithmetic (Wade Brainerd)
1397 - Added BLOB support to wxDB (John Skiff)
1398 - wxWizard now validates when pressing Back or Next
1399 - Implemented wxNotebook::DoGetBestSize so Fit now works
1400 - Added FindItemByPosition to wxMenu
1401 - wxTimer now derives from wxEvtHandler and is its own owner object by default
1402 - Extended wxTextAttr and added wxTextCtrl::GetStyle stub
1403 to allow better rich text support.
1404 - implemented wxFlexGridSizer::Show() (Wade Brainerd)
1405 - Added m_ prefix to wxColourData and wxFontData members
1406 - Added wxHtmlPrintout::AddFilter so HTML printing can be subject to
1407 custom filters as well as HTML viewing.
1408 - Moved wxApp::SendIdleEvents and wxApp::ProcessIdle into common code.
1409 - wxWindow::OnInternalIdle is now used in all ports, and ensures that
1410 user OnIdle events do not interfere with crucial internal processing.
1411 - wxWindow::UpdateWindowUI is now a documented function that
1412 sends wxUpdateUIEvents, and can be overridden. It has a helper function
1413 DoUpdateWindowUI for taking appropriate wxUpdateUIEvent action.
1414 - Added functions to wxUpdateUIEvent: Set/GetMode, Set/GetUpdateInterval,
1415 CanUpdate, to assist with optimising update event frequency.
1416 - Added functions to wxIdleEvent: Set/GetMode, CanSend, to
1417 determine whether a window should receive idle events.
1418 - Added wxWS_EX_PROCESS_IDLE, wxWS_EX_PROCESS_UI_UPDATES window
1419 styles for use with conservative idle and update event modes.
1420 - send menu update events only when a menu is about to be used (MSW/GTK)
1421 - improved event processing performance (Hans Van Leemputten)
1422 - added wxMirrorDC class
1423 - printing improvements: GetPageInfo() gets called after the DC has
1424 been set and after OnPreparePrinting() has been called so it can
1425 report the number of pages accurately; doesn't try to set
1426 number of pages in print dialog, in common with other Windows apps;
1427 wxHTML easy printing's preview shows number of pages
1428 correctly; preview scrollbars are set correctly; keyboard navigation
1429 improved
1430
1431 Unix:
1432
1433 - fixed compilation on systems with zlib installed but < 1.1.3 version
1434 - fixed compilation on Solaris 7 with large files support enabled
1435 - added wxTaskBarIcon implementation for X11
1436 - added support for GNU/Hurd in configure
1437 - wxLocale::Init now tries to set .utf8 locale in Unicode mode (Andreas Pflug)
1438
1439 Generic controls:
1440
1441 - implemented wxListCtrl::Refresh() (Norbert Berzen)
1442 - support adding/removing columns dynamically (Donald C. Taylor)
1443 - wxToolBarSimple, property list classes, wxTreeLayout moved
1444 to contrib/src/deprecated
1445
1446 wxGTK:
1447
1448 - added support for label mnemonics to GTK+2 build (Michael Moss)
1449 - added native wxMessageDialog implementation for GTK+2 build
1450 - fixed wxMenu::Remove (John Skiff and Benjamin Williams)
1451 - made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace
1452 - fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and
1453 window managers that support _NET_WM_STATE_FULLSCREEN
1454 - added wxEVT_MENU_OPEN event generation
1455 - fixed bug in generic file selector causing incomplete file extensions to
1456 be appended to filenames with no extension
1457 - added wxTextCtrl::SetSelection implementation for GTK+ 2
1458 - fixed wxTextCtrl::IsEditable() for GTK+ 2
1459 - fixed wxStaticText alignment for GTK+ 2 (Kevin Hock)
1460 - don't consume 100% CPU when showing a popup menu
1461
1462 wxMac:
1463
1464 - generate wxEVT_SCROLL_THUMBRELEASE and wxEVT_SCROLLWIN_THUMBRELEASE events
1465 - generate wxEVT_MENU_OPEN and wxEVT_MENU_CLOSE events
1466
1467 wxMSW:
1468
1469 - possibility to use DIBs for wxBitmap implementation (Derry Bryson)
1470 - added wxCrashReport
1471 - wxStaticBitmap doesn't stretch its bitmap any longer (like other ports)
1472 - support for accelerator keys in the owner drawn menus (Derry Bryson)
1473 - wxCaret::SetSize() doesn't hide the caret any longer as it used to
1474 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
1475 - fixed bugs in wxThread::Wait() and IsAlive()
1476 - fixed bug with wxTR_EDIT_LABELS not working with wxTR_MULTIPLE
1477 - fixes for compilation with OpenWatcom and DigitalMars compilers
1478 - fixed wxStaticText best size calculation (was wrong by '&' width)
1479 - fixed calling wxFrame::Maximize(FALSE) before the window is shown
1480 - added wxNotebook::HitTest() (Otto Wyss)
1481 - libraries built with makefile.g95 have a _min or _cyg suffix (MinGW/Cygwin)
1482 - when using DLL, wxLocalFSHandler was not being exported
1483 - fixed problem with wxEvtHandler object not removed from wxPendingEvents
1484 - Windows XP manifest is now included in wx.rc; it is no longer necessary
1485 to ship .exe.manifest file with applications to support XP themes
1486 - wxLocale::Init no longer reports error if trying to set Unicode-only locale
1487 or if user's default locale is Unicode-only
1488 - improved border handling under Windows XP
1489 - partial fix for wxNotebook pages looking bad under XP: wxUSE_UXTHEME
1490 enables XP theme engine code, and wxUSE_UXTHEME_AUTO tells
1491 wxWidgets to use the theme tab colour for control backgrounds.
1492 - disable wxNB_RIGHT, wxNB_LEFT, wxNB_BOTTOM notebook styles under Windows XP
1493 - fixed release mode build with VC 7.x (Martin Ecker)
1494 - added support for wxALWAYS_SHOW_SB style
1495 - you don't need to add opengl32.lib when using VC++ now (David Falkinder)
1496
1497 wxMotif:
1498
1499 - made wxFileDialog behaviour with complex wildcards more sensible (it still
1500 does not support all the features other ports do); refer to wxFileDialog
1501 documentation for a detailed explanation
1502 - implemented wxWakeUpIdle
1503 - for Motif 2.0, used the native combobox widget instead of the GPL'd
1504 xmcombo; xmcombo is still used for Motif 1.x and Lesstif when compiled
1505 with Motif 1.x compatibility
1506 - implemented wxToggleButton
1507 - wxRadioBox and wxStaticBox now use the default shadow (border) style
1508 instead of a sunken border
1509 - implemented wxBitmapDataObject
1510 - finished wxClipboard implementation
1511
1512 wxUniv:
1513
1514 - controls in toolbars now supported
1515
1516 wxHTML:
1517
1518 - added text selection to wxHtmlWindow
1519 - added SetFonts to HTML printing classes (Adrian Philip Look)
1520 - it is now possible to force page break when printing by inserting
1521 <div style="page-break-before:always"> into the markup (Greg Chicares)
1522 - wxHtmlWindow now uses double buffering to prevent flicker
1523
1524
1525 OLD CHANGES
1526 ===========
1527
1528 INCOMPATIBLE CHANGES SINCE 2.2.x
1529 ================================
1530
1531 Please take a few minutes to read the following list, especially
1532 paying attention to the most important changes which are marked
1533 with '!' in the first column.
1534
1535 Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2
1536 is defined to 1 if you wish to retain maximal compatibility with 2.2
1537 series -- however you are also strongly encouraged to try to compile
1538 your code without this define as it won't be default any longer in
1539 2.6 release.
1540
1541 NB: if you want to build your program with different major versions
1542 of wxWidgets you will probably find the wxCHECK_VERSION() macro
1543 (see the documentation) useful.
1544
1545
1546 wxBase:
1547
1548 ! wxArray<T>::Remove(size_t) has been removed to fix compilation problems
1549 under 64 bit architectures, please replace it with RemoveAt() in your
1550 code.
1551
1552 ! wxArray<T> macros have been changed to fix runtime problems under 64 bit
1553 architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
1554 used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
1555 arrays containing non-pointers.
1556
1557 - wxObject::CopyObject() and Clone() methods were removed because they
1558 simply don't make sense for all objects
1559
1560 - wxEvent now has a pure virtual Clone() method which must be implemented
1561 by all derived classes, if you have user-defined event classes please
1562 add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
1563
1564 - small change to wxStopWatch::Pause() semantics, please see the documentation
1565
1566 - unlikely but possible incompatibility: the definition of TRUE has changed
1567 from "1" to "(bool)1" (and the same thing for FALSE), so the code which
1568 could be erroneously compiled previously such as doing "return FALSE" from
1569 a function returning a pointer would stop compiling now (but this change
1570 is not supposed to have any effects on valid code)
1571
1572 - another minor change: wxApp::OnAssert() has a new "cond" argument, you
1573 must modify YourApp::OnAssert() signature if you were using it to override
1574 the default assert handling.
1575
1576 All (GUI):
1577
1578 ! the event type constants are not constants any more but are dynamically
1579 allocated during run-time which means that they can't be used as case labels
1580 in the switch()es, you must rewrite them to use if()s instead
1581
1582 You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
1583 but this is strongly discouraged, please consider changing your code
1584 instead!
1585
1586 ! wxDialog does not derive from wxPanel any longer - if you were using it in
1587 your code, please update it. The quick fix for the most cases is to replace
1588 the occurrences of wxPanel with wxWindow.
1589
1590 ! if you handle (and don't skip) EVT_KEY_DOWN, the EVT_CHAR event is not
1591 generated at all, so you must call event.Skip() in your OnKeyDown() if
1592 you want to get OnChar() as well
1593
1594 - in general, the key events sent for the various non ASCII key combinations
1595 have been changed to make them consistent over all supported platforms,
1596 please see the wxKeyEvent documentation for details
1597
1598 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
1599 have changed (to fix some unfortunate clashes), please check your code to
1600 ensure that no tests for wxYES or wxNO are broken: for example, the following
1601 will *NOT* work any longer:
1602
1603 if ( flags & wxYES_NO )
1604 ... do something ...
1605 if ( flags & wxYES )
1606 ... do something else ...
1607
1608 - static wxWizard::Create() doesn't exist any more, the wizards are created
1609 in the same way as all the other wxWindow objects, i.e. by directly using
1610 the ctor
1611
1612 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
1613
1614 - wxGridCellAttrProvider class API changed, you will need to update your code
1615 if you derived any classes from it
1616
1617 - wxImage::ComputeHistogram()'s signature changed to
1618 unsigned long ComputeHistogram(wxImageHistogram&) const
1619
1620 - wxEvtHandler cannot be copied/assigned any longer - this never worked but
1621 now it results in compile-time error instead of run-time crashes
1622
1623 - WXK_NUMLOCK and WXK_SCROLL keys no longer result in EVT_CHAR() events,
1624 they only generate EVT_KEY_DOWN/UP() ones
1625
1626 - the dialogs use wxApp::GetTopWindow() as the parent implicitly if the
1627 parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this
1628 from happening
1629
1630 - several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode:
1631 for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
1632 and GetCount() instead of Number() in many classes
1633
1634 - wxCmdLineParser does not use wxLog to output messages anymore.
1635 to obtain the previous behaviour, add
1636 wxMessageOutput::Set(new wxMessageOutputLog); to your program
1637 (you will need to #include <wx/msgout.h>)
1638
1639 wxMSW:
1640
1641 ! build system changed: setup.h is not a static file in include/wx any more
1642 but is created as part of the build process under lib/<toolkit>/wx
1643 where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
1644 the include path in your make/project files appropriately. Furthermore,
1645 xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
1646 class. You'll need to remove all references to xpm.lib from your
1647 make/project files. Finally, the library names have changed as well and now
1648 use the following consistent naming convention: wxmsw[ver][u][d].(lib|dll)
1649 where 'u' appears for Unicode version, 'd' -- for the debug one and version
1650 is only present for the DLLs builds.
1651
1652 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
1653 style to avoid it
1654
1655 - all overloads of wxDC::SetClippingRegion() combine the given region with the
1656 previously selected one instead of replacing it
1657
1658 - wxGetHomeDir() uses HOME environment variable and if it is set will not
1659 return the programs directory any longer but its value (this function has
1660 never been meant to return the programs directory anyhow)
1661
1662 - wxHTML apps don't need to include wx/html/msw/wxhtml.rc in resources file
1663 anymore. The file was removed from wxMSW
1664
1665
1666 Unix ports:
1667
1668 ! You should use `wx-config --cxxflags` in your makefiles instead of
1669 `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
1670 and the compiler flags for C++ files only, CFLAGS should still be used
1671 to compile pure C files.
1672
1673
1674 wxThread and related classes:
1675
1676 - The thread-related classes have been heavily changed since 2.2.x versions
1677 as the old code had many serious problems. This could have resulted in
1678 semantical changes other than those mentioned here, please review use of
1679 wxThread, wxMutex and wxCondition classes in your code.
1680
1681 ! wxCondition now *must* be used with a mutex, please read the (updated) class
1682 documentation for details and revise your code accordingly: this change was
1683 unfortunately needed as it was impossible to ensure the correct behaviour
1684 (i.e. absence of race conditions) using the old API.
1685
1686 - wxMutex is not recursive any more in POSIX implementation (it hasn't been
1687 recursive in 2.2.x but was in 2.3.1 and 2.3.2), please refer to the class
1688 documentation for the discussion of the recursive mutexes.
1689
1690 - wxMutex::IsLocked() doesn't exist any more and should have never existed:
1691 this is was unique example of a thread-unsafe-by-design method.
1692
1693
1694 OTHER CHANGES
1695 =============
1696
1697 2.4.0
1698 -----
1699
1700 wxMSW:
1701
1702 - fixed loss of client data in wxChoice::SetString()
1703
1704 2.3.4
1705 -----
1706
1707 All:
1708
1709 - added (partial) Indonesian translations (Bambang Purnomosidi D. P.)
1710 - added wxSizer::Show()/Hide() (Carl Godkin)
1711 - fixed bugs in wxDateTime::SetToWeekDay()/GetWeek()
1712
1713 Unix (Base/GUI):
1714
1715 - minor OpenBSD compilation/linking fixes, now builds OOB under OpenBSD 3.1
1716 - don't include -I/usr/include nor -I/usr/local/include in wx-config output
1717 - shared library symbols are now versioned on platforms that support it (Linux)
1718
1719 wxGTK:
1720 - Further work for GTK 2.0 and Unicode support.
1721 - Addition of native frame site grip.
1722
1723 wxX11:
1724 - Unicode support through Pango library.
1725
1726 wxMSW:
1727
1728 - fixed crashes in wxListCtrl under XP
1729 - added context menu for rich edit wxTextCtrl
1730
1731 wxHTML:
1732
1733 - fixed wxHTML to work in Unicode build
1734
1735 2.3.3
1736 -----
1737
1738 wxBase:
1739
1740 - building wxBase with Borland C++ is now supported (Michael Fieldings)
1741 - wxSemaphore class added, many fixed to wxCondition and wxThread (K.S. Sreeram)
1742 - fixes to the command line parsing error and usage messages
1743 - modified wxFileName::CreateTempFileName() to open the file atomically
1744 (if possible) and, especially, not to leak the file descriptors under Unix
1745 - memory leak in wxHTTP fixed (Dimitri Schoolwerth)
1746 - fixes to AM_PATH_WXCONFIG autoconf macro
1747 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
1748 after (non standard) STL hash_map
1749 - wxLocale now works in Unicode mode
1750 - wxLocale can now load message catalogs in arbitrary encoding
1751 - added wxShutdown() function (Marco Cavallini)
1752 - added wxEXPLICIT macro
1753 - IPC classes improved and memory leaks fixed (Michael Fielding).
1754 Global buffer removed, duplication in docs removed
1755 - debug new/free implementations made thread-safe
1756
1757 Unix (Base/GUI):
1758
1759 - wxWidgets may be built using BSD and Solaris (and possibly other) make
1760 programs and not only GNU make
1761 - wxTCP-based IPC classes now support communicating over Unix domain sockets
1762 - wxWidgets may be built as a dynamic shared library under Darwin / Mac OS X
1763 lazy linking issues have been solved by linking a single module (.o) into
1764 the shared library (two step link using distrib/mac/shared-ld-sh)
1765 - fixed thread priority setting under Linux
1766
1767 All (GUI):
1768
1769 - it is now possible to set the icons of different sizes for frames (e.g. a
1770 small and big ones) using the new wxIconBundle class
1771 - implemented radio menu items and radio toolbar buttons
1772 - added possibility to show text in the toolbar buttons
1773 - added wxArtProvider class that can be used to customize the look of standard
1774 wxWidgets dialogs
1775 - significantly improved native font support
1776 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
1777 wxHashTable
1778 - added IFF image handler
1779 - fixed using custom renderers in wxGrid which was broken in 2.3.2
1780 - support for multiple images in one file added to wxImage
1781 (TIFF, GIF and ICO formats)
1782 - support for CUR and ANI files in wxImage added (Chris Elliott)
1783 - wxTextCtrl::GetRange() added
1784 - added wxGetFontFromUser() convenience function
1785 - added EVT_MENU_OPEN and EVT_MENU_CLOSE events
1786 - added Hungarian translations (Janos Vegh)
1787 - added wxImage::SaveFile(filename) method (Chris Elliott)
1788 - added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
1789 for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
1790 - added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
1791 - added wxTextCtrl::EmulateKeyPress()
1792 - Added wxMouseCaptureChangedEvent
1793 - Added custom character filtering to wxTextValidator
1794 - wxTreeCtrl now supports incremental keyboard search
1795 - wxMessageOutput class added
1796 - wxHelpProvider::RemoveHelp added and called from ~wxWindowBase
1797 so that erroneous help strings are no longer found as the hash
1798 table fills up
1799 - updated libpng from 1.0.3 to 1.2.4
1800 - Added wxView::OnClosingDocument so the application can do cleanup.
1801 - generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
1802 renamed to wxGenericImageList, so they can be used on wxMSW
1803 (Rene Rivera).
1804 - Added wxTreeEvent::IsEditCancelled so the application can tell
1805 whether a label edit was cancelled.
1806 - added static wxFontMapper::Get() accessor
1807
1808 wxMSW:
1809
1810 - small appearance fixes for native look under Windows XP
1811 - fixed the bug related to the redrawing on resize introduced in 2.3.2
1812 - fixed multiple bugs in wxExecute() with IO redirection
1813 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
1814 - huge (40*) speed up in wxMask::Create()
1815 - changing wxWidgets styles also changes the underlying Windows window style
1816 - wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
1817 - fixed flicker in wxTreeCtrl::SetItemXXX()
1818 - fixed redraw problems in dynamically resized wxStaticText
1819 - improvements to wxWidgets applications behaviour when the system colours
1820 are changed
1821 - choose implicit parent for the dialog boxes better
1822 - fixed wxProgressDialog for ranges > 65535
1823 - wxSpinButton and wxSpinCtrl now support full 32 bit range (if the version
1824 of comctl32.dll installed on the system supports it)
1825 - wxFontEnumerator now returns all fonts, not only TrueType ones
1826 - bugs in handling wxFrame styles (border/caption related) fixed
1827 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
1828 recursion any more
1829 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
1830 - the separators are not seen behind the controls added to the toolbar any more
1831 - wxLB_SORT style can be used with wxCheckListBox
1832 - wxWindowDC and wxClientDC::GetSize() works correctly now
1833 - Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can be used in FL
1834 - Multiline labels in buttons are now supported (simply use "\n" in the label)
1835 - Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it
1836 has the capture before release it.
1837 - fixed bugs in multiple selection wxCheckListBox
1838 - default button handling is now closer to expected
1839 - setting tooltips for wxSlider now works
1840 - disabling a parent window also disables all of its children (as in wxGTK)
1841 - multiple events avoided in wxComboBox
1842 - tooltip asserts avoided for read-only wxComboBox
1843 - fixed a race condition during a thread exit and a join
1844 - fixed a condition where a thread can hang during message/event processing
1845 - increased space between wxRadioBox label and first radio button
1846 - don't fail to register remaining window classes if one fails to register
1847 - wxFontDialog effects only turned on if a valid colour was
1848 provided in wxFontData
1849 - Added wxTE_LEFT, wxTE_CENTRE and wxTE_RIGHT flags for text control alignment.
1850 - Bitmap printing uses 24 bits now, not 8.
1851
1852 wxGTK:
1853
1854 - wxDirDialog now presents the file system in standard Unix way
1855 - wxButton now honours wxBU_EXACTFIT
1856 - wxStaticBox now honours wxALIGN_XXX styles
1857 - added support for non alphanumeric simple character accelerators ('-', '=')
1858 - new behaviour for wxWindow::Refresh() as it now produces a delayed refresh.
1859 Call the new wxWindow::Update() to force an immediate update
1860 - support for more SGI hardware (12-bit mode among others)
1861 - fixed wxDC::Blit() to honour source DC's logical coordinates
1862 - implemented wxIdleEvent::RequestMore() for simple background tasks
1863 - implemented wxChoice::Delete()
1864 - fixed bad memory leak in wxFileDialog (Chris Elliott)
1865 - made internal GC pool dynamically growable
1866 - added GTK+ 2 and Unicode support
1867
1868 wxMotif:
1869
1870 - improved colour settings return values (Ian Brown)
1871 - improved border style handling for wxStaticText (Ian Brown)
1872 - improved toolbar control alignment
1873 - implemented wxSpinButton
1874 - implemented wxCheckListBox
1875 - fixed wxSpinCtrl and wxStaticLine when used with sizers
1876 - wxStaticBitmap now shows transparent icons correctly
1877
1878 wxX11:
1879
1880 - added generic MDI implementation (Hans Van Leemputten)
1881 - first cut at wxSocket support (not yet working)
1882
1883 wxMac:
1884
1885 - Many improvements
1886
1887 wxOS2:
1888
1889 - First alpha-quality release
1890
1891 wxHTML:
1892
1893 - fixed wxHtmlHelpController's cache files handling on big endian machines
1894 - added blocking and redirecting capabilities to wxHtmlWindow via
1895 wxHtmlWindow::OnOpeningURL()
1896 - fixed alignment handling in tables
1897 - fixed <font face="..."> handling to be case insensitive
1898
1899 2.3.2
1900 -----
1901
1902 New port: wxUniv for Win32/GTK+ is now included in the distribution.
1903
1904 wxBase:
1905
1906 - wxRegEx class added
1907 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
1908 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
1909 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
1910 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
1911 capabilities at runtime instead of in the configure script.
1912
1913 All (GUI):
1914
1915 - support for virtual list control added
1916 - column images in report mode of the list control
1917 - wxFindReplaceDialog added (based on work of Markus Greither)
1918 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
1919 - polygon support in wxRegion (Klaas Holwerda)
1920 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
1921 - fixed bug with using wxExecute() to capture huge amounts of output
1922 - new wxCalendarCtrl styles added (Søren Erland Vestø)
1923 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
1924 - wxDirSelector() added (Paul A. Thiessen)
1925 - wxGrid cell editing veto support (Roger Gammans)
1926 - wxListCtrl ITEM_FOCUSED event added
1927 - support for ICO files in wxImage added (Chris Elliott)
1928 - improvements to wxDragImage (Chuck Messenger)
1929
1930 wxMSW:
1931
1932 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
1933 - new library naming convention under VC++ -- please change your application
1934 project files
1935
1936 wxGTK:
1937
1938 - fixed popup menu positioning bug
1939 - fixed the edit function for wxListCtrl (Chuck Messenger)
1940 - fixed the key-hitting events for wxListCtrl and wxTreeCtrl, so they
1941 correctly return the key which was pressed (Chuck Messenger)
1942
1943 wxMac:
1944
1945 - support for configuration and build under Mac OS X using the Apple Developer
1946 Tools
1947
1948 wxHTML:
1949
1950 - new HTML parser with correct parsing of character entities and fixes
1951 to tags parsing
1952 - added support for animated GIFs
1953
1954 2.3.1
1955 -----
1956
1957 wxBase:
1958
1959 - Fixes for gcc 3.0
1960 - Fixed new charset detection code
1961 - ODBC Informix fixes (submitted by Roger Gammans)
1962 - Added ODBC date support to wxVariant
1963 - Added wxDir::Traverse
1964 - Added wxSingleInstanceChecker class
1965 - Removed redundant wxDebugContext functions using C++ streams,
1966 so now standard stream usage should be unnecessary
1967
1968 All (GUI):
1969
1970 - Added wxDbGrid class for displaying ODBC tables
1971 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
1972 user code can get access to the edit control when it is created, (to
1973 push on a custom event handler for example)
1974 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
1975 GetDefaultStyle methods to wxTextCtrl
1976 - Added wxSingleInstanceChecker
1977 - Improvements to Tex2RTF
1978 - Added Paul and Roger Gammans' grid controls
1979 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
1980 first-time saved
1981 - Fixed memory leak in textcmn.cpp
1982 - Various wxXML enhancements
1983 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
1984 - Fixed memory leak in DoPrint, htmprint.cpp
1985 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
1986 instead of GetId()
1987 - Added wxDbGrid combining wxODBC classes with wxGrid
1988 - Added more makefiles and project files for contrib hierarchy
1989
1990 wxMSW:
1991
1992 - Fixed wxApp::ProcessMessage so controls don't lose their
1993 accelerators when the accelerators are redefined elsewhere
1994 - Accelerators consisting of simple keystrokes (without control,
1995 alt or shift) now work
1996 - Compile fixes for Watcom C++ added
1997 - Compile fixes for Cygwin 1.0 added
1998 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
1999 - Replaced wxYield() call in PopupMenu() by a much safer
2000 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
2001 - Enter processing in wxSpinCtrl fixed
2002 - Fixed bug in determining the best listbox size
2003 - Fix for wxFrame's last focus bug
2004 - We now send iconize events
2005 - Fixed wxFrame::SetClientSize() with toolbar bug
2006 - Added mousewheel processing
2007 - Added wxSystemSettings::Get/SetOption so we can configure
2008 wxWidgets at run time; used this to implement no-maskblt option
2009 in wxDC
2010 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
2011 child frame styles are honoured
2012
2013 wxGTK:
2014
2015 - Fixed slider rounding bug
2016 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
2017 - We now send iconize events
2018 - Fix for discrepancies between wxNotebookEvent and wxNotebook
2019 GetSelection() results
2020
2021 2.3.0
2022 -----
2023
2024 wxBase:
2025
2026 - fixed problem with wxURL when using static version of the library
2027 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
2028 - wxMimeTypesManager now can create file associations too (Chris Elliott)
2029 - wxCopyFile() respects the file permissions (Roland Scholz)
2030 - wxFTP::GetFileSize() added (Søren Erland Vestø)
2031 - wxDateTime::IsSameDate() bug fixed
2032 - wxTimeSpan::Format() now behaves more as expected, see docs
2033 - wxLocale now provides much more convenient API for setting language and
2034 detecting current system language. New API is more abstracted and truly
2035 cross-platform, independent of underlying C runtime library.
2036
2037 All (GUI):
2038
2039 - new wxToggleButton class (John Norris, Axel Schlueter)
2040 - wxCalendarCtrl not highlighting the date with time part bug fixed
2041 - wxADJUST_MINSIZE sizer flag added
2042 - FindOrCreateBrush/Pen() bug fix for invalid colour values
2043 - new wxXPMHandler for reading and writing XPM images
2044 - added new (now recommended) API for conversion between wxImage and wxBitmap
2045 (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
2046 wxImage methods and ctor)
2047 - ODBC classes now support DB2, Interbase, and Pervasive SQL
2048 - ODBC documentation complete!!
2049 - ODBC classes have much Unicode support added, but not complete
2050 - ODBC experimental BLOB support added, but not completely tested
2051 - ODBC NULL column support completed (Roger/Paul Gammans)
2052 - ODBC All "char *" and char arrays removed and replaced with wxString use
2053
2054 wxMSW:
2055
2056 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
2057 - fixed bug in MDI children flags (mis)handling
2058 - it is possible to compile wxCHMHelpController with compilers
2059 other than Visual C++ now and hhctrl.ocx is loaded at runtime
2060
2061 wxGTK:
2062
2063 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
2064
2065 wxHTML:
2066
2067 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
2068 - visual enhancements to contents panel of wxHtmlHelpController
2069
2070 2.2.0
2071 -----
2072
2073 wxBase:
2074
2075 - Fixed bug with directories with trailing (back)slashes in wxPathExists
2076 - wxString: added wxArrayString::operator==() and !=()
2077 - Fixes for wxCmdLineParser
2078 - Added wxGetLocalTimeMillis
2079 - Completed Czech translations
2080 - Some stream corrections
2081 - added missing consts to wxPoint operators
2082 - wxDateTime ParseFormat fixes
2083 - wxFile::Open(write_append) will create file if it doesn't exist
2084 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
2085
2086 All (GUI):
2087
2088 - wxGenericDragImage now allows virtual image drawing, and
2089 flicker-free dragging is now possible
2090 - Added wxPrinter::GetLastError
2091 - Fixed wxLogGui reentrancy problem
2092 - Paper names now translated
2093 - wxGrid fixes
2094 - Generic validator now caters for more cases (integers in
2095 wxTextCtrl, strings in wxChoice, wxComboBox)
2096 - Fixed crash when docview On... functions return FALSE. Show
2097 error message when an non-existent filename is typed into the Open
2098 File dialog.
2099 - Corrected Baltic font encoding handling
2100 - wxImage: enhanced TIFF code, added new platform-independent BMP
2101 writing code
2102 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
2103 - Fixed wxPropertyForm crashes in sample
2104 - wxWizard now calls TransferDataFromWindow() before calling
2105 wxWizardPage::GetNext() fixing an obvious bug
2106
2107 wxMSW:
2108
2109 - wxWindow::GetCharWidth/Height now calculated accurately.
2110 This will affect all .wxr dialog resources, so for
2111 backward compatibility, please set
2112 wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
2113 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
2114 - wxTextCtrl: implemented setting colours for rich edit controls
2115 - wxColour now accepts both grey and gray
2116 - BC++ DLL compilation fixed
2117 - Watcom C++ makefiles improved for JPEG and TIFF compilation
2118 - Fixed submenu accelerator bug
2119 - Fixed dialog focus bug (crash if the previous window to have
2120 the focus was destroyed before the dialog closed)
2121 - Too-small default wxTextCtrl height fixed
2122 - fixed "missing" initial resize of wxMDIChildFrame
2123 - wxFrame restores focus better
2124 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
2125 frames and dialogs, interferes with other window styles otherwise
2126 (sometimes you'd get a thick frame in a subwindow)
2127 - wxTextCtrl insertion point set to the beginning of the control by SetValue
2128 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
2129 - wxFileDialog: adjusts struct size if there's an error (struct
2130 sizes can be different on different versions of Windows)
2131 - wxImageList::GetSize() documented and added to wxMSW
2132 - fixed default dialog style to make them non resizeable again
2133 - fixed wxFrame::IsShown() which always returned TRUE before
2134
2135 wxGTK:
2136
2137 - Please see docs/gtk/changes.txt.
2138
2139 wxMotif:
2140
2141 - Small compilation fixes
2142
2143 Documentation:
2144
2145 - wxCaret documented
2146
2147 2.1.16
2148 ------
2149
2150 wxBase:
2151
2152 All (GUI):
2153
2154 wxMSW:
2155
2156 - Various bug fixes
2157 - Added wxCHMHelpController, for invoking MS HTML Help
2158 files. This works under VC++ only
2159 - Modal dialog handling improved
2160 - Printer dialog now modal
2161
2162 wxGTK:
2163
2164 - Various bug fixes
2165
2166 wxMotif:
2167
2168 - Various bug fixes
2169
2170 2.1.15
2171 ------
2172
2173 Documentation:
2174
2175 - Added docs/tech for technical notes
2176
2177 File hierarchy:
2178
2179 - Started new contrib hierarchy that mirrors
2180 the main lib structure; moved OGL and MMedia into it
2181
2182 wxBase:
2183
2184 - wxSocket support
2185 - wxDateTime replaces and extends old wxDate and wxTime classes (still
2186 available but strongly deprecated) with many new features
2187 - wxLongLong class provides support for (signed) 64 bit integers
2188 - wxCmdLineParser class for parsing the command line (supporting short and
2189 long options, switches and parameters of different types)
2190 - it is now possible to build wxBase under Win32 (using VC++ only so far)
2191 and BeOS (without thread support yet)
2192 - wxThread class modified to support both detached and joinable threads, also
2193 added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
2194 only so far)
2195 - wxDir class for enumerating files in a directory
2196 - wxLog functions are now (more) MT-safe
2197 - wxStopWatch class, timer functions have more chances to return correct
2198 results for your platform (use ANSI functions where available)
2199 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
2200 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
2201 is available)
2202 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
2203
2204 all (GUI):
2205
2206 - Added wxImage::Rotate.
2207 - new wxCalendarCtrl class for picking a date interactively
2208 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu management
2209 - wxToolBar supports arbitrary controls (not only buttons) and can be
2210 dynamically changed (Delete/Insert functions)
2211 - vertical toolbars supported by MSW and GTK native wxToolBar classes
2212 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
2213 - "file open" dialog allows selecting multiple files at once (contributed by
2214 John Norris)
2215 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
2216 MIME types if available (Unix only)
2217 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
2218 - TIFF support added (libtiff required and included in the distribution)
2219 - PCX files can now be written (256 and 24 bits)
2220 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
2221 - wxScrolledWindow now has keyboard interface
2222 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
2223 - added wxEncodingConverter and improved wxFontMapper
2224 for dealing with conversions between different encodings,
2225 charsets support in wxLocale and wxHTML
2226 - wxDragImage class added
2227 - samples/help improved to show standard and advanced HTML help
2228 controllers, as well as native help
2229 - moved wxTreeLayout class to main lib
2230
2231 wxMSW:
2232
2233 - wxFrame::MakeFullScreen added.
2234 - support for enhanced metafiles added, support for copying/pasting metafiles
2235 (WMF and enhanced ones) fixed/added.
2236 - implemented setting colours for push buttons
2237 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
2238 positioned along the top of the screen and not only at the bottom
2239 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
2240 - loading/saving big (> 32K) files in wxTextCtrl works
2241 - tooltips work with wxRadioBox
2242 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
2243 Unix ports
2244 - returning FALSE from OnPrintPage() aborts printing
2245 - VC++ makefiles and project files made (mostly) consistent
2246 - wxSetCursorEvent added
2247
2248 wxGTK:
2249
2250 - wxFontMapper endless recursion bug (on some systems) fixed
2251 - wxGTK synthesizes wxActivateEvents
2252 - UpdateUI handlers may be used with wxTextCtrl
2253
2254 wxMotif:
2255
2256 - wxMenu::Enable works
2257 - wxToolBar bugs fixed
2258 - OGL samples made to work again
2259
2260 wxHTML:
2261
2262 - almost complete rewrite of wxHtmlHelpController,
2263 including faster search, bookmarks, printing, setup dialog
2264 and cross-platform binary compatible .cached files for faster
2265 loading of large helpbooks, case insensitive search
2266 split into 3 parts: wxHtmlHelpData, Frame and Controller
2267 - added support for charsets and <meta> tag
2268 - added support for font faces and justified paragraphs,
2269 taken some steps to prepare wxHTML for frames
2270 - added dynamic pushing/popping of wxHtmlParser tag handlers
2271 - improved HTML printing
2272 - added extensive table of HTML characters substitutions (&nbsp; etc.)
2273 - fixed wxHtmlWindow flickering, several minor bugfixes
2274 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
2275 fixed handling of relative and absolute font sizes in <font size>
2276
2277
2278 NOTE: for changes after wxWidgets 2.1.0 b4, please see the CVS
2279 change log.
2280
2281 2.1.0, b4, May 9th 1999
2282 -----------------------
2283
2284 wxGTK:
2285
2286 - JPEG support added.
2287 - Many fixes and changes not thought worth mentioning in this file :-)
2288
2289 wxMSW:
2290
2291 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
2292 SetTabSize added.
2293 - JPEG support added.
2294 - Fixes for Cygwin compilation.
2295 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
2296 - Many fixes people didn't tell this file about.
2297
2298 wxMotif:
2299
2300
2301 General:
2302
2303 - Some changes for Unicode support, including wxchar.h/cpp.
2304
2305
2306 2.0.1 (release), March 1st 1999
2307 -------------------------------
2308
2309 wxGTK:
2310
2311 - wxGLCanvas fixes.
2312 - Slider/spinbutton fixes.
2313
2314 wxMSW:
2315
2316 - Fixed problems with <return> in dialogs/panels.
2317 - Fixed window cursor setting.
2318 - Fixed toolbar sizing and edge-clipping problems.
2319 - Some makefile fixes.
2320
2321 wxMotif:
2322
2323 - None.
2324
2325 General:
2326
2327 - Added wxUSE_SOCKETS.
2328 - More topic overviews.
2329 - Put wxPrintPaperType, wxPrintPaperDatabase into
2330 prntbase.h/cpp for use in non-PostScript situations
2331 (e.g. Win16 wxPageSetupDialog).
2332
2333
2334 Beta 5, February 18th 1999
2335 --------------------------
2336
2337 wxGTK:
2338
2339 - wxExecute improved.
2340
2341 wxMSW:
2342
2343 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
2344 expected).
2345 - Changed VC++ makefiles (.vc) so that it's possible to have
2346 debug/release/DLL versions of the library available simultaneously,
2347 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
2348 - Added BC++ 5 IDE files and instructions.
2349 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
2350 - Fixed focus-related crash.
2351
2352 wxMotif:
2353
2354 - Cured asynchronous wxExecute crash.
2355 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
2356
2357 General:
2358
2359 - wxLocale documented.
2360 - Added include filenames to class reference.
2361 - wxHelpController API changed: SetBrowser becomes SetViewer,
2362 DisplaySection works for WinHelp, help sample compiles under Windows
2363 (though doesn't display help yet).
2364
2365 Beta 4, February 12th 1999
2366 --------------------------
2367
2368 wxGTK:
2369
2370 - Miscellaneous fixes.
2371
2372 wxMSW:
2373
2374 - Makefiles for more compilers and samples; Cygwin makefiles
2375 rationalised.
2376 - Added VC++ project file for compiling wxWidgets as DLL.
2377
2378 wxMotif:
2379
2380 - Added OnEraseBackground invocation.
2381 - Added wxRETAINED implementation for wxScrolledWindow.
2382 - Cured scrolling display problem by adding XmUpdateDisplay.
2383 - Tried to make lex-ing in the makefile more generic (command line
2384 syntax should apply to both lex and flex).
2385 - Changed file selector colours for consistency (except for buttons:
2386 crashes for some reason).
2387 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
2388 of malloc, which causes memory problems).
2389
2390 General:
2391
2392 - Further doc improvements.
2393 - wxGenericValidator added.
2394 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
2395 automatically.
2396
2397 Beta 3, January 31st 1999
2398 -------------------------
2399
2400 wxGTK:
2401
2402 - wxClipboard/DnD API changes (still in progress).
2403 - wxToolTip class added.
2404 - Miscellaneous fixes.
2405
2406 wxMSW:
2407
2408 - wxRegConfig DeleteAll bug fixed.
2409 - Makefiles for more compilers.
2410 - TWIN32 support added.
2411 - Renamed VC++ makefiles from .nt to .vc, and
2412 factored out program/library settings.
2413 - Fixed wxIniConfig bug.
2414
2415 wxMotif:
2416
2417 - A few more colour fixes.
2418 - wxGLCanvas and OpenGL samples working.
2419 - Some compiler warnings fixed.
2420 - wxChoice crash fix.
2421 - Dialog Editor starting to work on Motif.
2422
2423 General:
2424
2425 - wxBusyCursor class added.
2426 - Added samples/dde.
2427 - More doc improvements, incl. expanding docs/html/index.htm.
2428
2429 Beta 2, January 1999
2430 --------------------
2431
2432 wxGTK:
2433
2434 wxMSW:
2435
2436 - 16-bit BC++ compilation/linking works albeit without the resource system.
2437
2438 wxMotif:
2439
2440 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
2441 the right place.
2442 - Cured some widget table clashes.
2443 - Added thread support (Robert).
2444 - wxPoem sample now works.
2445
2446 General:
2447
2448 - Rearranged documentation a bit.
2449 - Sash window uses area of first frame/dialog to paint over when drawing
2450 the dragged sash, not just the sash window itself (it clipped to the right
2451 or below).
2452 - Made resource sample use the correct Cancel button id.
2453 - Moved wxProp to main library (generic directory), created proplist
2454 sample.
2455 - Added bombs and fractal samples.
2456
2457 Beta 1, December 24th 1998
2458 --------------------------
2459
2460 wxGTK:
2461
2462 - Various
2463
2464 wxMSW, wxMotif: not in sync with this release.
2465
2466
2467 Alpha 18, December 29th 1998
2468 ----------------------------
2469
2470 wxMSW:
2471
2472 - Win16 support working again (VC++ 1.5)
2473 - Win16 now uses generic wxNotebook, wxListCtrl,
2474 wxTreeCtrl -- more or less working now, although
2475 a little work on wxNotebook is still needed.
2476 Under 16-bit Windows, get assertion when you click
2477 on a tab.
2478 - Wrote 16-bit BC++ makefiles: samples don't yet link.
2479 - Added CodeWarrior support to distribution courtesy
2480 of Stefan Csomor.
2481
2482 wxMotif:
2483
2484 - Cured scrolling problem: scrollbars now show/hide themselves
2485 without (permanently) resizing the window.
2486 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
2487 that disabled scrollbar paging.
2488 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
2489 colours correctly.
2490 - Removed major bug whereby dialogs were unmanaged automatically
2491 when any button was pressed.
2492 - Fixed colours of wxWindow scrollbars, made list and text controls
2493 have a white background.
2494 - Fixed dialog colour setting.
2495 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
2496 they have sensible colours by default.
2497 - Fixed a bug in wxStaticBox.
2498 - Cured wxTreeCtrl bug: now works pretty well!
2499 - Debugged DrawEllipticArc (a ! in the wrong place).
2500 - Added SetClippingRegion( const wxRegion& region ).
2501 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
2502
2503 Alpha 17, November 22nd 1998
2504 ----------------------------
2505
2506 wxMSW:
2507
2508 - More documentation updates, especially for
2509 wxLayoutWindow classes and debugging facilities.
2510 - Changed wxDebugContext to use wxDebugLog instead
2511 of wxTrace.
2512 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
2513 However, DLL support may be broken for BC++ since
2514 VC++ 6 required changing of WXDLLEXPORT keyword
2515 position.
2516 - Numerous miscellaneous changes.
2517
2518 wxMotif:
2519
2520 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
2521 were too buggy (probably not design for dynamic addition/removal of
2522 child frames).
2523 - Some improvements to the wxNotebook implementation.
2524 - wxToolBar now uses a bulletin board instead of a form, in an attempt
2525 to make it possible to add ordinary wxControls to a toolbar.
2526 - Cured problem with not being able to use global memory operators,
2527 by defining two more global operators, so that the delete will match
2528 the debugging implementation.
2529 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
2530 global memory operators (usually OK) and #defining new to be
2531 WXDEBUG_NEW (sometimes it might not be OK).
2532 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
2533 - Added a parent-existence check to popup menu code to make it not crash.
2534 - Added some optimization in wxWindow::SetSize to produce less flicker.
2535 It remains to be seen whether this produces any resize bugs.
2536
2537 It's a long time since I updated this file. Previously done:
2538
2539 - wxFrame, wxDialog done.
2540 - wxScrolledWindow done (but backing pixmap not used at present).
2541 - wxBitmap done though could be tidied it up at some point.
2542 - Most basic controls are there, if not rigorously tested.
2543 - Some MDI support (menus appear on child frames at present).
2544 - wxNotebook almost done.
2545 - wxToolBar done (horizontal only, which would be easy to extend
2546 to vertical toolbars).
2547
2548 More recently:
2549
2550 - Colour and font changing done (question mark over what happens
2551 to scrollbars).
2552 - Accelerators done (for menu items and buttons). Also event loop
2553 tidied up in wxApp so that events are filtered through ProcessXEvent.
2554 - wxWindow::GetUpdateRegion should now work.
2555
2556 Alpha 16, September 8th 1998
2557 ----------------------------
2558
2559 wxMSW:
2560
2561 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
2562 sample.
2563 - Guilhem's socket classes added, plus wxsocket sample.
2564 - A few more makefiles added.
2565 - GnuWin32/BC++ compatibility mods.
2566 - Further doc updates.
2567 - wxProp updates for correct working with wxGTK.
2568
2569 wxMotif:
2570
2571 - First start at Motif port.
2572 - Made makefiles for wxMotif source directory and minimal sample.
2573 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
2574 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
2575 wxMenu, wxMenuItem, wxMenuBar
2576
2577 Alpha 15, August 31st 1998
2578 --------------------------
2579
2580 wxMSW:
2581
2582 - wxBitmap debugged.
2583 - wxDC::GetDepth added.
2584 - Contribution added whereby wxBitmap will be
2585 converted to DC depth if they don't match.
2586 - wxConfig API improved, documentation updated.
2587 - Printing classes name conventions cleaned up.
2588 - wxUpdateUIEvent now derives from wxCommandEvent
2589 so event can travel up the window hierarchy.
2590
2591 Alpha 14, July 31st 1998
2592 ------------------------
2593
2594 wxMSW:
2595
2596 - Toolbar API has been simplified, and now
2597 wxFrame::GetClientArea returns the available client
2598 area when toolbar, status bar etc. have been accounted for.
2599 wxFrame::CreateToolBar added in line with CreateStatusBar.
2600 - Documentation updates, incl. for wxToolBar.
2601 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
2602 - Various additions from other folk, e.g. streams, wxConfig
2603 changes, wxNotebook.
2604 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
2605
2606 Alpha 13, July 8th 1998
2607 -----------------------
2608
2609 wxMSW:
2610
2611 - Implemented wxPoint as identical to POINT on Windows, and
2612 altered wxDC wxPoint functions to use wxPoint directly in
2613 Windows functions, for efficiency.
2614 - Cured wxASSERT bug in wxStatusBar95.
2615 - #ifdefed out some bits in oleutils.cpp for compilers that
2616 don't support it.
2617 - Added some operators to wxPoint, wxSize.
2618 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
2619
2620 Alpha 12, July 7th 1998
2621 -----------------------
2622
2623 wxMSW:
2624
2625 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
2626 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
2627
2628 Alpha 11, July 3rd 1998
2629 -----------------------
2630
2631 wxMSW:
2632
2633 - Added thread.h, thread.cpp.
2634 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
2635 wxMenuBar.
2636 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
2637 SetTextColor to SetTextColour, and added or made public several
2638 wxMenuItem accessors.
2639 - Added two overloads to wxRegion::Contains. Added
2640 wxRegion::IsEmpty for a more consistent naming convention.
2641 - Added Vadim's wxDataObject and wxDropSource.
2642 - ENTER/LEAVE events now work.
2643 - Cured wxMemoryDC bug where the DC wasn't being deleted.
2644 - Cured wxGauge SetSize major bugginess.
2645 - Cured problem where if a GDI object was created on the stack,
2646 then went out of scope, then another object was selected into
2647 the DC, GDI objects would leak. This is because the assignment
2648 to e.g. wxDC::m_pen would delete the GDI object without it first
2649 being selected out of the DC. Cured by selecting the old DC object
2650 first, then doing the assignment.
2651 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
2652 - Various other bug fixes and additions.
2653
2654 Generic:
2655
2656 - Major work on Dialog Editor (still plenty to go).
2657 - Expanded documentation a bit more.
2658
2659 Alpha 10, May 7th 1998
2660 ----------------------
2661
2662 wxMSW:
2663
2664 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
2665 and wxIcon functions so that you can specify what size of
2666 icon should be loaded. Probably will remain a Windows-specific thing.
2667 - wxStatusBar95 now works for MDI frames.
2668 - Toolbars in MDI frames now behave normally. They still
2669 require application-supplied positioning code though.
2670 - Changed installation instructions, makefiles and batch files
2671 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
2672 change to support Mingw32/EGCS. Bison now used by default.
2673
2674 Alpha 9, April 27th 1998
2675 ------------------------
2676
2677 wxMSW:
2678
2679 - Cured bug in wxStatusBar95 that caused a crash if multiple
2680 fields were used.
2681 - Added Gnu-Win32 b19/Mingw32 support by changing resource
2682 compilation and pragmas.
2683 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
2684 commands because VZ changed the id setting in wxMenu::MSWCommand.
2685
2686 Generic:
2687
2688 - Corrected some bugs, such as the wxModule compilation problem.
2689 - Added Gnu-Win32 b19/Mingw32 support by changing resource
2690 compilation and pragmas.
2691 - Changed SIZEOF to WXSIZEOF.
2692
2693 Alpha 8, April 17th 1998
2694 ------------------------
2695
2696 wxMSW:
2697
2698 - Added IsNull to wxGDIObject to check if the ref data is present or not.
2699 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
2700 some reason :-(
2701 - Added wxJoystick class and event handling, and simple demo.
2702 - Added simple wxWave class. Needs Stop() function.
2703 - Added wxModule (module.h/module.cpp) to allow definition
2704 of modules to be initialized and cleaned up on wxWidgets
2705 startup/exit.
2706 - Start of Mingw32 compatibility (see minimal and dialogs samples
2707 makefile.m95 files, and install.txt).
2708 - Note: Windows printing has stopped working... will investigate.
2709 VADIM'S CHANGES:
2710 - Updated wxString: bug fixes, added wxArrayString, some
2711 compatibility functions.
2712 - Updated log.h/cpp, added wxApp::CreateLogTarget.
2713 - file.h: new wxTempFile class.
2714 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
2715 - statbr95: wxStatusBar95 control.
2716 - registry.h/cpp: wxRegKey class for Win95 registry.
2717 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
2718 - wxConfig and wxFileConfig classes.
2719
2720 Generic:
2721
2722 - Added src/other/png, src/other/zlib directories.
2723 - Added samples/png.
2724 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
2725 Porters, please check particularly your wxTreeCtrl and wxListCtrl
2726 header files.
2727 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
2728
2729 Alpha 7, March 30th 1998
2730 ------------------------
2731
2732 wxMSW:
2733
2734 - Added tab classes, tab sample.
2735 - Now can return FALSE from OnInit and windows will be
2736 cleaned up properly before exit.
2737 - Improved border handling so panels don't get borders
2738 automatically.
2739 - Debugged MDI activation from Window menu.
2740 - Changes to memory debug handling, including checking for
2741 memory leaks on application exit - but see issues.txt for
2742 unresolved issues.
2743 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
2744 to allow maintenance of an icon in the Windows 95 taskbar
2745 tray area.
2746 - Got MFC sample working (MFC and wxWidgets in the same
2747 application), partly by tweaking ntwxwin.mak settings.
2748 - Got DLL compilation working again (VC++).
2749 - Changed wxProp/Dialog Editor filenames.
2750
2751 Generic:
2752
2753 - Added tab classes, tab sample.
2754 - Revised memory.cpp, memory.h slightly; memory.h now #defines
2755 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
2756 now checks for leaks on exit. Added memcheck sample.
2757 See src/msw/issues.txt for more details.
2758 - resource.h, resource.cpp changed to make wxDefaultResourceTable
2759 a pointer. Now initialize resource system with
2760 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
2761 allow better control of memory.
2762 - wxString now derives from wxObject, to enable memory leak
2763 checking.
2764 - Added some #include fixes in various files, plus changed
2765 float to long in wxToolBar files.
2766
2767 Alpha 6, March 10th 1998
2768 ------------------------
2769
2770 wxMSW:
2771
2772 - Found stack error bug - stopped unwanted OnIdle recursion.
2773 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
2774 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
2775 check if the number of top-level windows is zero before
2776 exiting. Also, wxApp::GetTopWindow will return either
2777 m_topWindow or the first member of wxTopLevelWindows, so you
2778 don't have to call wxApp::SetTopWindow.
2779 - Added dynarray.h/dynarray.cpp (from Vadim).
2780 - Added first cut at OLE drag and drop (from Vadim). dnd sample
2781 added. Drop target only at this stage. See src/msw/ole/*.cpp,
2782 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
2783 Doesn't work with GnuWin32 - no appropriate headers e.g. for
2784 IUnknown.
2785 Doesn't work with BC++ either - crashes on program startup.
2786 - Added Vadim's owner-draw modifications - will probably remain
2787 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
2788 - Added wxLB_OWNERDRAW for owner-draw listboxes.
2789 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
2790 Doesn't entirely work for WIN16.
2791 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
2792 can also be used as an argument to wxMenu::Append, not just for
2793 internal implementation.
2794 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
2795 in makeg95.env, together with mingw32.bat). However, resource
2796 binding is not working yet so most apps with dialogs crash.
2797
2798 Generic:
2799
2800 - Added Vadim's dynarray.h, dynarray.cpp.
2801 - Added Vadim's menuitem.cpp.
2802 - Added Windows-specific wxCheckListBox,
2803 owner-draw wxListBox, and drag-and-drop
2804 (see docs/msw/changes.txt).
2805
2806 Alpha 5, 14th February 1998
2807 --------------------------
2808
2809 wxMSW:
2810
2811 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
2812 DISTRIBUTIONS. This change log will therefore now refer to
2813 the Windows-specific code only. See docs/changes.txt for generic
2814 changes.
2815 - Removed Windows-specific reference counting system (GDI
2816 resources were cleaned up in idle time) - minimal
2817 advantages now we have a wxWin reference counting system.
2818 - Added missing WXDLLEXPORT keywords so DLL compilation works
2819 again.
2820 - Removed most warnings for GnuWin32 compilation.
2821 - Added wxRegion/wxRegionIterator, but haven't yet used it in
2822 e.g. wxDC.
2823
2824 Generic:
2825
2826 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
2827 DISTRIBUTIONS. This change log will therefore now refer to
2828 the generic code only. See docs/msw/changes.txt for Windows-specific
2829 changes.
2830 - Readmes, change logs and installation files now go in
2831 platform-specific directories under docs, e.g. docs/msw,
2832 docs/gtk.
2833 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
2834 created dynamically, not as a global object.
2835 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
2836 - Changed names of some include/wx/generic headers to be
2837 consistent and to conform to gcc pragma conventions. Also
2838 changed choicesg.cpp to choicdgg.cpp.
2839 - Added gcc pragmas.
2840 - Added gtk inclusion in include/wx headers.
2841 - Added consistent file headings to source and headers.
2842 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
2843 added a few references to wxTransString.
2844 - Added operator to wxTransString that converts automatically
2845 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
2846 - samples/internat now works (minimally).
2847 - Added wxMouseEvent::GetPosition and
2848 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
2849 - Made wxSize and wxRect contain longs not ints.
2850 - Cured some memory leaks (thanks Vadim).
2851 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
2852 will only keep processing OnIdle if it returns TRUE from
2853 MoreRequested.
2854
2855 Alpha 4, 31st January 1998
2856 --------------------------
2857
2858 All:
2859
2860 - Changed wxDC functions to take longs instead of floats. GetSize now takes
2861 integer pointers, plus a version that returns a wxSize.
2862 - const keyword added to various wxDC functions.
2863 - Under Windows, wxDC no longer has any knowledge of whether
2864 an associated window is scrolled or not. Instead, the device
2865 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
2866 - wxScrolledWindow applications can optionally override the virtual OnDraw
2867 function instead of using the OnPaint event handler. The wxDC passed to
2868 OnDraw will be translated by PrepareDC to reflect scrolling.
2869 When drawing outside of OnDraw, must call PrepareDC explicitly.
2870 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
2871 scrolling toolbars.
2872 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
2873 to help printing with multiple pages.
2874 - IPC classes given base classes (wxConnectionBase etc.) which
2875 define the API used by different implementations. DDE
2876 implementation updated to use these base classes.
2877 - wxHelpInstance now separated into wxHelpControllerBase (base
2878 for all implementations), wxWinHelpController (uses standard
2879 WinHelp), wxXLPHelpController (talks to wxHelp by DDE or
2880 TCP/IP). There will be others eventually, such as
2881 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
2882 - Added Vadim Zeitlin's wxString class plus
2883 internationalization code (gettext simulation, wxLocale, etc.).
2884 New files from Vadim:
2885 include\wx\string.h
2886 include\wx\debug.h
2887 include\wx\file.h
2888 include\wx\log.h
2889 include\wx\intl.h
2890 src\common\string.cpp
2891 src\common\log.cpp
2892 src\common\intl.cpp
2893 src\common\file.cpp
2894 No longer use GNU wxString files.
2895 - Split off file-related functions into include\wx\filefn.h and
2896 src\common\filefn.cpp.
2897 - Borland C++ support (WIN32) for main library and
2898 samples, using makefile.b32 files.
2899 - Preparation done for allowing BC++ to compile wxWin as a DLL,
2900 including changes to defs.h.
2901 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
2902 introduced.
2903 - Added wxShowEvent (generated when window is being shown or
2904 hidden).
2905 - Got minimal, docview, mdi samples working for 16-bit VC++ and
2906 cured 16-bit problem with wxTextCtrl (removed global memory
2907 trick).
2908 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
2909
2910 Alpha 3, September 1997
2911 -----------------------
2912
2913 All:
2914
2915 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
2916 - Instigated new file hierarchy, split files and classes up more logically.
2917 - PrologIO and some other utils now put into core library.
2918 - Revamped print/preview classes, added wxPageSetupDialog.
2919 - Started documentation.
2920
2921 Alpha 2, 30th April 1997
2922 ------------------------
2923
2924 All:
2925
2926 - EVT_... macros now have at least one argument, for conformance
2927 with MetroWerks compiler.
2928 - Added ids to .wxr file format.
2929 - Got Dialog Editor compiled and running again but need
2930 to extend functionality to be in line with new controls.
2931 Added dialoged\test app to allow dynamic loading of .wxr files
2932 for testing purposes.
2933 - Rewrote wxBitmap to allow installable file type
2934 handlers.
2935 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
2936 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
2937 fully).
2938 - Added back wxRadioBox.
2939 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
2940 a separate file.
2941
2942 Alpha 1, 5th April 1997
2943 -----------------------
2944
2945 Generic:
2946
2947 At this point, the following has been achieved:
2948
2949 - A lot, but not all, of the code has been revamped for better
2950 naming conventions, protection of data members, and use of
2951 wxString instead of char *.
2952 - Obsolete functionality deleted (e.g. default wxPanel layout,
2953 old system event system) and code size reduced.
2954 - Class hierarchy changed (see design doc) - base classes such
2955 as wxbWindow now removed.
2956 - No longer includes windows.h in wxWin headers, by using stand-in
2957 Windows types where needed e.g. WXHWND.
2958 - PrologIO revised.
2959 - wxScrolledWindow, wxStatusBar and new MDI classes added.
2960 MDI is now achieved using separate classes, not window styles.
2961 - wxSystemSettings added, and made use of to reflect standard
2962 Windows settings.
2963 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
2964 settings mucho rationalised.
2965 - All windows are now subclassed with the same window proc to make
2966 event handling far more consistent. Old internal wxWnd and derived
2967 classes removed.
2968 - API for controls revised, in particular addition of
2969 wxValidator parameters and removal of labels for some controls.
2970 - 1 validator written: see examples/validate.
2971 - Event table system introduced (see most samples and
2972 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
2973 made more flexible, with Push/PopEventHandler allowing a chain
2974 of event handlers.
2975 - wxRadioBox removed - will be added back soon.
2976 - Toolbar class hierarchy revised:
2977 wxToolBarBase
2978 wxToolBarSimple (= old wxToolBar)
2979 wxToolBar95 (= old wxButtonBar under Win95)
2980 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
2981 - Constraint system debugged somewhat (sizers now work properly).
2982 - wxFileDialog, wxDirDialog added; other common dialogs now
2983 have class equivalents. Generic colour and font dialogs
2984 rewritten to not need obsolete panel layout.
2985 - .wxr resource system partially reinstated, though needs
2986 an integer ID for controls. Hopefully the resource system
2987 will be replaced by something better and more efficient
2988 in the future.
2989 - Device contexts no longer stored with window and accessed
2990 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
2991 variables instead.
2992 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
2993 determines whether labels are shown. Other Win95-specific flags
2994 introduced, e.g. for showing ticks.
2995 - Styles introduced for dealing with 3D effects per window, for
2996 any window: all Win95 3D effects supported, plus transparent windows.
2997 - Major change to allow 3D effect support without CTL3D, under
2998 Win95.
2999 - Bitmap versions of button and checkbox separated out into new
3000 classes, but unimplemented as yet because I intend to remove
3001 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
3002 - utils/wxprop classes working (except maybe wxPropertyFormView)
3003 in preparation for use in Dialog Editor.
3004 - GNU-WIN32 compilation verified (a month or so ago).