4 Beta 5, February 18 1999
5 -------------------------
13 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
15 - Changed VC++ makefiles (.vc) so that it's possible to have
16 debug/release/DLL versions of the library available simultaneously,
17 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
18 - Added BC++ 5 IDE files and instructions.
19 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
20 - Fixed focus-related crash.
24 - Cured asynchronous wxExecute crash.
25 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
29 - wxLocale documented.
30 - Added include filenames to class reference.
31 - wxHelpController API changed: SetBrowser becomes SetViewer,
32 DisplaySection works for WinHelp, help sample compiles under Windows
33 (though doesn't display help yet).
35 Beta 4, February 12th 1999
36 --------------------------
40 - Miscellaneous fixes.
44 - Makefiles for more compilers and samples; Cygwin makefiles
46 - Added VC++ project file for compiling wxWindows as DLL.
50 - Added OnEraseBackground invocation.
51 - Added wxRETAINED implementation for wxScrolledWindow.
52 - Cured scrolling display problem by adding XmUpdateDisplay.
53 - Tried to make lex-ing in the makefile more generic (command line
54 syntax should apply to both lex and flex).
55 - Changed file selector colours for consistency (except for buttons:
56 crashes for some reason).
57 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
58 of malloc, which causes memory problems).
62 - Further doc improvements.
63 - wxGenericValidator added.
64 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
67 Beta 3, January 31st 1999
68 -------------------------
72 - wxClipboard/DnD API changes (still in progress).
73 - wxToolTip class added.
74 - Miscellaneous fixes.
78 - wxRegConfig DeleteAll bug fixed.
79 - Makefiles for more compilers.
80 - TWIN32 support added.
81 - Renamed VC++ makefiles from .nt to .vc, and
82 factored out program/library settings.
83 - Fixed wxIniConfig bug.
87 - A few more colour fixes.
88 - wxGLCanvas and OpenGL samples working.
89 - Some compiler warnings fixed.
91 - Dialog Editor starting to work on Motif.
95 - wxBusyCursor class added.
97 - More doc improvements, incl. expanding docs/html/index.htm.
106 - 16-bit BC++ compilation/linking works albeit without the resource system.
110 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
112 - Cured some widget table clashes.
113 - Added thread support (Robert).
114 - wxPoem sample now works.
118 - Rearranged documentation a bit.
119 - Sash window uses area of first frame/dialog to paint over when drawing
120 the dragged sash, not just the sash window itself (it clipped to the right
122 - Made resource sample use the correct Cancel button id.
123 - Moved wxProp to main library (generic directory), created proplist
125 - Added bombs and fractal samples.
127 Beta 1, December 24th 1998
128 --------------------------
134 wxMSW, wxMotif: not in sync with this release.
137 Alpha 18, December 29th 1998
138 ----------------------------
142 - Win16 support working again (VC++ 1.5)
143 - Win16 now uses generic wxNotebook, wxListCtrl,
144 wxTreeCtrl -- more or less working now, although
145 a little work on wxNotebook is still needed.
146 Under 16-bit Windows, get assertion when you click
148 - Wrote 16-bit BC++ makefiles: samples don't yet link.
149 - Added CodeWarrior support to distribution courtesy
154 - Cured scrolling problem: scrollbars now show/hide themselves
155 without (permanently) resizing the window.
156 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
157 that disabled scrollbar paging.
158 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
160 - Removed major bug whereby dialogs were unmanaged automatically
161 when any button was pressed.
162 - Fixed colours of wxWindow scrollbars, made list and text controls
163 have a white background.
164 - Fixed dialog colour setting.
165 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
166 they have sensible colours by default.
167 - Fixed a bug in wxStaticBox.
168 - Cured wxTreeCtrl bug: now works pretty well!
169 - Debugged DrawEllipticArc (a ! in the wrong place).
170 - Added SetClippingRegion( const wxRegion& region ).
171 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
173 Alpha 17, November 22nd 1998
174 ----------------------------
178 - More documentation updates, especially for
179 wxLayoutWindow classes and debugging facilities.
180 - Changed wxDebugContext to use wxDebugLog instead
182 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
183 However, DLL support may be broken for BC++ since
184 VC++ 6 required changing of WXDLLEXPORT keyword
186 - Numerous miscellaneous changes.
190 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
191 were too buggy (probably not design for dynamic addition/removal of
193 - Some improvements to the wxNotebook implementation.
194 - wxToolBar now uses a bulletin board instead of a form, in an attempt
195 to make it possible to add ordinary wxControls to a toolbar.
196 - Cured problem with not being able to use global memory operators,
197 by defining two more global operators, so that the delete will match
198 the debugging implementation.
199 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
200 global memory operators (usually OK) and #defining new to be
201 WXDEBUG_NEW (sometimes it might not be OK).
202 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
203 - Added a parent-existance check to popup menu code to make it not crash.
204 - Added some optimization in wxWindow::SetSize to produce less flicker.
205 It remains to be seen whether this produces any resize bugs.
207 It's a long time since I updated this file. Previously done:
209 - wxFrame, wxDialog done.
210 - wxScrolledWindow done (but backing pixmap not used at present).
211 - wxBitmap done though could be tidied it up at some point.
212 - Most basic controls are there, if not rigorously tested.
213 - Some MDI support (menus appear on child frames at present).
214 - wxNotebook almost done.
215 - wxToolBar done (horizontal only, which would be easy to extend
216 to vertical toolbars).
220 - Colour and font changing done (question mark over what happens
222 - Accelerators done (for menu items and buttons). Also event loop
223 tidied up in wxApp so that events are filtered through ProcessXEvent.
224 - wxWindow::GetUpdateRegion should now work.
226 Alpha 16, September 8th 1998
227 ----------------------------
231 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
233 - Guilhem's socket classes added, plus wxsocket sample.
234 - A few more makefiles added.
235 - GnuWin32/BC++ compatibility mods.
236 - Further doc updates.
237 - wxProp updates for correct working with wxGTK.
241 - First start at Motif port.
242 - Made makefiles for wxMotif source directory and minimal sample.
243 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
244 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
245 wxMenu, wxMenuItem, wxMenuBar
247 Alpha 15, August 31st 1998
248 --------------------------
253 - wxDC::GetDepth added.
254 - Contribution added whereby wxBitmap will be
255 converted to DC depth if they don't match.
256 - wxConfig API improved, documentation updated.
257 - Printing classes name conventions cleaned up.
258 - wxUpdateUIEvent now derives from wxCommandEvent
259 so event can travel up the window hierachy.
261 Alpha 14, July 31st 1998
262 ------------------------
266 - Toolbar API has been simplified, and now
267 wxFrame::GetClientArea returns the available client
268 area when toolbar, status bar etc. have been accounted for.
269 wxFrame::CreateToolBar added in line with CreateStatusBar.
270 - Documentation updates, incl. for wxToolBar.
271 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
272 - Various additions from other folk, e.g. streams, wxConfig
274 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
276 Alpha 13, July 8th 1998
277 -----------------------
281 - Implemented wxPoint as identical to POINT on Windows, and
282 altered wxDC wxPoint functions to use wxPoint directly in
283 Windows functions, for efficiency.
284 - Cured wxASSERT bug in wxStatusBar95.
285 - #ifdefed out some bits in oleutils.cpp for compilers that
287 - Added some operators to wxPoint, wxSize.
288 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
290 Alpha 12, July 7th 1998
291 -----------------------
295 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
296 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
298 Alpha 11, July 3rd 1998
299 -----------------------
303 - Added thread.h, thread.cpp.
304 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
306 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
307 SetTextColor to SetTextColour, and added or made public several
308 wxMenuItem accessors.
309 - Added two overloads to wxRegion::Contains. Added
310 wxRegion::IsEmpty for a more consistent naming convention.
311 - Added Vadim's wxDataObject and wxDropSource.
312 - ENTER/LEAVE events now work.
313 - Cured wxMemoryDC bug where the DC wasn't being deleted.
314 - Cured wxGauge SetSize major bugginess.
315 - Cured problem where if a GDI object was created on the stack,
316 then went out of scope, then another object was selected into
317 the DC, GDI objects would leak. This is because the assignment
318 to e.g. wxDC::m_pen would delete the GDI object without it first
319 being selected out of the DC. Cured by selecting the old DC object
320 first, then doing the assignment.
321 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
322 - Various other bug fixes and additions.
326 - Major work on Dialog Editor (still plenty to go).
327 - Expanded documentation a bit more.
329 Alpha 10, May 7th 1998
330 ----------------------
334 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
335 and wxIcon functions so that you can specify what size of
336 icon should be loaded. Probably will remain a Windows-specific thing.
337 - wxStatusBar95 now works for MDI frames.
338 - Toolbars in MDI frames now behave normally. They still
339 require application-supplied positioning code though.
340 - Changed installation instructions, makefiles and batch files
341 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
342 change to support Mingw32/EGCS. Bison now used by default.
344 Alpha 9, April 27th 1998
345 ------------------------
349 - Cured bug in wxStatusBar95 that caused a crash if multiple
351 - Added Gnu-Win32 b19/Mingw32 support by changing resource
352 compilation and pragmas.
353 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
354 commands because VZ changed the id setting in wxMenu::MSWCommand.
358 - Corrected some bugs, such as the wxModule compilation problem.
359 - Added Gnu-Win32 b19/Mingw32 support by changing resource
360 compilation and pragmas.
361 - Changed SIZEOF to WXSIZEOF.
363 Alpha 8, April 17th 1998
364 ------------------------
368 - Added IsNull to wxGDIObject to check if the ref data is present or not.
369 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
371 - Added wxJoystick class and event handling, and simple demo.
372 - Added simple wxWave class. Needs Stop() function.
373 - Added wxModule (module.h/module.cpp) to allow definition
374 of modules to be initialized and cleaned up on wxWindows
376 - Start of Mingw32 compatibility (see minimal and dialogs samples
377 makefile.m95 files, and install.txt).
378 - Note: Windows printing has stopped working... will investigate.
380 - Updated wxString: bug fixes, added wxArrayString, some
381 compatibility functions.
382 - Updated log.h/cpp, added wxApp::CreateLogTarget.
383 - file.h: new wxTempFile class.
384 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
385 - statbr95: wxStatusBar95 control.
386 - registry.h/cpp: wxRegKey class for Win95 registry.
387 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
388 - wxConfig and wxFileConfig classes.
392 - Added src/other/png, src/other/zlib directories.
394 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
395 Porters, please check particularly your wxTreeCtrl and wxListCtrl
397 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
399 Alpha 7, March 30th 1998
400 ------------------------
404 - Added tab classes, tab sample.
405 - Now can return FALSE from OnInit and windows will be
406 cleaned up properly before exit.
407 - Improved border handling so panels don't get borders
409 - Debugged MDI activation from Window menu.
410 - Changes to memory debug handling, including checking for
411 memory leaks on application exit - but see issues.txt for
413 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
414 to allow maintenance of an icon in the Windows 95 taskbar
416 - Got MFC sample working (MFC and wxWindows in the same
417 application), partly by tweaking ntwxwin.mak settings.
418 - Got DLL compilation working again (VC++).
419 - Changed wxProp/Dialog Editor filenames.
423 - Added tab classes, tab sample.
424 - Revised memory.cpp, memory.h slightly; memory.h now #defines
425 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
426 now checks for leaks on exit. Added memcheck sample.
427 See src/msw/issues.txt for more details.
428 - resource.h, resource.cpp changed to make wxDefaultResourceTable
429 a pointer. Now initialize resource system with
430 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
431 allow better control of memory.
432 - wxString now derives from wxObject, to enable memory leak
434 - Added some #include fixes in various files, plus changed
435 float to long in wxToolBar files.
437 Alpha 6, March 10th 1998
438 ------------------------
442 - Found stack error bug - stopped unwanted OnIdle recursion.
443 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
444 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
445 check if the number of top-level windows is zero before
446 exiting. Also, wxApp::GetTopWindow will return either
447 m_topWindow or the first member of wxTopLevelWindows, so you
448 don't have to call wxApp::SetTopWindow.
449 - Added dynarray.h/dynarray.cpp (from Vadim).
450 - Added first cut at OLE drag and drop (from Vadim). dnd sample
451 added. Drop target only at this stage. See src/msw/ole/*.cpp,
452 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
453 Doesn't work with GnuWin32 - no appropriate headers e.g. for
455 Doesn't work with BC++ either - crashes on program startup.
456 - Added Vadim's owner-draw modifications - will probably remain
457 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
458 - Added wxLB_OWNERDRAW for owner-draw listboxes.
459 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
460 Doesn't entirely work for WIN16.
461 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
462 can also be used as an argument to wxMenu::Append, not just for
463 internal implementation.
464 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
465 in makeg95.env, together with mingw32.bat). However, resource
466 binding is not working yet so most apps with dialogs crash.
470 - Added Vadim's dynarray.h, dynarray.cpp.
471 - Added Vadim's menuitem.cpp.
472 - Added Windows-specific wxCheckListBox,
473 owner-draw wxListBox, and drag-and-drop
474 (see docs/msw/changes.txt).
476 Alpha 5, 14th February 1998
477 --------------------------
481 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
482 DISTRIBUTIONS. This change log will therefore now refer to
483 the Windows-specific code only. See docs/changes.txt for generic
485 - Removed Windows-specific reference counting system (GDI
486 resources were cleaned up in idle time) - minimal
487 advantages now we have a wxWin reference counting system.
488 - Added missing WXDLLEXPORT keywords so DLL compilation works
490 - Removed most warnings for GnuWin32 compilation.
491 - Added wxRegion/wxRegionIterator, but haven't yet used it in
496 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
497 DISTRIBUTIONS. This change log will therefore now refer to
498 the generic code only. See docs/msw/changes.txt for Windows-specific
500 - Readmes, change logs and installation files now go in
501 platform-specific directories under docs, e.g. docs/msw,
503 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
504 created dynamically, not as a global object.
505 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
506 - Changed names of some include/wx/generic headers to be
507 consistent and to conform to gcc pragma conventions. Also
508 changed choicesg.cpp to choicdgg.cpp.
510 - Added gtk inclusion in include/wx headers.
511 - Added consistent file headings to source and headers.
512 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
513 added a few references to wxTransString.
514 - Added operator to wxTransString that converts automatically
515 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
516 - samples/internat now works (minimally).
517 - Added wxMouseEvent::GetPosition and
518 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
519 - Made wxSize and wxRect contain longs not ints.
520 - Cured some lemory leaks (thanks Vadim).
521 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
522 will only keep processing OnIdle if it returns TRUE from
525 Alpha 4, 31st January 1998
526 --------------------------
530 - Changed wxDC functions to take longs instead of floats. GetSize now takes
531 integer pointers, plus a version that returns a wxSize.
532 - const keyword added to various wxDC functions.
533 - Under Windows, wxDC no longer has any knowledge of whether
534 an associated window is scrolled or not. Instead, the device
535 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
536 - wxScrolledWindow applications can optionally override the virtual OnDraw
537 function instead of using the OnPaint event handler. The wxDC passed to
538 OnDraw will be translated by PrepareDC to reflect scrolling.
539 When drawing outside of OnDraw, must call PrepareDC explicitly.
540 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
542 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
543 to help printing with multiple pages.
544 - IPC classes given base classes (wxConnectionBase etc.) which
545 define the API used by different implementations. DDE
546 implementation updated to use these base classes.
547 - wxHelpInstance now separated into wxHelpControllerBase (base
548 for all implementations), wxWinHelpController (uses standard
549 WinHelp), wxXLPHelPController (talks to wxHelp by DDE or
550 TCP/IP). There will be others eventually, such as
551 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
552 - Added Vadim Zeitlin's wxString class plus
553 internationalization code (gettext simulation, wxLocale, etc.).
554 New files from Vadim:
560 src\common\string.cpp
564 No longer use GNU wxString files.
565 - Split off file-related functions into include\wx\filefn.h and
566 src\common\filefn.cpp.
567 - Borland C++ support (WIN32) for main library and
568 samples, using makefile.b32 files.
569 - Preparation done for allowing BC++ to compile wxWin as a DLL,
570 including changes to defs.h.
571 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
573 - Added wxShowEvent (generated when window is being shown or
575 - Got minimal, docview, mdi samples working for 16-bit VC++ and
576 cured 16-bit problem with wxTextCtrl (removed global memory
578 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
580 Alpha 3, September 1997
581 -----------------------
585 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
586 - Instigated new file hierarchy, split files and classes up more logically.
587 - PrologIO and some other utils now put into core library.
588 - Revamped print/preview classes, added wxPageSetupDialog.
589 - Started documentation.
591 Alpha 2, 30th April 1997
592 ------------------------
596 - EVT_... macros now have at least one argument, for conformance
597 with MetroWerks compiler.
598 - Added ids to .wxr file format.
599 - Got Dialog Editor compiled and running again but need
600 to extend functionality to be in line with new controls.
601 Added dialoged\test app to allow dynamic loading of .wxr files
602 for testing purposes.
603 - Rewrote wxBitmap to allow installable file type
605 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
606 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
608 - Added back wxRadioBox.
609 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
612 Alpha 1, 5th April 1997
613 -----------------------
617 At this point, the following has been achieved:
619 - A lot, but not all, of the code has been revamped for better
620 naming conventions, protection of data members, and use of
621 wxString instead of char *.
622 - Obsolete functionality deleted (e.g. default wxPanel layout,
623 old system event system) and code size reduced.
624 - Class hierarchy changed (see design doc) - base classes such
625 as wxbWindow now removed.
626 - No longer includes windows.h in wxWin headers, by using stand-in
627 Windows types where needed e.g. WXHWND.
629 - wxScrolledWindow, wxStatusBar and new MDI classes added.
630 MDI is now achived using separate classes, not window styles.
631 - wxSystemSettings added, and made use of to reflect standard
633 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
634 settings mucho rationalised.
635 - All windows are now subclassed with the same window proc to make
636 event handling far more consistent. Old internal wxWnd and derived
638 - API for controls revised, in particular addition of
639 wxValidator parameters and removal of labels for some controls.
640 - 1 validator written: see examples/validate.
641 - Event table system introduced (see most samples and
642 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
643 made more flexible, with Push/PopEventHandler allowing a chain
645 - wxRadioBox removed - will be added back soon.
646 - Toolbar class hierarchy revised:
648 wxToolBarSimple (= old wxToolBar)
649 wxToolBar95 (= old wxButtonBar under Win95
650 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
651 - Constraint system debugged somewhat (sizers now work properly).
652 - wxFileDialog, wxDirDialog added; other common dialogs now
653 have class equivalents. Generic colour and font dialogs
654 rewritten to not need obsolete panel layout.
655 - .wxr resource system partially reinstated, though needs
656 an integer ID for controls. Hopefully the resource system
657 will be replaced by something better and more efficient
659 - Device contexts no longer stored with window and accessed
660 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
662 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
663 determines whether labels are shown. Other Win95-specific flags
664 introduced, e.g. for showing ticks.
665 - Styles introduced for dealing with 3D effects per window, for
666 any window: all Win95 3D effects supported, plus transparent windows.
667 - Major change to allow 3D effect support without CTL3D, under
669 - Bitmap versions of button and checkbox separated out into new
670 classes, but unimplemented as yet because I intend to remove
671 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
672 - utils/wxprop classes working (except maybe wxPropertyFormView)
673 in preparation for use in Dialog Editor.
674 - GNU-WIN32 compilation verified (a month or so ago).