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