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