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