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