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