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