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