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