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