1 -------------------------------------------------------------------
2 wxWidgets 2.5 Change Log - For more verbose changes, see the manual
3 -------------------------------------------------------------------
10 - new classes for reading and writing ZIP files (M.J.Wetherell)
11 - Norwegian (Bokmål) translation added (Hans F. Nordhaug)
12 - wxDynamicLibrary::HasSymbol() added
13 - added wxTextInputStream::operator>>(wchar_t) for compilers which support this
14 - added wxURI, a class for dealing with Uniform Resource Identifiers
15 - changed wxURL to inherit from wxURI and provide assignment and comparison
16 - implemented wxConvUTF7 (modified patch from Fredrik Roubert)
17 - added versions of MB2WC and WC2MB for wxMBConv that for embedded null chars
18 - Unicode support in wxODBC is now fully implemented
19 - A new data type specific to wxWidgets called SQL_C_WXCHAR has been introduced.
20 SQL_C_WXCHAR should be used rather than SQL_C_CHAR to ensure transparent
21 behavior between Unicode and non-unicode builds
22 - BLOB example added to samples/db (thanks to Casey ODonnell)
23 - use wxStream::GetLength() instead of deprecated GetSize()
24 - wxGetOsDescription() is now more precise (Olly Betts)
25 - XRC supports system fonts and colours (Ray Gilbert)
29 - recursive wxSizer::GetItem returns item of given window, sizer or nth index
30 - wxLayoutConstraints now use best size, not current size, for AsIs() condition
31 - wxSizer::Add/Insert etc. now returns pointer to wxSizerItem just added and this
32 item remembers its wxRect area (Brian A. Vanderburg II)
33 - wxBookCtrl renamed to wxBookCtrlBase, wxBookCtrl is reserved for most native
34 book control (for now wxChoicebook for MSSmartphone, wxNotebook for others).
35 Necessary event macros, types and styles mapped accordingly.
39 - wxPuts() now correctly outputs trailing new line in Unicode build
43 - fixed wxFileDialog::SetWildcard()
44 - native file dialog is now used if available (Zbigniew Zagorski)
48 - wxDynamicLibrary::GetDllExt() now returns ".bundle", not ".dylib"
49 - wxDynamicLibrary::GetSymbol() now prepends underscore to the symbol name
53 - fixed enhanced metafiles loading from files (Andreas Goebel)
54 - wxRadioButtons no longer have to be consecutive in a group
58 - wxBU_... button align flags support
59 - vertical notebook orientation support
60 - 3rd state support for checkboxes
61 - wxLB_SORT and wxCB_SORT now cause case-insensitive sorting
69 - support for huge (>2 Gb) files (Tim Kosse)
70 - number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten)
71 - fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem)
72 - fixed bug in wxDateTime::Set(jdn) when DST was in effect
73 - fixed fatal bug in wxString when wxUSE_STL==1 (Kurt Granroth)
74 - support msgids in charsets other than C and languages other than English
75 (based on patch by Stefan Kowski)
76 - added wxMicroSleep() and wxMilliSleep() replacing deprecated wxUsleep()
77 - basic UDP sockets support (Lenny Maiorani)
78 - fixed wxDateTime::GetWeekDayName() for some dates (Daniel Kaps)
79 - deprecated wxDateTime::SetToTheWeek() in favour of SetToWeekOfYear()
80 - active mode support in wxFTP (Randall Fox)
81 - sped up wxHTTP and wxFTP
82 - added wxStringInput/OutputStreams
83 - added wxFileConfig::Save(wxOutputStream)
84 - fixed wxString's behavior with inserted null characters
88 - added wxWindow::MoveBefore/AfterInTabOrder() to change tab navigation order
89 - added wxTaskBarIcon::CreatePopupMenu which is now the recommended way
90 of showing a popup menu; calling wxTaskBarIcon::PopupMenu directly
92 - added ..._CMD_...(id) variants for wxGrid event table entry macros
93 - added wxWindow::Navigate for programmatic navigation to the next control
94 - wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set
95 - added wxKeyEvent::GetUnicodeKey()
96 - added wxKeyEvent::CmdDown() and wxMouseEvent::CmdDown()
97 - implemented wxListCtrl::FindItem() for non-MSW (Robin Stoll)
98 - added status bar fields styles support (Tim Kosse)
99 - added convenience functions wxSizer::AddSpacer() and
100 wxSizer::AddStretchSpacer() (as well as Prepend and Insert variants)
101 - added samples/splash
102 - added support for stock buttons
103 - added wxTopLevelWindow::RequestUserAttention()
104 - support for comma in contrib gizmo wxLEDNumberCtrl (Grant Likely)
105 - recursive wxSizer::Show for subsizer and return value if element was found
106 - added wxChoicebook control
107 - smoother time estimation updates in wxProgressDialog (Christian Sturmlechner)
108 - the XRC contrib library was moved to the core
109 - wx(Choice/List/Note)book controls send CHANG(ED/ING) events in SetSelection
110 - it is now possible to create a wxFont with given size in pixels (d2walter)
111 - added wxTopLevelWindow::IsActive()
112 - wxSystemSettings::GetMetric now returns -1 for metrics that are not
113 supported, instead of zero.
117 - wxTaskBarIcon now supports freedesktop.org System Tray protocol
118 - security fixes to wxSingleInstanceChecker
119 - wx-config script was modified to allow choosing from multiple installed
120 builds of wxWidgets and to return flags/libs for selected libraries only
121 - wx-config has new --version-full option
125 - added Unicode compatibility layer for OSX 10.2
126 - fixed so that wxCocoa runs in OSX 10.2
127 - Tooltips now supported
128 - wxSound now supported
129 - wxDisplay now supported
130 - Some stock cursors now supported
134 - fixed MLTE text control GetLineText and GetLineLength on OSX
135 - added OSX wxTaskBarIcon implementation for the OSX Dock
136 - added Unicode compatibility layer for OSX 10.2
137 - wxGetKeyState now works with nearly all wx key codes
141 - wxGTK uses GTK+ 2.x by default now, you have to pass --disable-gtk2 to
142 configure if you want to use GTK+ 1.2
143 - fixed many rendering artifacts and wrong colours with lots of GTK+ themes
144 - implemented wxColourDialog as native dialog
145 - implemented wxTextCtrl::HitTest() (GTK+ >= 2)
146 - implemented wxTextCtrl::ScrollLines() and ScrollPages for GTK+ 2.x
147 - wxTreeCtrl::GetCount() counts root as well now (compatible with MSW)
148 - added support for wxCHK_3STATE style (GTK2 only)
149 - implemented text underlining under GTK2
150 - implemented wxFRAME_NO_TASKBAR style (GTK >= 2.2)
151 - implemented support for wxSYS_DCLICK_?, wxSYS_DRAG_? and wxSYS_CURSOR_?
152 in wxSystemSettings::GetMetric (Mart Raudsepp)
153 - implemented wxTopLevel::IsMaximized() for GTK+2 and WMs that implement
154 freedesktop.org's wm-spec (Mart Raudsepp)
155 - wxEVT_CONTEXT_MENU is now generated for right mouse press, not release
156 - implemented alpha channel support in wxBitmap
157 - added native GTK+2 wxArtProvider implementation with ability to load
158 icons from icon theme in addition to recognized stock art
159 - fixed crash on 64 bit platforms (Paul Cornett)
163 - added support for wxCHK_3STATE style (3 state checkbox)
167 - fixed UNC paths handling in wxFileSystem (Daniel Nash)
168 - set wxKeyEvent::m_uniChar in Unicode build
169 - support for alpha channel in toolbar bitmaps (Jurgen Doornik)
170 - wxFileDialog can now be moved and centered (Randall Fox)
171 - restored (and improved) possibility to use wx with MFC broken in 2.5.2
172 - fixed wxTextCtrl::SetMaxLength for rich edit controls
173 - fixed flat style for toolbars under XP, Windows Classic style
174 - fixed truncation of transferred data in wxConnection under unicode build
175 - wxChoice and wxComboBox dropdown background can be set now too (Adrian Lupei)
176 - fixed wxMaximizeEvent generation in wxFrame
177 - don't send duplicate EVT_COMBOBOX events whenever selection changes any more
178 - implemented support for selecting printer bin (Steven Van Ingelgem)
179 - fixed wxListCtrl::SetSingleStyle() which was broken since a few releases
180 - fixed print setup problem (always uses default printer) in Unicode build
184 - fixed fatal crash when opening a menu
188 - added native WinCE driven smartphone wxTextCtrl implementation using spinners
189 - added native WinCE driven smartphone wxChoice implementation using spinners
190 - added automated but customizable handling of native WinCE driven smartphone menus
191 - fixed wxRadioBox and wxStaticBox
195 - added support for nested index entries and index entries pointing to more
196 than one page to wxHtmlHelpController
204 - Hindi translation added (Dhananjaya Sharma)
205 - Brazilian Portuguese translation added (E. A. Tacao)
206 - wxDynamicCast() now uses static_cast<wxObject *> internally and so using it
207 with anything not deriving from wxObject will fail at compile time (instead
209 - when wxUSE_STL == 1 and STL provides quasi-standard hash_map/hash_set,
210 wxHashMap/wxHashSet are just typedefs for them. This makes impossible
211 to forward declare these classes.
215 - wxHtmlWindow now delays image scaling until rendering,
216 resulting in much better display of scaled images
217 - Added UpdateSize to wxSplitterWindow to allow layout while hidden
218 - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock)
219 - support for KOI8-U encoding added (Yuriy Tkachenko)
220 - The old wxADJUST_MINSIZE behaviour is now the default behaviour for
221 sizer items that are windows. This means that GetAdjustedBestSize
222 will now be called by default to determine the minimum size that a
223 window in a sizer should have. If you want to still use the initial
224 size (and not the BestSize) then use the wxFIXED_MINSIZE flag. When
225 windows are added to a sizer their initial size is made the window's
226 min size using SetSizeHints, and calls to wxSizer::SetItemMinSize
227 are also forwarded to SetSizeHints for window items.
228 - added wxRegEx::GetMatchCount()
229 - it is now possible to display images in wxHtmlListBox
233 - wxWindow::Freeze()/Thaw() can now be nested
234 - Added wxSP_NO_XP_THEME style to wxSplitterWindow to switch off
235 XP theming (some applications look bad without 3D borders)
236 - wxMenuBar::GetLabelTop() doesn't include '&'s in the label any more
237 - wxRegConf couldn't read global settings without admin privileges and didn't
238 even try to do it by default -- now it does
239 - wxTaskBarIcon must be explicitly destroyed now, otherwise the application
240 won't exit even though there are no top level windows
241 - wxFileName::GetModificationTime() works with opened files too now
242 - wxDC::GetClippingBox() now works even for clipping regions created by Windows
243 - fixed wxFileDataObject in Unicode build (Alex D)
244 - subindented paragraphs support (Tim Kosse)
248 - added support for wxTE_RIGHT and wxTE_CENTRE styles under GTK2 (Mart Raudsepp)
252 - removed wxMenuItem::DeleteSubMenu()
253 - wxButtons use Motif default size, which is smaller than it used to be
254 and closer to wxMSW/wxGTK look. This can be disabled by setting
255 motif.largebuttons system option to 1 (see wxSystemOptions).
259 - implemented DrawRoundedRectangle() (clawghoul)
263 - improved tables and lists layout algorithms (Tim Kosse)
264 - <div> handling fix (Xavier Nodet)
268 - fixed priorities of mailcap entries (David Hart)
269 - added "wx-config --libs=std,<extra>" syntax (i.e. support for "std")
273 - Full Unicode support is now available
274 - BLOB support is working
282 - event table macros now do some minimal type safety checks (Michael Sögtrop)
283 - added wxGzipInput/OutputStream, bug fixes in wxZlibStreams (M.J.Wetherell)
284 - wxDateTime::ParseDateTime() implemented (Linus McCabe)
285 - wxHTTP::GetResponse() added (David Nock)
286 - added conversions to/from UTF 16/32 LE/BE (Andreas Pflug)
287 - added wxTextInputStream::ReadChar() (M.J.Wetherell)
288 - added translation to Afrikaans (Petri Jooste)
289 - Spanish translations updated (Javier San Jose)
290 - added gettext plural forms support to wxLocale (Michael N. Filippov)
291 - wxFileName::Normalize(wxPATH_NORM_ALL) doesn't lower filename case any more
292 - wxFileName::Normalize(wxPATH_NORM_ENV_VARS) now works
293 - check if file exists in wxFileConfig::DeleteFile() (Christian Sturmlechner)
294 - when wxUSE_STL == 1 wxHashTable will not be implemented using wxHashMap
296 - added some extra convenience functions to wxRect such as
297 GetBottomRight (Hajo Kirchhoff)
298 - changed built-in regex library to a Unicode-compatible version based
299 on TCL sources (Ryan Norton, M. J. Wetherell)
300 - added extra convenience functions to wxPoint for adding a
301 wxSize (Wlodzimierz Skiba)
302 - intermediate wxIPaddress class added to prepare for
303 wxIPV6address (Ray Gilbert)
304 - added overloaded constructors and Create() methods taking wxArrayString
305 for wxChoice, wxComboBox, wxListBox, wxRadioBox, wxCheckListBox,
306 wxSingleChoiceDialog, wxMultipleChoiceDialog
307 - renamed wxWave class to wxSound
311 - added 3-state checkboxes for MSW/Mac (Dimitri Schoolwerth)
312 - added some support for C++ exceptions in the library (do read the manual!)
313 - added wxListCtrl::GetViewRect()
314 - added wxTextCtrl::MarkDirty()
315 - wxToolBar::ToggleTool() now works for radio buttons (Dag Ågren)
316 - wxListCtrl now sends an END_LABEL event if editing was cancelled, too
317 - bug in wxRect ctor from two [out of order] wxPoints fixed (Steve Cornett)
318 - status text is now restored after wxMenu help is shown in it
319 - bug in wxWindow::RemoveEventHandler() fixed (Yingjun Zhang)
320 - make it possible to use wxRTTI macros with namespaces (Benjamin I. Williams)
321 - wxColourDatabase API now uses objects instead of pointers
322 - added resolution option to JPEG image handler (Jeff Burton)
323 - added wxCalendarEvent::SetDate, wxCalendarEvent::SetWeekDay
324 - wxGenericDirCtrl now accepts multiple wildcards
325 - added focus event forwarding to wxGrid (Peter Laufenberg)
326 - fixed scrollbar problem in wxGrid (not showing scrollbars
327 when sizing smaller) (Shane Harper)
328 - dbbrowse demo fixed for Unicode (Wlodzimierz Skiba)
329 - added wxStatusBar support to XRC (Brian Ravnsgaard Riis)
330 - wxMenu::Append and etc. return a pointer to the wxMenuItem that was
331 added or inserted, or NULL on failure.
332 - using a -1 (wxID_ANY) for menu or toolbar item IDs will now generate new id
333 - added option to generate C++ headers to wxrc utility (Eduardo Marques)
334 - added wxDC::DrawPolyPolygon() for MSW/PS (Carl-Friedrich Braun)
335 - wxBufferedDC now allows to preserve the background and is documented
336 - added wxDC::GetPartialTextExtents
340 - wxWidgets now builds under Win64
341 - fixed DDE memory leaks
342 - fixed wxTE_*WRAP styles handling
343 - wxTextCtrl::GetValue() works with text in non default encoding
344 - changed wxCrashReport to generate minidumps instead of text files
345 - wxRadioButtons are now checked when they get focus (standard behaviour)
346 - several fixes to owner drawn menu items (Christian Sturmlechner)
347 - wxGauge now supports full 32 bit range (Miroslav Rajcic)
348 - make it possible to give focus to the notebook tabs (Hajo Kirchhoff)
349 - MDI child frames are not always resizeable any more (Andrei Fortuna)
350 - fixed enumerating of entries/groups under '/' in wxRegConfig
351 - added wxSYS_ICONTITLE_FONT (Andreas Pflug)
352 - added wxPATH_NORM_SHORTCUT to wxFileName
353 - wxComboBox::GetValue within a wxEVT_COMMAND_TEXT_UPDATED event
354 should now pass the correct value even if the handler for
355 wxEVT_COMMAND_COMBOBOX_SELECTED changed the selection
356 - wxFileDialog now returns correct filter index for multiple-file dialogs
357 - added wxTextCtrl::HitTest()
358 - experimental wxURL implementation using WinInet functions (Hajo Kirchhoff)
359 - fixed several bugs in wxNotebook with wxNB_MULTILINE style
360 - accelerators are now initially hidden if appropriate (Peter Nielsen)
361 - background colour of a wxComboBox may now be set
362 - fixed wxListCtrl::GetItemText/BackgroundColour()
363 - Esc can now be used to close menus in the dialogs (Hartmut Honisch)
364 - Added msw.remap system option so colourful toolbar buttons
365 aren't mangled if you set it to 0. The default is 1
366 - Toolbar buttons are now centred if the bitmap size is smaller
367 than the specified default size
368 - Fixed a bug in wxSpinCtrl::DoGetBestSize that would make wxSpinCtrl too tall
372 - fixes to wxTextCtrl scrolling under GTK2 (Nerijus Baliunas)
373 - fix for crash when using user-dashed lines (Chris Borgolte)
374 - fixed wxChoice::Delete() in presence of client data
375 - allow calling wxWindow::SetFont if window not yet created
376 - use same average character width as other ports when calculating dialog units
377 - fixed mouse wheel handling under GTK2 (Hugh Fisher)
378 - wxNotebook::HitTest() implemented (Daniel Lundqvist)
379 - memory leaks fixes in wxFileDialog (John Labenski)
380 - don't drop click events from triple clicks (Frode Solheim)
384 - use same average character width as other ports when calculating dialog units
385 - implemented handling of mouse wheel
386 - fix for long file names (longer than 32 characters) in file dialogs
387 - use Unix sockets for Mach-o builds
391 - look for Motif 2.1 headers before Motif 1.2 ones in configure
395 - wxHtmlHelpController now supports compressed MS HTML Help files (*.chm)
396 on Unix (Markus Sinner)
400 - added XFree86 resolution changing using xf86vidmode extensions (Ryan Norton)
401 - implemented asynchronous playback in wxSound and added SDL backend in
402 addition to existing OSS one
403 - it is now possible to send PostScript to any output stream (Zoltan Kovacs)
411 - It is now possible to build several smaller libraries instead of single
412 huge wxWidgets library; wxBase is now dependency of GUI ports rather then
413 separately compiled library
414 - added wxDateSpan::operator==() and !=() (Lukasz Michalski)
415 - added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth)
416 - use true/false throughout the library instead of TRUE/FALSE
417 - wxStopWatch::Start() resumes the stop watch if paused, as per the docs
418 - added wxDirTraverser::OnOpenError() to customize the error handling
419 - added wxArray::SetCount()
420 - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
421 by default in Unicode mode
422 - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
423 - added wx/math.h (John Labenski)
424 - added Catalan translations (Pau Bosch i Crespo)
425 - added Ukrainian translations (Eugene Manko)
426 - fixed bug with deleting entries at root level in wxFileConfig
427 - chkconf.h now includes platform-specific versions (for MSW
428 and Mac) which contain some tests that were in setup.h
429 - added event sink argument to wxEvtHandler::Connect()
430 - added support for POST method and alt ports to wxHTTP (Roger Chickering)
431 - added wxSocket::IPAddress() (Chris Mellon)
432 - wxDataStreams can read/write many elements at once (Mickael Gilabert)
433 - added wxRecursionGuard class
434 - added wxThreadHelper class (Daniel Howard)
435 - Added STL support (--enable-stl for configure, wxUSE_STL in setup.h).
436 When enabled, wxString will derive from std::string, wxArray from,
437 std::vector, wxList from std::list. In addition wxHashTable will be
438 implemented in terms of wxHashMap.
439 - Added wxList::compatibility_iterator. Can be used like wxNode* (except
440 it can't be delete()d). It permits writing code which will work
441 both with wxUSE_STL==1 and wxUSE_STL==0.
445 - added Watcom makefiles
446 - fixed bug with searching in sorted arrays (Jürgen Palm)
450 - added wxVScrolledWindow, wxVListBox and wxHtmlLbox classes
451 - added wxListbook control
452 - added alpha channel support to wxImage
453 - added wxRenderer class allowing to customize the drawing of generic controls
454 - added wxCLOSE_BOX style for dialogs and frames
455 - added wxSplitterWindow and wxWizard handlers to XRC
456 - wxWizard is now sizer-friendly and may be made resizeable (Robert Vazan)
457 - added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski)
458 - added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
459 - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
460 - improved contrib/utils/convertrc parsing (David J. Cooke)
461 - fixed handling of URLs and filenames in wxFileSystem
462 - implemented alignment for wxGrid bool editor and renderer
463 - support wxListCtrl columns alignment for all platforms and not just MSW
464 - added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
465 - added wxTB_HORZ_TEXT style for MSW and GTK (Axel Schlueter)
466 - fixed user dash handling for MSW and GTK (Ken Edwards)
467 - WXR resources can now be used in Unicode builds
468 - it is now possible to use several wxFileHistory objects in the same menu
469 by giving them different base IDs (Dimitri Schoolwerth)
470 - Added wxTLW::SetShape with implementations for wxMSW and wxGTK (so far)
471 - FL: removed const from EnableTool parameters
472 - FL: signal child window when toolbar is closed
473 - In various places, changed tests for pathsep on last char of string to call
474 wxEndsWithPathSeparator(s)
475 - Added to defs.h a couple of macros (wxPtrToULong & wxULongToPtr)
476 - Minor improvements to document/view framework, including
477 delayed deletion of a document (until after the user has chosen
478 a new document), and more intelligent addition of filenames to
479 the file history, including not adding filenames if not using the
480 default extension for the template
481 - sped up wxImage::Scale using fixed point arithmetic (Wade Brainerd)
482 - Added BLOB support to wxDB (John Skiff)
483 - wxWizard now validates when pressing Back or Next
484 - Implemented wxNotebook::DoGetBestSize so Fit now works
485 - Added FindItemByPosition to wxMenu
486 - wxTimer now derives from wxEvtHandler and is its own owner object by default
487 - Extended wxTextAttr and added wxTextCtrl::GetStyle stub
488 to allow better rich text support.
489 - implemented wxFlexGridSizer::Show() (Wade Brainerd)
490 - Added m_ prefix to wxColourData and wxFontData members
491 - Added wxHtmlPrintout::AddFilter so HTML printing can be subject to
492 custom filters as well as HTML viewing.
493 - Moved wxApp::SendIdleEvents and wxApp::ProcessIdle into common code.
494 - wxWindow::OnInternalIdle is now used in all ports, and ensures that
495 user OnIdle events do not interfere with crucial internal processing.
496 - wxWindow::UpdateWindowUI is now a documented function that
497 sends wxUpdateUIEvents, and can be overridden. It has a helper function
498 DoUpdateWindowUI for taking appropriate wxUpdateUIEvent action.
499 - Added functions to wxUpdateUIEvent: Set/GetMode, Set/GetUpdateInterval,
500 CanUpdate, to assist with optimising update event frequency.
501 - Added functions to wxIdleEvent: Set/GetMode, CanSend, to
502 determine whether a window should receive idle events.
503 - Added wxWS_EX_PROCESS_IDLE, wxWS_EX_PROCESS_UI_UPDATES window
504 styles for use with conservative idle and update event modes.
505 - send menu update events only when a menu is about to be used (MSW/GTK)
506 - improved event processing performance (Hans Van Leemputten)
507 - added wxMirrorDC class
508 - printing improvements: GetPageInfo() gets called after the DC has
509 been set and after OnPreparePrinting() has been called so it can
510 report the number of pages accurately; doesn't try to set
511 number of pages in print dialog, in common with other Windows apps;
512 wxHTML easy printing's preview shows number of pages
513 correctly; preview scrollbars are set correctly; keyboard navigation
518 - fixed compilation on systems with zlib installed but < 1.1.3 version
519 - fixed compilation on Solaris 7 with large files support enabled
520 - added wxTaskBarIcon implementation for X11
521 - added support for GNU/Hurd in configure
522 - wxLocale::Init now tries to set .utf8 locale in Unicode mode (Andreas Pflug)
526 - implemented wxListCtrl::Refresh() (Norbert Berzen)
527 - support adding/removing columns dynamically (Donald C. Taylor)
528 - wxToolBarSimple, property list classes, wxTreeLayout moved
529 to contrib/src/deprecated
533 - added support for label mnemonics to GTK+2 build (Michael Moss)
534 - added native wxMessageDialog implementation for GTK+2 build
535 - fixed wxMenu::Remove (John Skiff and Benjamin Williams)
536 - made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace
537 - fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and
538 window managers that support _NET_WM_STATE_FULLSCREEN
539 - added wxEVT_MENU_OPEN event generation
540 - fixed bug in generic file selector causing incomplete file extensions to
541 be appended to filenames with no extension
542 - added wxTextCtrl::SetSelection implementation for GTK+ 2
543 - fixed wxTextCtrl::IsEditable() for GTK+ 2
544 - fixed wxStaticText alignment for GTK+ 2 (Kevin Hock)
545 - don't consume 100% CPU when showing a popup menu
549 - generate wxEVT_SCROLL_THUMBRELEASE and wxEVT_SCROLLWIN_THUMBRELEASE events
550 - generate wxEVT_MENU_OPEN and wxEVT_MENU_CLOSE events
554 - possibility to use DIBs for wxBitmap implementation (Derry Bryson)
555 - added wxCrashReport
556 - wxStaticBitmap doesn't stretch its bitmap any longer (like other ports)
557 - support for accelerator keys in the owner drawn menus (Derry Bryson)
558 - wxCaret::SetSize() doesn't hide the caret any longer as it used to
559 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
560 - fixed bugs in wxThread::Wait() and IsAlive()
561 - fixed bug with wxTR_EDIT_LABELS not working with wxTR_MULTIPLE
562 - fixes for compilation with OpenWatcom and DigitalMars compilers
563 - fixed wxStaticText best size calculation (was wrong by '&' width)
564 - fixed calling wxFrame::Maximize(FALSE) before the window is shown
565 - added wxNotebook::HitTest() (Otto Wyss)
566 - libraries built with makefile.g95 have a _min or _cyg suffix (MinGW/Cygwin)
567 - when using DLL, wxLocalFSHandler was not being exported
568 - fixed problem with wxEvtHandler object not removed from wxPendingEvents
569 - Windows XP manifest is now included in wx.rc; it is no longer necessary
570 to ship .exe.manifest file with applications to support XP themes
571 - wxLocale::Init no longer reports error if trying to set Unicode-only locale
572 or if user's default locale is Unicode-only
573 - improved border handling under Windows XP
574 - partial fix for wxNotebook pages looking bad under XP: wxUSE_UXTHEME
575 enables XP theme engine code, and wxUSE_UXTHEME_AUTO tells
576 wxWidgets to use the theme tab colour for control backgrounds.
577 - disable wxNB_RIGHT, wxNB_LEFT, wxNB_BOTTOM notebook styles under Windows XP
578 - fixed release mode build with VC 7.x (Martin Ecker)
579 - added support for wxALWAYS_SHOW_SB style
580 - you don't need to add opengl32.lib when using VC++ now (David Falkinder)
584 - made wxFileDialog behaviour with complex wildcards more sensible (it still
585 does not support all the features other ports do); refer to wxFileDialog
586 documentation for a detailed explanation
587 - implemented wxWakeUpIdle
588 - for Motif 2.0, used the native combobox widget instead of the GPL'd
589 xmcombo; xmcombo is still used for Motif 1.x and Lesstif when compiled
590 with Motif 1.x compatibility
591 - implemented wxToggleButton
592 - wxRadioBox and wxStaticBox now use the default shadow (border) style
593 instead of a sunken border
594 - implemented wxBitmapDataObject
595 - finished wxClipboard implementation
599 - controls in toolbars now supported
603 - added text selection to wxHtmlWindow
604 - added SetFonts to HTML printing classes (Adrian Philip Look)
605 - it is now possible to force page break when printing by inserting
606 <div style="page-break-before:always"> into the markup (Greg Chicares)
607 - wxHtmlWindow now uses double buffering to prevent flicker
613 INCOMPATIBLE CHANGES SINCE 2.2.x
614 ================================
616 Please take a few minutes to read the following list, especially
617 paying attention to the most important changes which are marked
618 with '!' in the first column.
620 Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2
621 is defined to 1 if you wish to retain maximal compatibility with 2.2
622 series -- however you are also strongly encouraged to try to compile
623 your code without this define as it won't be default any longer in
626 NB: if you want to build your program with different major versions
627 of wxWidgets you will probably find the wxCHECK_VERSION() macro
628 (see the documentation) useful.
633 ! wxArray<T>::Remove(size_t) has been removed to fix compilation problems
634 under 64 bit architectures, please replace it with RemoveAt() in your
637 ! wxArray<T> macros have been changed to fix runtime problems under 64 bit
638 architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
639 used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
640 arrays containing non-pointers.
642 - wxObject::CopyObject() and Clone() methods were removed because they
643 simply don't make sense for all objects
645 - wxEvent now has a pure virtual Clone() method which must be implemented
646 by all derived classes, if you have user-defined event classes please
647 add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
649 - small change to wxStopWatch::Pause() semantics, please see the documentation
651 - unlikely but possible incompatibility: the definition of TRUE has changed
652 from "1" to "(bool)1" (and the same thing for FALSE), so the code which
653 could be erroneously compiled previously such as doing "return FALSE" from
654 a function returning a pointer would stop compiling now (but this change
655 is not supposed to have any effects on valid code)
657 - another minor change: wxApp::OnAssert() has a new "cond" argument, you
658 must modify YourApp::OnAssert() signature if you were using it to override
659 the default assert handling.
663 ! the event type constants are not constants any more but are dynamically
664 allocated during run-time which means that they can't be used as case labels
665 in the switch()es, you must rewrite them to use if()s instead
667 You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
668 but this is strongly discouraged, please consider changing your code
671 ! wxDialog does not derive from wxPanel any longer - if you were using it in
672 your code, please update it. The quick fix for the most cases is to replace
673 the occurrences of wxPanel with wxWindow.
675 ! if you handle (and don't skip) EVT_KEY_DOWN, the EVT_CHAR event is not
676 generated at all, so you must call event.Skip() in your OnKeyDown() if
677 you want to get OnChar() as well
679 - in general, the key events sent for the various non ASCII key combinations
680 have been changed to make them consistent over all supported platforms,
681 please see the wxKeyEvent documentation for details
683 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
684 have changed (to fix some unfortunate clashes), please check your code to
685 ensure that no tests for wxYES or wxNO are broken: for example, the following
686 will *NOT* work any longer:
688 if ( flags & wxYES_NO )
691 ... do something else ...
693 - static wxWizard::Create() doesn't exist any more, the wizards are created
694 in the same way as all the other wxWindow objects, i.e. by directly using
697 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
699 - wxGridCellAttrProvider class API changed, you will need to update your code
700 if you derived any classes from it
702 - wxImage::ComputeHistogram()'s signature changed to
703 unsigned long ComputeHistogram(wxImageHistogram&) const
705 - wxEvtHandler cannot be copied/assigned any longer - this never worked but
706 now it results in compile-time error instead of run-time crashes
708 - WXK_NUMLOCK and WXK_SCROLL keys no longer result in EVT_CHAR() events,
709 they only generate EVT_KEY_DOWN/UP() ones
711 - the dialogs use wxApp::GetTopWindow() as the parent implicitly if the
712 parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this
715 - several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode:
716 for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
717 and GetCount() instead of Number() in many classes
719 - wxCmdLineParser does not use wxLog to output messages anymore.
720 to obtain the previous behaviour, add
721 wxMessageOutput::Set(new wxMessageOutputLog); to your program
722 (you will need to #include <wx/msgout.h>)
726 ! build system changed: setup.h is not a static file in include/wx any more
727 but is created as part of the build process under lib/<toolkit>/wx
728 where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
729 the include path in your make/project files appropriately. Furthermore,
730 xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
731 class. You'll need to remove all references to xpm.lib from your
732 make/project files. Finally, the library names have changed as well and now
733 use the following consistent naming convention: wxmsw[ver][u][d].(lib|dll)
734 where 'u' appears for Unicode version, 'd' -- for the debug one and version
735 is only present for the DLLs builds.
737 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
740 - all overloads of wxDC::SetClippingRegion() combine the given region with the
741 previously selected one instead of replacing it
743 - wxGetHomeDir() uses HOME environment variable and if it is set will not
744 return the programs directory any longer but its value (this function has
745 never been meant to return the programs directory anyhow)
747 - wxHTML apps don't need to include wx/html/msw/wxhtml.rc in resources file
748 anymore. The file was removed from wxMSW
753 ! You should use `wx-config --cxxflags` in your makefiles instead of
754 `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
755 and the compiler flags for C++ files only, CFLAGS should still be used
756 to compile pure C files.
759 wxThread and related classes:
761 - The thread-related classes have been heavily changed since 2.2.x versions
762 as the old code had many serious problems. This could have resulted in
763 semantical changes other than those mentioned here, please review use of
764 wxThread, wxMutex and wxCondition classes in your code.
766 ! wxCondition now *must* be used with a mutex, please read the (updated) class
767 documentation for details and revise your code accordingly: this change was
768 unfortunately needed as it was impossible to ensure the correct behaviour
769 (i.e. absence of race conditions) using the old API.
771 - wxMutex is not recursive any more in POSIX implementation (it hasn't been
772 recursive in 2.2.x but was in 2.3.1 and 2.3.2), please refer to the class
773 documentation for the discussion of the recursive mutexes.
775 - wxMutex::IsLocked() doesn't exist any more and should have never existed:
776 this is was unique example of a thread-unsafe-by-design method.
787 - fixed loss of client data in wxChoice::SetString()
794 - added (partial) Indonesian translations (Bambang Purnomosidi D. P.)
795 - added wxSizer::Show()/Hide() (Carl Godkin)
796 - fixed bugs in wxDateTime::SetToWeekDay()/GetWeek()
800 - minor OpenBSD compilation/linking fixes, now builds OOB under OpenBSD 3.1
801 - don't include -I/usr/include nor -I/usr/local/include in wx-config output
802 - shared library symbols are now versioned on platforms that support it (Linux)
805 - Further work for GTK 2.0 and Unicode support.
806 - Addition of native frame site grip.
809 - Unicode support through Pango library.
813 - fixed crashes in wxListCtrl under XP
814 - added context menu for rich edit wxTextCtrl
818 - fixed wxHTML to work in Unicode build
825 - building wxBase with Borland C++ is now supported (Michael Fieldings)
826 - wxSemaphore class added, many fixed to wxCondition and wxThread (K.S. Sreeram)
827 - fixes to the command line parsing error and usage messages
828 - modified wxFileName::CreateTempFileName() to open the file atomically
829 (if possible) and, especially, not to leak the file descriptors under Unix
830 - memory leak in wxHTTP fixed (Dimitri Schoolwerth)
831 - fixes to AM_PATH_WXCONFIG autoconf macro
832 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
833 after (non standard) STL hash_map
834 - wxLocale now works in Unicode mode
835 - wxLocale can now load message catalogs in arbitrary encoding
836 - added wxShutdown() function (Marco Cavallini)
837 - added wxEXPLICIT macro
838 - IPC classes improved and memory leaks fixed (Michael Fielding).
839 Global buffer removed, duplication in docs removed
840 - debug new/free implementations made thread-safe
844 - wxWidgets may be built using BSD and Solaris (and possibly other) make
845 programs and not only GNU make
846 - wxTCP-based IPC classes now support communicating over Unix domain sockets
847 - wxWidgets may be built as a dynamic shared library under Darwin / Mac OS X
848 lazy linking issues have been solved by linking a single module (.o) into
849 the shared library (two step link using distrib/mac/shared-ld-sh)
850 - fixed thread priority setting under Linux
854 - it is now possible to set the icons of different sizes for frames (e.g. a
855 small and big ones) using the new wxIconBundle class
856 - implemented radio menu items and radio toolbar buttons
857 - added possibility to show text in the toolbar buttons
858 - added wxArtProvider class that can be used to customize the look of standard
860 - significantly improved native font support
861 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
863 - added IFF image handler
864 - fixed using custom renderers in wxGrid which was broken in 2.3.2
865 - support for multiple images in one file added to wxImage
866 (TIFF, GIF and ICO formats)
867 - support for CUR and ANI files in wxImage added (Chris Elliott)
868 - wxTextCtrl::GetRange() added
869 - added wxGetFontFromUser() convenience function
870 - added EVT_MENU_OPEN and EVT_MENU_CLOSE events
871 - added Hungarian translations (Janos Vegh)
872 - added wxImage::SaveFile(filename) method (Chris Elliott)
873 - added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
874 for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
875 - added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
876 - added wxTextCtrl::EmulateKeyPress()
877 - Added wxMouseCaptureChangedEvent
878 - Added custom character filtering to wxTextValidator
879 - wxTreeCtrl now supports incremental keyboard search
880 - wxMessageOutput class added
881 - wxHelpProvider::RemoveHelp added and called from ~wxWindowBase
882 so that erroneous help strings are no longer found as the hash
884 - updated libpng from 1.0.3 to 1.2.4
885 - Added wxView::OnClosingDocument so the application can do cleanup.
886 - generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
887 renamed to wxGenericImageList, so they can be used on wxMSW
889 - Added wxTreeEvent::IsEditCancelled so the application can tell
890 whether a label edit was cancelled.
891 - added static wxFontMapper::Get() accessor
895 - small appearance fixes for native look under Windows XP
896 - fixed the bug related to the redrawing on resize introduced in 2.3.2
897 - fixed multiple bugs in wxExecute() with IO redirection
898 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
899 - huge (40*) speed up in wxMask::Create()
900 - changing wxWidgets styles also changes the underlying Windows window style
901 - wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
902 - fixed flicker in wxTreeCtrl::SetItemXXX()
903 - fixed redraw problems in dynamically resized wxStaticText
904 - improvements to wxWidgets applications behaviour when the system colours
906 - choose implicit parent for the dialog boxes better
907 - fixed wxProgressDialog for ranges > 65535
908 - wxSpinButton and wxSpinCtrl now support full 32 bit range (if the version
909 of comctl32.dll installed on the system supports it)
910 - wxFontEnumerator now returns all fonts, not only TrueType ones
911 - bugs in handling wxFrame styles (border/caption related) fixed
912 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
914 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
915 - the separators are not seen behind the controls added to the toolbar any more
916 - wxLB_SORT style can be used with wxCheckListBox
917 - wxWindowDC and wxClientDC::GetSize() works correctly now
918 - Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can be used in FL
919 - Multiline labels in buttons are now supported (simply use "\n" in the label)
920 - Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it
921 has the capture before release it.
922 - fixed bugs in multiple selection wxCheckListBox
923 - default button handling is now closer to expected
924 - setting tooltips for wxSlider now works
925 - disabling a parent window also disables all of its children (as in wxGTK)
926 - multiple events avoided in wxComboBox
927 - tooltip asserts avoided for read-only wxComboBox
928 - fixed a race condition during a thread exit and a join
929 - fixed a condition where a thread can hang during message/event processing
930 - increased space between wxRadioBox label and first radio button
931 - don't fail to register remaining window classes if one fails to register
932 - wxFontDialog effects only turned on if a valid colour was
933 provided in wxFontData
934 - Added wxTE_LEFT, wxTE_CENTRE and wxTE_RIGHT flags for text control alignment.
935 - Bitmap printing uses 24 bits now, not 8.
939 - wxDirDialog now presents the file system in standard Unix way
940 - wxButton now honours wxBU_EXACTFIT
941 - wxStaticBox now honours wxALIGN_XXX styles
942 - added support for non alphanumeric simple character accelerators ('-', '=')
943 - new behaviour for wxWindow::Refresh() as it now produces a delayed refresh.
944 Call the new wxWindow::Update() to force an immediate update
945 - support for more SGI hardware (12-bit mode among others)
946 - fixed wxDC::Blit() to honour source DC's logical coordinates
947 - implemented wxIdleEvent::RequestMore() for simple background tasks
948 - implemented wxChoice::Delete()
949 - fixed bad memory leak in wxFileDialog (Chris Elliott)
950 - made internal GC pool dynamically growable
951 - added GTK+ 2 and Unicode support
955 - improved colour settings return values (Ian Brown)
956 - improved border style handling for wxStaticText (Ian Brown)
957 - improved toolbar control alignment
958 - implemented wxSpinButton
959 - implemented wxCheckListBox
960 - fixed wxSpinCtrl and wxStaticLine when used with sizers
961 - wxStaticBitmap now shows transparent icons correctly
965 - added generic MDI implementation (Hans Van Leemputten)
966 - first cut at wxSocket support (not yet working)
974 - First alpha-quality release
978 - fixed wxHtmlHelpController's cache files handling on big endian machines
979 - added blocking and redirecting capabilities to wxHtmlWindow via
980 wxHtmlWindow::OnOpeningURL()
981 - fixed alignment handling in tables
982 - fixed <font face="..."> handling to be case insensitive
987 New port: wxUniv for Win32/GTK+ is now included in the distribution.
991 - wxRegEx class added
992 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
993 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
994 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
995 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
996 capabilities at runtime instead of in the configure script.
1000 - support for virtual list control added
1001 - column images in report mode of the list control
1002 - wxFindReplaceDialog added (based on work of Markus Greither)
1003 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
1004 - polygon support in wxRegion (Klaas Holwerda)
1005 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
1006 - fixed bug with using wxExecute() to capture huge amounts of output
1007 - new wxCalendarCtrl styles added (Søren Erland Vestø)
1008 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
1009 - wxDirSelector() added (Paul A. Thiessen)
1010 - wxGrid cell editing veto support (Roger Gammans)
1011 - wxListCtrl ITEM_FOCUSED event added
1012 - support for ICO files in wxImage added (Chris Elliott)
1013 - improvements to wxDragImage (Chuck Messenger)
1017 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
1018 - new library naming convention under VC++ -- please change your application
1023 - fixed popup menu positioning bug
1024 - fixed the edit function for wxListCtrl (Chuck Messenger)
1025 - fixed the key-hitting events for wxListCtrl and wxTreeCtrl, so they
1026 correctly return the key which was pressed (Chuck Messenger)
1030 - support for configuration and build under Mac OS X using the Apple Developer
1035 - new HTML parser with correct parsing of character entities and fixes
1037 - added support for animated GIFs
1045 - Fixed new charset detection code
1046 - ODBC Informix fixes (submitted by Roger Gammans)
1047 - Added ODBC date support to wxVariant
1048 - Added wxDir::Traverse
1049 - Added wxSingleInstanceChecker class
1050 - Removed redundant wxDebugContext functions using C++ streams,
1051 so now standard stream usage should be unnecessary
1055 - Added wxDbGrid class for displaying ODBC tables
1056 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
1057 user code can get access to the edit control when it is created, (to
1058 push on a custom event handler for example)
1059 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
1060 GetDefaultStyle methods to wxTextCtrl
1061 - Added wxSingleInstanceChecker
1062 - Improvements to Tex2RTF
1063 - Added Paul and Roger Gammans' grid controls
1064 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
1066 - Fixed memory leak in textcmn.cpp
1067 - Various wxXML enhancements
1068 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
1069 - Fixed memory leak in DoPrint, htmprint.cpp
1070 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
1072 - Added wxDbGrid combining wxODBC classes with wxGrid
1073 - Added more makefiles and project files for contrib hierarchy
1077 - Fixed wxApp::ProcessMessage so controls don't lose their
1078 accelerators when the accelerators are redefined elsewhere
1079 - Accelerators consisting of simple keystrokes (without control,
1080 alt or shift) now work
1081 - Compile fixes for Watcom C++ added
1082 - Compile fixes for Cygwin 1.0 added
1083 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
1084 - Replaced wxYield() call in PopupMenu() by a much safer
1085 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
1086 - Enter processing in wxSpinCtrl fixed
1087 - Fixed bug in determining the best listbox size
1088 - Fix for wxFrame's last focus bug
1089 - We now send iconize events
1090 - Fixed wxFrame::SetClientSize() with toolbar bug
1091 - Added mousewheel processing
1092 - Added wxSystemSettings::Get/SetOption so we can configure
1093 wxWidgets at run time; used this to implement no-maskblt option
1095 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
1096 child frame styles are honoured
1100 - Fixed slider rounding bug
1101 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
1102 - We now send iconize events
1103 - Fix for discrepancies between wxNotebookEvent and wxNotebook
1104 GetSelection() results
1111 - fixed problem with wxURL when using static version of the library
1112 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
1113 - wxMimeTypesManager now can create file associations too (Chris Elliott)
1114 - wxCopyFile() respects the file permissions (Roland Scholz)
1115 - wxFTP::GetFileSize() added (Søren Erland Vestø)
1116 - wxDateTime::IsSameDate() bug fixed
1117 - wxTimeSpan::Format() now behaves more as expected, see docs
1118 - wxLocale now provides much more convenient API for setting language and
1119 detecting current system language. New API is more abstracted and truly
1120 cross-platform, independent of underlying C runtime library.
1124 - new wxToggleButton class (John Norris, Axel Schlueter)
1125 - wxCalendarCtrl not highlighting the date with time part bug fixed
1126 - wxADJUST_MINSIZE sizer flag added
1127 - FindOrCreateBrush/Pen() bug fix for invalid colour values
1128 - new wxXPMHandler for reading and writing XPM images
1129 - added new (now recommended) API for conversion between wxImage and wxBitmap
1130 (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
1131 wxImage methods and ctor)
1132 - ODBC classes now support DB2, Interbase, and Pervasive SQL
1133 - ODBC documentation complete!!
1134 - ODBC classes have much Unicode support added, but not complete
1135 - ODBC experimental BLOB support added, but not completely tested
1136 - ODBC NULL column support completed (Roger/Paul Gammans)
1137 - ODBC All "char *" and char arrays removed and replaced with wxString use
1141 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
1142 - fixed bug in MDI children flags (mis)handling
1143 - it is possible to compile wxCHMHelpController with compilers
1144 other than Visual C++ now and hhctrl.ocx is loaded at runtime
1148 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
1152 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
1153 - visual enhancements to contents panel of wxHtmlHelpController
1160 - Fixed bug with directories with trailing (back)slashes in wxPathExists
1161 - wxString: added wxArrayString::operator==() and !=()
1162 - Fixes for wxCmdLineParser
1163 - Added wxGetLocalTimeMillis
1164 - Completed Czech translations
1165 - Some stream corrections
1166 - added missing consts to wxPoint operators
1167 - wxDateTime ParseFormat fixes
1168 - wxFile::Open(write_append) will create file if it doesn't exist
1169 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
1173 - wxGenericDragImage now allows virtual image drawing, and
1174 flicker-free dragging is now possible
1175 - Added wxPrinter::GetLastError
1176 - Fixed wxLogGui reentrancy problem
1177 - Paper names now translated
1179 - Generic validator now caters for more cases (integers in
1180 wxTextCtrl, strings in wxChoice, wxComboBox)
1181 - Fixed crash when docview On... functions return FALSE. Show
1182 error message when an non-existent filename is typed into the Open
1184 - Corrected Baltic font encoding handling
1185 - wxImage: enhanced TIFF code, added new platform-independent BMP
1187 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
1188 - Fixed wxPropertyForm crashes in sample
1189 - wxWizard now calls TransferDataFromWindow() before calling
1190 wxWizardPage::GetNext() fixing an obvious bug
1194 - wxWindow::GetCharWidth/Height now calculated accurately.
1195 This will affect all .wxr dialog resources, so for
1196 backward compatibility, please set
1197 wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
1198 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
1199 - wxTextCtrl: implemented setting colours for rich edit controls
1200 - wxColour now accepts both grey and gray
1201 - BC++ DLL compilation fixed
1202 - Watcom C++ makefiles improved for JPEG and TIFF compilation
1203 - Fixed submenu accelerator bug
1204 - Fixed dialog focus bug (crash if the previous window to have
1205 the focus was destroyed before the dialog closed)
1206 - Too-small default wxTextCtrl height fixed
1207 - fixed "missing" initial resize of wxMDIChildFrame
1208 - wxFrame restores focus better
1209 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
1210 frames and dialogs, interferes with other window styles otherwise
1211 (sometimes you'd get a thick frame in a subwindow)
1212 - wxTextCtrl insertion point set to the beginning of the control by SetValue
1213 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
1214 - wxFileDialog: adjusts struct size if there's an error (struct
1215 sizes can be different on different versions of Windows)
1216 - wxImageList::GetSize() documented and added to wxMSW
1217 - fixed default dialog style to make them non resizeable again
1218 - fixed wxFrame::IsShown() which always returned TRUE before
1222 - Please see docs/gtk/changes.txt.
1226 - Small compilation fixes
1230 - wxCaret documented
1242 - Added wxCHMHelpController, for invoking MS HTML Help
1243 files. This works under VC++ only
1244 - Modal dialog handling improved
1245 - Printer dialog now modal
1260 - Added docs/tech for technical notes
1264 - Started new contrib hierarchy that mirrors
1265 the main lib structure; moved OGL and MMedia into it
1270 - wxDateTime replaces and extends old wxDate and wxTime classes (still
1271 available but strongly deprecated) with many new features
1272 - wxLongLong class provides support for (signed) 64 bit integers
1273 - wxCmdLineParser class for parsing the command line (supporting short and
1274 long options, switches and parameters of different types)
1275 - it is now possible to build wxBase under Win32 (using VC++ only so far)
1276 and BeOS (without thread support yet)
1277 - wxThread class modified to support both detached and joinable threads, also
1278 added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
1280 - wxDir class for enumerating files in a directory
1281 - wxLog functions are now (more) MT-safe
1282 - wxStopWatch class, timer functions have more chances to return correct
1283 results for your platform (use ANSI functions where available)
1284 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
1285 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
1287 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
1291 - Added wxImage::Rotate.
1292 - new wxCalendarCtrl class for picking a date interactively
1293 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu management
1294 - wxToolBar supports arbitrary controls (not only buttons) and can be
1295 dynamically changed (Delete/Insert functions)
1296 - vertical toolbars supported by MSW and GTK native wxToolBar classes
1297 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
1298 - "file open" dialog allows selecting multiple files at once (contributed by
1300 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
1301 MIME types if available (Unix only)
1302 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
1303 - TIFF support added (libtiff required and included in the distribution)
1304 - PCX files can now be written (256 and 24 bits)
1305 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
1306 - wxScrolledWindow now has keyboard interface
1307 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
1308 - added wxEncodingConverter and improved wxFontMapper
1309 for dealing with conversions between different encodings,
1310 charsets support in wxLocale and wxHTML
1311 - wxDragImage class added
1312 - samples/help improved to show standard and advanced HTML help
1313 controllers, as well as native help
1314 - moved wxTreeLayout class to main lib
1318 - wxFrame::MakeFullScreen added.
1319 - support for enhanced metafiles added, support for copying/pasting metafiles
1320 (WMF and enhanced ones) fixed/added.
1321 - implemented setting colours for push buttons
1322 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
1323 positioned along the top of the screen and not only at the bottom
1324 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
1325 - loading/saving big (> 32K) files in wxTextCtrl works
1326 - tooltips work with wxRadioBox
1327 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
1329 - returning FALSE from OnPrintPage() aborts printing
1330 - VC++ makefiles and project files made (mostly) consistent
1331 - wxSetCursorEvent added
1335 - wxFontMapper endless recursion bug (on some systems) fixed
1336 - wxGTK synthesizes wxActivateEvents
1337 - UpdateUI handlers may be used with wxTextCtrl
1341 - wxMenu::Enable works
1342 - wxToolBar bugs fixed
1343 - OGL samples made to work again
1347 - almost complete rewrite of wxHtmlHelpController,
1348 including faster search, bookmarks, printing, setup dialog
1349 and cross-platform binary compatible .cached files for faster
1350 loading of large helpbooks, case insensitive search
1351 split into 3 parts: wxHtmlHelpData, Frame and Controller
1352 - added support for charsets and <meta> tag
1353 - added support for font faces and justified paragraphs,
1354 taken some steps to prepare wxHTML for frames
1355 - added dynamic pushing/popping of wxHtmlParser tag handlers
1356 - improved HTML printing
1357 - added extensive table of HTML characters substitutions ( etc.)
1358 - fixed wxHtmlWindow flickering, several minor bugfixes
1359 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
1360 fixed handling of relative and absolute font sizes in <font size>
1363 NOTE: for changes after wxWidgets 2.1.0 b4, please see the CVS
1366 2.1.0, b4, May 9th 1999
1367 -----------------------
1371 - JPEG support added.
1372 - Many fixes and changes not thought worth mentioning in this file :-)
1376 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
1378 - JPEG support added.
1379 - Fixes for Cygwin compilation.
1380 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
1381 - Many fixes people didn't tell this file about.
1388 - Some changes for Unicode support, including wxchar.h/cpp.
1391 2.0.1 (release), March 1st 1999
1392 -------------------------------
1397 - Slider/spinbutton fixes.
1401 - Fixed problems with <return> in dialogs/panels.
1402 - Fixed window cursor setting.
1403 - Fixed toolbar sizing and edge-clipping problems.
1404 - Some makefile fixes.
1412 - Added wxUSE_SOCKETS.
1413 - More topic overviews.
1414 - Put wxPrintPaperType, wxPrintPaperDatabase into
1415 prntbase.h/cpp for use in non-PostScript situations
1416 (e.g. Win16 wxPageSetupDialog).
1419 Beta 5, February 18th 1999
1420 --------------------------
1424 - wxExecute improved.
1428 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
1430 - Changed VC++ makefiles (.vc) so that it's possible to have
1431 debug/release/DLL versions of the library available simultaneously,
1432 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
1433 - Added BC++ 5 IDE files and instructions.
1434 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
1435 - Fixed focus-related crash.
1439 - Cured asynchronous wxExecute crash.
1440 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
1444 - wxLocale documented.
1445 - Added include filenames to class reference.
1446 - wxHelpController API changed: SetBrowser becomes SetViewer,
1447 DisplaySection works for WinHelp, help sample compiles under Windows
1448 (though doesn't display help yet).
1450 Beta 4, February 12th 1999
1451 --------------------------
1455 - Miscellaneous fixes.
1459 - Makefiles for more compilers and samples; Cygwin makefiles
1461 - Added VC++ project file for compiling wxWidgets as DLL.
1465 - Added OnEraseBackground invocation.
1466 - Added wxRETAINED implementation for wxScrolledWindow.
1467 - Cured scrolling display problem by adding XmUpdateDisplay.
1468 - Tried to make lex-ing in the makefile more generic (command line
1469 syntax should apply to both lex and flex).
1470 - Changed file selector colours for consistency (except for buttons:
1471 crashes for some reason).
1472 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
1473 of malloc, which causes memory problems).
1477 - Further doc improvements.
1478 - wxGenericValidator added.
1479 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
1482 Beta 3, January 31st 1999
1483 -------------------------
1487 - wxClipboard/DnD API changes (still in progress).
1488 - wxToolTip class added.
1489 - Miscellaneous fixes.
1493 - wxRegConfig DeleteAll bug fixed.
1494 - Makefiles for more compilers.
1495 - TWIN32 support added.
1496 - Renamed VC++ makefiles from .nt to .vc, and
1497 factored out program/library settings.
1498 - Fixed wxIniConfig bug.
1502 - A few more colour fixes.
1503 - wxGLCanvas and OpenGL samples working.
1504 - Some compiler warnings fixed.
1505 - wxChoice crash fix.
1506 - Dialog Editor starting to work on Motif.
1510 - wxBusyCursor class added.
1511 - Added samples/dde.
1512 - More doc improvements, incl. expanding docs/html/index.htm.
1514 Beta 2, January 1999
1515 --------------------
1521 - 16-bit BC++ compilation/linking works albeit without the resource system.
1525 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
1527 - Cured some widget table clashes.
1528 - Added thread support (Robert).
1529 - wxPoem sample now works.
1533 - Rearranged documentation a bit.
1534 - Sash window uses area of first frame/dialog to paint over when drawing
1535 the dragged sash, not just the sash window itself (it clipped to the right
1537 - Made resource sample use the correct Cancel button id.
1538 - Moved wxProp to main library (generic directory), created proplist
1540 - Added bombs and fractal samples.
1542 Beta 1, December 24th 1998
1543 --------------------------
1549 wxMSW, wxMotif: not in sync with this release.
1552 Alpha 18, December 29th 1998
1553 ----------------------------
1557 - Win16 support working again (VC++ 1.5)
1558 - Win16 now uses generic wxNotebook, wxListCtrl,
1559 wxTreeCtrl -- more or less working now, although
1560 a little work on wxNotebook is still needed.
1561 Under 16-bit Windows, get assertion when you click
1563 - Wrote 16-bit BC++ makefiles: samples don't yet link.
1564 - Added CodeWarrior support to distribution courtesy
1569 - Cured scrolling problem: scrollbars now show/hide themselves
1570 without (permanently) resizing the window.
1571 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
1572 that disabled scrollbar paging.
1573 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
1575 - Removed major bug whereby dialogs were unmanaged automatically
1576 when any button was pressed.
1577 - Fixed colours of wxWindow scrollbars, made list and text controls
1578 have a white background.
1579 - Fixed dialog colour setting.
1580 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
1581 they have sensible colours by default.
1582 - Fixed a bug in wxStaticBox.
1583 - Cured wxTreeCtrl bug: now works pretty well!
1584 - Debugged DrawEllipticArc (a ! in the wrong place).
1585 - Added SetClippingRegion( const wxRegion& region ).
1586 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
1588 Alpha 17, November 22nd 1998
1589 ----------------------------
1593 - More documentation updates, especially for
1594 wxLayoutWindow classes and debugging facilities.
1595 - Changed wxDebugContext to use wxDebugLog instead
1597 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
1598 However, DLL support may be broken for BC++ since
1599 VC++ 6 required changing of WXDLLEXPORT keyword
1601 - Numerous miscellaneous changes.
1605 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
1606 were too buggy (probably not design for dynamic addition/removal of
1608 - Some improvements to the wxNotebook implementation.
1609 - wxToolBar now uses a bulletin board instead of a form, in an attempt
1610 to make it possible to add ordinary wxControls to a toolbar.
1611 - Cured problem with not being able to use global memory operators,
1612 by defining two more global operators, so that the delete will match
1613 the debugging implementation.
1614 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
1615 global memory operators (usually OK) and #defining new to be
1616 WXDEBUG_NEW (sometimes it might not be OK).
1617 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
1618 - Added a parent-existence check to popup menu code to make it not crash.
1619 - Added some optimization in wxWindow::SetSize to produce less flicker.
1620 It remains to be seen whether this produces any resize bugs.
1622 It's a long time since I updated this file. Previously done:
1624 - wxFrame, wxDialog done.
1625 - wxScrolledWindow done (but backing pixmap not used at present).
1626 - wxBitmap done though could be tidied it up at some point.
1627 - Most basic controls are there, if not rigorously tested.
1628 - Some MDI support (menus appear on child frames at present).
1629 - wxNotebook almost done.
1630 - wxToolBar done (horizontal only, which would be easy to extend
1631 to vertical toolbars).
1635 - Colour and font changing done (question mark over what happens
1637 - Accelerators done (for menu items and buttons). Also event loop
1638 tidied up in wxApp so that events are filtered through ProcessXEvent.
1639 - wxWindow::GetUpdateRegion should now work.
1641 Alpha 16, September 8th 1998
1642 ----------------------------
1646 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
1648 - Guilhem's socket classes added, plus wxsocket sample.
1649 - A few more makefiles added.
1650 - GnuWin32/BC++ compatibility mods.
1651 - Further doc updates.
1652 - wxProp updates for correct working with wxGTK.
1656 - First start at Motif port.
1657 - Made makefiles for wxMotif source directory and minimal sample.
1658 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
1659 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
1660 wxMenu, wxMenuItem, wxMenuBar
1662 Alpha 15, August 31st 1998
1663 --------------------------
1667 - wxBitmap debugged.
1668 - wxDC::GetDepth added.
1669 - Contribution added whereby wxBitmap will be
1670 converted to DC depth if they don't match.
1671 - wxConfig API improved, documentation updated.
1672 - Printing classes name conventions cleaned up.
1673 - wxUpdateUIEvent now derives from wxCommandEvent
1674 so event can travel up the window hierarchy.
1676 Alpha 14, July 31st 1998
1677 ------------------------
1681 - Toolbar API has been simplified, and now
1682 wxFrame::GetClientArea returns the available client
1683 area when toolbar, status bar etc. have been accounted for.
1684 wxFrame::CreateToolBar added in line with CreateStatusBar.
1685 - Documentation updates, incl. for wxToolBar.
1686 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
1687 - Various additions from other folk, e.g. streams, wxConfig
1688 changes, wxNotebook.
1689 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
1691 Alpha 13, July 8th 1998
1692 -----------------------
1696 - Implemented wxPoint as identical to POINT on Windows, and
1697 altered wxDC wxPoint functions to use wxPoint directly in
1698 Windows functions, for efficiency.
1699 - Cured wxASSERT bug in wxStatusBar95.
1700 - #ifdefed out some bits in oleutils.cpp for compilers that
1702 - Added some operators to wxPoint, wxSize.
1703 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
1705 Alpha 12, July 7th 1998
1706 -----------------------
1710 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
1711 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
1713 Alpha 11, July 3rd 1998
1714 -----------------------
1718 - Added thread.h, thread.cpp.
1719 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
1721 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
1722 SetTextColor to SetTextColour, and added or made public several
1723 wxMenuItem accessors.
1724 - Added two overloads to wxRegion::Contains. Added
1725 wxRegion::IsEmpty for a more consistent naming convention.
1726 - Added Vadim's wxDataObject and wxDropSource.
1727 - ENTER/LEAVE events now work.
1728 - Cured wxMemoryDC bug where the DC wasn't being deleted.
1729 - Cured wxGauge SetSize major bugginess.
1730 - Cured problem where if a GDI object was created on the stack,
1731 then went out of scope, then another object was selected into
1732 the DC, GDI objects would leak. This is because the assignment
1733 to e.g. wxDC::m_pen would delete the GDI object without it first
1734 being selected out of the DC. Cured by selecting the old DC object
1735 first, then doing the assignment.
1736 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
1737 - Various other bug fixes and additions.
1741 - Major work on Dialog Editor (still plenty to go).
1742 - Expanded documentation a bit more.
1744 Alpha 10, May 7th 1998
1745 ----------------------
1749 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
1750 and wxIcon functions so that you can specify what size of
1751 icon should be loaded. Probably will remain a Windows-specific thing.
1752 - wxStatusBar95 now works for MDI frames.
1753 - Toolbars in MDI frames now behave normally. They still
1754 require application-supplied positioning code though.
1755 - Changed installation instructions, makefiles and batch files
1756 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
1757 change to support Mingw32/EGCS. Bison now used by default.
1759 Alpha 9, April 27th 1998
1760 ------------------------
1764 - Cured bug in wxStatusBar95 that caused a crash if multiple
1766 - Added Gnu-Win32 b19/Mingw32 support by changing resource
1767 compilation and pragmas.
1768 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
1769 commands because VZ changed the id setting in wxMenu::MSWCommand.
1773 - Corrected some bugs, such as the wxModule compilation problem.
1774 - Added Gnu-Win32 b19/Mingw32 support by changing resource
1775 compilation and pragmas.
1776 - Changed SIZEOF to WXSIZEOF.
1778 Alpha 8, April 17th 1998
1779 ------------------------
1783 - Added IsNull to wxGDIObject to check if the ref data is present or not.
1784 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
1786 - Added wxJoystick class and event handling, and simple demo.
1787 - Added simple wxWave class. Needs Stop() function.
1788 - Added wxModule (module.h/module.cpp) to allow definition
1789 of modules to be initialized and cleaned up on wxWidgets
1791 - Start of Mingw32 compatibility (see minimal and dialogs samples
1792 makefile.m95 files, and install.txt).
1793 - Note: Windows printing has stopped working... will investigate.
1795 - Updated wxString: bug fixes, added wxArrayString, some
1796 compatibility functions.
1797 - Updated log.h/cpp, added wxApp::CreateLogTarget.
1798 - file.h: new wxTempFile class.
1799 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
1800 - statbr95: wxStatusBar95 control.
1801 - registry.h/cpp: wxRegKey class for Win95 registry.
1802 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
1803 - wxConfig and wxFileConfig classes.
1807 - Added src/other/png, src/other/zlib directories.
1808 - Added samples/png.
1809 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
1810 Porters, please check particularly your wxTreeCtrl and wxListCtrl
1812 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
1814 Alpha 7, March 30th 1998
1815 ------------------------
1819 - Added tab classes, tab sample.
1820 - Now can return FALSE from OnInit and windows will be
1821 cleaned up properly before exit.
1822 - Improved border handling so panels don't get borders
1824 - Debugged MDI activation from Window menu.
1825 - Changes to memory debug handling, including checking for
1826 memory leaks on application exit - but see issues.txt for
1828 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
1829 to allow maintenance of an icon in the Windows 95 taskbar
1831 - Got MFC sample working (MFC and wxWidgets in the same
1832 application), partly by tweaking ntwxwin.mak settings.
1833 - Got DLL compilation working again (VC++).
1834 - Changed wxProp/Dialog Editor filenames.
1838 - Added tab classes, tab sample.
1839 - Revised memory.cpp, memory.h slightly; memory.h now #defines
1840 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
1841 now checks for leaks on exit. Added memcheck sample.
1842 See src/msw/issues.txt for more details.
1843 - resource.h, resource.cpp changed to make wxDefaultResourceTable
1844 a pointer. Now initialize resource system with
1845 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
1846 allow better control of memory.
1847 - wxString now derives from wxObject, to enable memory leak
1849 - Added some #include fixes in various files, plus changed
1850 float to long in wxToolBar files.
1852 Alpha 6, March 10th 1998
1853 ------------------------
1857 - Found stack error bug - stopped unwanted OnIdle recursion.
1858 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
1859 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
1860 check if the number of top-level windows is zero before
1861 exiting. Also, wxApp::GetTopWindow will return either
1862 m_topWindow or the first member of wxTopLevelWindows, so you
1863 don't have to call wxApp::SetTopWindow.
1864 - Added dynarray.h/dynarray.cpp (from Vadim).
1865 - Added first cut at OLE drag and drop (from Vadim). dnd sample
1866 added. Drop target only at this stage. See src/msw/ole/*.cpp,
1867 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
1868 Doesn't work with GnuWin32 - no appropriate headers e.g. for
1870 Doesn't work with BC++ either - crashes on program startup.
1871 - Added Vadim's owner-draw modifications - will probably remain
1872 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
1873 - Added wxLB_OWNERDRAW for owner-draw listboxes.
1874 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
1875 Doesn't entirely work for WIN16.
1876 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
1877 can also be used as an argument to wxMenu::Append, not just for
1878 internal implementation.
1879 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
1880 in makeg95.env, together with mingw32.bat). However, resource
1881 binding is not working yet so most apps with dialogs crash.
1885 - Added Vadim's dynarray.h, dynarray.cpp.
1886 - Added Vadim's menuitem.cpp.
1887 - Added Windows-specific wxCheckListBox,
1888 owner-draw wxListBox, and drag-and-drop
1889 (see docs/msw/changes.txt).
1891 Alpha 5, 14th February 1998
1892 --------------------------
1896 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1897 DISTRIBUTIONS. This change log will therefore now refer to
1898 the Windows-specific code only. See docs/changes.txt for generic
1900 - Removed Windows-specific reference counting system (GDI
1901 resources were cleaned up in idle time) - minimal
1902 advantages now we have a wxWin reference counting system.
1903 - Added missing WXDLLEXPORT keywords so DLL compilation works
1905 - Removed most warnings for GnuWin32 compilation.
1906 - Added wxRegion/wxRegionIterator, but haven't yet used it in
1911 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1912 DISTRIBUTIONS. This change log will therefore now refer to
1913 the generic code only. See docs/msw/changes.txt for Windows-specific
1915 - Readmes, change logs and installation files now go in
1916 platform-specific directories under docs, e.g. docs/msw,
1918 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
1919 created dynamically, not as a global object.
1920 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
1921 - Changed names of some include/wx/generic headers to be
1922 consistent and to conform to gcc pragma conventions. Also
1923 changed choicesg.cpp to choicdgg.cpp.
1924 - Added gcc pragmas.
1925 - Added gtk inclusion in include/wx headers.
1926 - Added consistent file headings to source and headers.
1927 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
1928 added a few references to wxTransString.
1929 - Added operator to wxTransString that converts automatically
1930 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
1931 - samples/internat now works (minimally).
1932 - Added wxMouseEvent::GetPosition and
1933 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
1934 - Made wxSize and wxRect contain longs not ints.
1935 - Cured some memory leaks (thanks Vadim).
1936 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
1937 will only keep processing OnIdle if it returns TRUE from
1940 Alpha 4, 31st January 1998
1941 --------------------------
1945 - Changed wxDC functions to take longs instead of floats. GetSize now takes
1946 integer pointers, plus a version that returns a wxSize.
1947 - const keyword added to various wxDC functions.
1948 - Under Windows, wxDC no longer has any knowledge of whether
1949 an associated window is scrolled or not. Instead, the device
1950 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
1951 - wxScrolledWindow applications can optionally override the virtual OnDraw
1952 function instead of using the OnPaint event handler. The wxDC passed to
1953 OnDraw will be translated by PrepareDC to reflect scrolling.
1954 When drawing outside of OnDraw, must call PrepareDC explicitly.
1955 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
1957 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
1958 to help printing with multiple pages.
1959 - IPC classes given base classes (wxConnectionBase etc.) which
1960 define the API used by different implementations. DDE
1961 implementation updated to use these base classes.
1962 - wxHelpInstance now separated into wxHelpControllerBase (base
1963 for all implementations), wxWinHelpController (uses standard
1964 WinHelp), wxXLPHelpController (talks to wxHelp by DDE or
1965 TCP/IP). There will be others eventually, such as
1966 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
1967 - Added Vadim Zeitlin's wxString class plus
1968 internationalization code (gettext simulation, wxLocale, etc.).
1969 New files from Vadim:
1975 src\common\string.cpp
1979 No longer use GNU wxString files.
1980 - Split off file-related functions into include\wx\filefn.h and
1981 src\common\filefn.cpp.
1982 - Borland C++ support (WIN32) for main library and
1983 samples, using makefile.b32 files.
1984 - Preparation done for allowing BC++ to compile wxWin as a DLL,
1985 including changes to defs.h.
1986 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
1988 - Added wxShowEvent (generated when window is being shown or
1990 - Got minimal, docview, mdi samples working for 16-bit VC++ and
1991 cured 16-bit problem with wxTextCtrl (removed global memory
1993 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
1995 Alpha 3, September 1997
1996 -----------------------
2000 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
2001 - Instigated new file hierarchy, split files and classes up more logically.
2002 - PrologIO and some other utils now put into core library.
2003 - Revamped print/preview classes, added wxPageSetupDialog.
2004 - Started documentation.
2006 Alpha 2, 30th April 1997
2007 ------------------------
2011 - EVT_... macros now have at least one argument, for conformance
2012 with MetroWerks compiler.
2013 - Added ids to .wxr file format.
2014 - Got Dialog Editor compiled and running again but need
2015 to extend functionality to be in line with new controls.
2016 Added dialoged\test app to allow dynamic loading of .wxr files
2017 for testing purposes.
2018 - Rewrote wxBitmap to allow installable file type
2020 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
2021 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
2023 - Added back wxRadioBox.
2024 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
2027 Alpha 1, 5th April 1997
2028 -----------------------
2032 At this point, the following has been achieved:
2034 - A lot, but not all, of the code has been revamped for better
2035 naming conventions, protection of data members, and use of
2036 wxString instead of char *.
2037 - Obsolete functionality deleted (e.g. default wxPanel layout,
2038 old system event system) and code size reduced.
2039 - Class hierarchy changed (see design doc) - base classes such
2040 as wxbWindow now removed.
2041 - No longer includes windows.h in wxWin headers, by using stand-in
2042 Windows types where needed e.g. WXHWND.
2044 - wxScrolledWindow, wxStatusBar and new MDI classes added.
2045 MDI is now achieved using separate classes, not window styles.
2046 - wxSystemSettings added, and made use of to reflect standard
2048 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
2049 settings mucho rationalised.
2050 - All windows are now subclassed with the same window proc to make
2051 event handling far more consistent. Old internal wxWnd and derived
2053 - API for controls revised, in particular addition of
2054 wxValidator parameters and removal of labels for some controls.
2055 - 1 validator written: see examples/validate.
2056 - Event table system introduced (see most samples and
2057 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
2058 made more flexible, with Push/PopEventHandler allowing a chain
2060 - wxRadioBox removed - will be added back soon.
2061 - Toolbar class hierarchy revised:
2063 wxToolBarSimple (= old wxToolBar)
2064 wxToolBar95 (= old wxButtonBar under Win95)
2065 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
2066 - Constraint system debugged somewhat (sizers now work properly).
2067 - wxFileDialog, wxDirDialog added; other common dialogs now
2068 have class equivalents. Generic colour and font dialogs
2069 rewritten to not need obsolete panel layout.
2070 - .wxr resource system partially reinstated, though needs
2071 an integer ID for controls. Hopefully the resource system
2072 will be replaced by something better and more efficient
2074 - Device contexts no longer stored with window and accessed
2075 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
2077 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
2078 determines whether labels are shown. Other Win95-specific flags
2079 introduced, e.g. for showing ticks.
2080 - Styles introduced for dealing with 3D effects per window, for
2081 any window: all Win95 3D effects supported, plus transparent windows.
2082 - Major change to allow 3D effect support without CTL3D, under
2084 - Bitmap versions of button and checkbox separated out into new
2085 classes, but unimplemented as yet because I intend to remove
2086 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
2087 - utils/wxprop classes working (except maybe wxPropertyFormView)
2088 in preparation for use in Dialog Editor.
2089 - GNU-WIN32 compilation verified (a month or so ago).