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