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