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