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