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