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