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