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