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