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