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