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