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