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