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