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