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