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