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