12 - fixed problem with wxURL when using static version of the library
13 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
14 - wxMimeTypesManager now can create file associations too
15 - wxCopyFile() respects the file permissions (Roland Scholz)
16 - wxFTP::GetFileSize() added (Søren Erland Vestø)
17 - wxDateTime::IsSameDate() bug fixed
18 - wxTimeSpan::Format() now behaves more as expected, see docs
22 - new wxToggleButton class (John Norris, Axel Schlueter)
23 - wxCalendarCtrl now highlighting the date with time part bug fixed
24 - wxADJUST_MINSIZE sizer flag added
25 - FindOrCreateBrush/Pen() bug fix for invalid colour values
29 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
30 - fixed bug in MDI children flags (mis)handling
37 - Fixed bug with directories with trailing (back)slashes in wxPathExists
38 - wxString: added wxArrayString::operator==() and !=()
39 - Fixes for wxCmdLineParser
40 - Added wxGetLocalTimeMillis
41 - Completed Czech translations
42 - Some stream corrections
43 - added missing consts to wxPoint operators
44 - wxDateTime ParseFormat fixes
45 - wxFile::Open(write_append) will create file if it doesn't exist
46 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
50 - wxGenericDragImage now allows virtual image drawing, and
51 flicker-free dragging is now possible
52 - Added wxPrinter::GetLastError
53 - Fixed wxLogGui reentrancy problem
54 - Paper names now translated
56 - Generic validator now caters for more cases (integers in
57 wxTextCtrl, strings in wxChoice, wxComboBox)
58 - Fixed crash when docview On... functions return FALSE. Show
59 error message when an non-existent filename is typed into the Open
61 - Corrected Baltic font encoding handling
62 - wxImage: enhanced TIFF code, added new platform-independent BMP
64 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
65 - Fixed wxPropertyForm crashes in sample
66 - wxWizard now calls TransferDataFromWindow() before calling
67 wxWizardPage::GetNext() fixing an obvious bug
71 - wxWindow::GetCharWidth/Height now calculated accurately.
72 This will affect all .wxr dialog resources, so for
73 backward compatibility, please set
74 wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
75 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
76 - wxTextCtrl: implemented setting colours for rich edit controls
77 - wxColour now accepts both grey and gray
78 - BC++ DLL compilation fixed
79 - Watcom C++ makefiles improved for JPEG and TIFF compilation
80 - Fixed submenu accelerator bug
81 - Fixed dialog focus bug (crash if the previous window to have
82 the focus was destroyed before the dialog closed)
83 - Too-small default wxTextCtrl height fixed
84 - fixed "missing" initial resize of wxMDIChildFrame
85 - wxFrame restores focus better
86 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
87 frames anddialogs, interferes with other window styles otherwise
88 (sometimes you'd get a thick frame in a subwindow)
89 - wxTextCtrl insertion point set to the beginning of the control by SetValue
90 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
91 - wxFileDialog: adjusts struct size if there's an error (struct
92 sizes can be different on different versions of Windows)
93 - wxImageList::GetSize() documented and added to wxMSW
94 - fixed default dialog style to make them non resizeable again
95 - fixed wxFrame::IsShown() which always returned TRUE before
99 - Please see docs/gtk/changes.txt.
103 - Small compilation fixes
119 - Added wxCHMHelpController, for invoking MS HTML Help
120 files. This works under VC++ only
121 - Modal dialog handling improved
122 - Printer dialog now modal
137 - Added docs/tech for technical notes
141 - Started new contrib hierarchy that mirrors
142 the main lib structure; moved OGL and MMedia into it
147 - wxDateTime replaces and extends old wxDate and wxTime classes (still
148 available but strongly deprecated) with many new features
149 - wxLongLong class provides support for (signed) 64 bit integers
150 - wxCmdLineParser class for parsing the command line (supporting short and
151 long options, switches and parameters of different types)
152 - it is now possible to build wxBase under Win32 (using VC++ only so far)
153 and BeOS (without thread support yet)
154 - wxThread class modified to support both detached and joinable threads, also
155 added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
157 - wxDir class for enumerating files in a directory
158 - wxLog functions are now (more) MT-safe
159 - wxStopWatch class, timer functions have more chances to return correct
160 results for your platform (use ANSI functions where available)
161 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
162 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
164 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
168 - Added wxImage::Rotate.
169 - new wxCalendarCtrl class for picking a date interactively
170 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu menagament
171 - wxToolBar supports arbitrary controls (not only buttons) and can be
172 dynamically changed (Delete/Insert functions)
173 - vertical toolbars supported by MSW and GTK native wxToolBar classes
174 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
175 - "file open" dialog allows selecting multiple files at once (contributed by
177 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
178 MIME types if available (Unix only)
179 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
180 - TIFF support added (libtiff required and included in the distribution)
181 - PCX files can now be written (256 and 24 bits)
182 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
183 - wxScrolledWindow now has keyboard interface
184 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
185 - added wxEncodingConverter and improved wxFontMapper
186 for dealing with convertions between different encodings,
187 charsets support in wxLocale and wxHTML
188 - wxDragImage class added
189 - samples/help improved to show standard and advanced HTML help
190 controllers, as well as native help
191 - moved wxTreeLayout class to main lib
195 - wxFrame::MakeFullScreen added.
196 - support for enhanced metafiles added, support for copying/pasting metafiles
197 (WMF and enhanced ones) fixed/added.
198 - implemented setting colours for push buttons
199 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
200 positioned along the top of the screen and not only at the bottom
201 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
202 - loading/saving big (> 32K) files in wxTextCtrl works
203 - tooltips work with wxRadioBox
204 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
206 - returning FALSE from OnPrintPage() aborts printing
207 - VC++ makefiles and project files made (mostly) consistent
208 - wxSetCursorEvent added
212 - wxFontMapper endless recursion bug (on some systems) fixed
213 - wxGTK synthesizes wxActivateEvents
214 - UpdateUI handlers may be used with wxTextCtrl
218 - wxMenu::Enable works
219 - wxToolBar bugs fixed
220 - OGL samples made to work again
224 - almost complete rewrite of wxHtmlHelpController,
225 including faster search, bookmarks, printing, setup dialog
226 and cross-platform binary compatible .cached files for faster
227 loading of large helpbooks, case insensitive search
228 splitted into 3 parts: wxHtmlHelpData, Frame and Controller
229 - added support for charsets and <meta> tag
230 - added support for font faces and justified paragraphs,
231 taken some steps to prepare wxHTML for frames
232 - added dynamic pushing/poping of wxHtmlParser tag handlers
233 - improved HTML printing
234 - added extensive table of HTML characters substitutions ( etc.)
235 - fixed wxHtmlWindow flickering, several minor bugfixes
236 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
237 fixed handling of relative and absolute font sizes in <font size>
240 NOTE: for changes after wxWindows 2.1.0 b4, please see the CVS
243 2.1.0, b4, May 9th 1999
244 -----------------------
248 - JPEG support added.
249 - Many fixes and changes not thought worth mentioning in this file :-)
253 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
255 - JPEG support added.
256 - Fixes for Cygwin compilation.
257 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
258 - Many fixes people didn't tell this file about.
265 - Some changes for Unicode support, including wxchar.h/cpp.
268 2.0.1 (release), March 1st 1999
269 -------------------------------
274 - Slider/spinbutton fixes.
278 - Fixed problems with <return> in dialogs/panels.
279 - Fixed window cursor setting.
280 - Fixed toolbar sizing and edge-clipping problems.
281 - Some makefile fixes.
289 - Added wxUSE_SOCKETS.
290 - More topic overviews.
291 - Put wxPrintPaperType, wxPrintPaperDatabase into
292 prntbase.h/cpp for use in non-PostScript situations
293 (e.g. Win16 wxPageSetupDialog).
296 Beta 5, February 18th 1999
297 --------------------------
301 - wxExecute improved.
305 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
307 - Changed VC++ makefiles (.vc) so that it's possible to have
308 debug/release/DLL versions of the library available simultaneously,
309 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
310 - Added BC++ 5 IDE files and instructions.
311 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
312 - Fixed focus-related crash.
316 - Cured asynchronous wxExecute crash.
317 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
321 - wxLocale documented.
322 - Added include filenames to class reference.
323 - wxHelpController API changed: SetBrowser becomes SetViewer,
324 DisplaySection works for WinHelp, help sample compiles under Windows
325 (though doesn't display help yet).
327 Beta 4, February 12th 1999
328 --------------------------
332 - Miscellaneous fixes.
336 - Makefiles for more compilers and samples; Cygwin makefiles
338 - Added VC++ project file for compiling wxWindows as DLL.
342 - Added OnEraseBackground invocation.
343 - Added wxRETAINED implementation for wxScrolledWindow.
344 - Cured scrolling display problem by adding XmUpdateDisplay.
345 - Tried to make lex-ing in the makefile more generic (command line
346 syntax should apply to both lex and flex).
347 - Changed file selector colours for consistency (except for buttons:
348 crashes for some reason).
349 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
350 of malloc, which causes memory problems).
354 - Further doc improvements.
355 - wxGenericValidator added.
356 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
359 Beta 3, January 31st 1999
360 -------------------------
364 - wxClipboard/DnD API changes (still in progress).
365 - wxToolTip class added.
366 - Miscellaneous fixes.
370 - wxRegConfig DeleteAll bug fixed.
371 - Makefiles for more compilers.
372 - TWIN32 support added.
373 - Renamed VC++ makefiles from .nt to .vc, and
374 factored out program/library settings.
375 - Fixed wxIniConfig bug.
379 - A few more colour fixes.
380 - wxGLCanvas and OpenGL samples working.
381 - Some compiler warnings fixed.
382 - wxChoice crash fix.
383 - Dialog Editor starting to work on Motif.
387 - wxBusyCursor class added.
389 - More doc improvements, incl. expanding docs/html/index.htm.
398 - 16-bit BC++ compilation/linking works albeit without the resource system.
402 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
404 - Cured some widget table clashes.
405 - Added thread support (Robert).
406 - wxPoem sample now works.
410 - Rearranged documentation a bit.
411 - Sash window uses area of first frame/dialog to paint over when drawing
412 the dragged sash, not just the sash window itself (it clipped to the right
414 - Made resource sample use the correct Cancel button id.
415 - Moved wxProp to main library (generic directory), created proplist
417 - Added bombs and fractal samples.
419 Beta 1, December 24th 1998
420 --------------------------
426 wxMSW, wxMotif: not in sync with this release.
429 Alpha 18, December 29th 1998
430 ----------------------------
434 - Win16 support working again (VC++ 1.5)
435 - Win16 now uses generic wxNotebook, wxListCtrl,
436 wxTreeCtrl -- more or less working now, although
437 a little work on wxNotebook is still needed.
438 Under 16-bit Windows, get assertion when you click
440 - Wrote 16-bit BC++ makefiles: samples don't yet link.
441 - Added CodeWarrior support to distribution courtesy
446 - Cured scrolling problem: scrollbars now show/hide themselves
447 without (permanently) resizing the window.
448 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
449 that disabled scrollbar paging.
450 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
452 - Removed major bug whereby dialogs were unmanaged automatically
453 when any button was pressed.
454 - Fixed colours of wxWindow scrollbars, made list and text controls
455 have a white background.
456 - Fixed dialog colour setting.
457 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
458 they have sensible colours by default.
459 - Fixed a bug in wxStaticBox.
460 - Cured wxTreeCtrl bug: now works pretty well!
461 - Debugged DrawEllipticArc (a ! in the wrong place).
462 - Added SetClippingRegion( const wxRegion& region ).
463 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
465 Alpha 17, November 22nd 1998
466 ----------------------------
470 - More documentation updates, especially for
471 wxLayoutWindow classes and debugging facilities.
472 - Changed wxDebugContext to use wxDebugLog instead
474 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
475 However, DLL support may be broken for BC++ since
476 VC++ 6 required changing of WXDLLEXPORT keyword
478 - Numerous miscellaneous changes.
482 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
483 were too buggy (probably not design for dynamic addition/removal of
485 - Some improvements to the wxNotebook implementation.
486 - wxToolBar now uses a bulletin board instead of a form, in an attempt
487 to make it possible to add ordinary wxControls to a toolbar.
488 - Cured problem with not being able to use global memory operators,
489 by defining two more global operators, so that the delete will match
490 the debugging implementation.
491 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
492 global memory operators (usually OK) and #defining new to be
493 WXDEBUG_NEW (sometimes it might not be OK).
494 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
495 - Added a parent-existance check to popup menu code to make it not crash.
496 - Added some optimization in wxWindow::SetSize to produce less flicker.
497 It remains to be seen whether this produces any resize bugs.
499 It's a long time since I updated this file. Previously done:
501 - wxFrame, wxDialog done.
502 - wxScrolledWindow done (but backing pixmap not used at present).
503 - wxBitmap done though could be tidied it up at some point.
504 - Most basic controls are there, if not rigorously tested.
505 - Some MDI support (menus appear on child frames at present).
506 - wxNotebook almost done.
507 - wxToolBar done (horizontal only, which would be easy to extend
508 to vertical toolbars).
512 - Colour and font changing done (question mark over what happens
514 - Accelerators done (for menu items and buttons). Also event loop
515 tidied up in wxApp so that events are filtered through ProcessXEvent.
516 - wxWindow::GetUpdateRegion should now work.
518 Alpha 16, September 8th 1998
519 ----------------------------
523 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
525 - Guilhem's socket classes added, plus wxsocket sample.
526 - A few more makefiles added.
527 - GnuWin32/BC++ compatibility mods.
528 - Further doc updates.
529 - wxProp updates for correct working with wxGTK.
533 - First start at Motif port.
534 - Made makefiles for wxMotif source directory and minimal sample.
535 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
536 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
537 wxMenu, wxMenuItem, wxMenuBar
539 Alpha 15, August 31st 1998
540 --------------------------
545 - wxDC::GetDepth added.
546 - Contribution added whereby wxBitmap will be
547 converted to DC depth if they don't match.
548 - wxConfig API improved, documentation updated.
549 - Printing classes name conventions cleaned up.
550 - wxUpdateUIEvent now derives from wxCommandEvent
551 so event can travel up the window hierachy.
553 Alpha 14, July 31st 1998
554 ------------------------
558 - Toolbar API has been simplified, and now
559 wxFrame::GetClientArea returns the available client
560 area when toolbar, status bar etc. have been accounted for.
561 wxFrame::CreateToolBar added in line with CreateStatusBar.
562 - Documentation updates, incl. for wxToolBar.
563 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
564 - Various additions from other folk, e.g. streams, wxConfig
566 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
568 Alpha 13, July 8th 1998
569 -----------------------
573 - Implemented wxPoint as identical to POINT on Windows, and
574 altered wxDC wxPoint functions to use wxPoint directly in
575 Windows functions, for efficiency.
576 - Cured wxASSERT bug in wxStatusBar95.
577 - #ifdefed out some bits in oleutils.cpp for compilers that
579 - Added some operators to wxPoint, wxSize.
580 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
582 Alpha 12, July 7th 1998
583 -----------------------
587 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
588 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
590 Alpha 11, July 3rd 1998
591 -----------------------
595 - Added thread.h, thread.cpp.
596 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
598 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
599 SetTextColor to SetTextColour, and added or made public several
600 wxMenuItem accessors.
601 - Added two overloads to wxRegion::Contains. Added
602 wxRegion::IsEmpty for a more consistent naming convention.
603 - Added Vadim's wxDataObject and wxDropSource.
604 - ENTER/LEAVE events now work.
605 - Cured wxMemoryDC bug where the DC wasn't being deleted.
606 - Cured wxGauge SetSize major bugginess.
607 - Cured problem where if a GDI object was created on the stack,
608 then went out of scope, then another object was selected into
609 the DC, GDI objects would leak. This is because the assignment
610 to e.g. wxDC::m_pen would delete the GDI object without it first
611 being selected out of the DC. Cured by selecting the old DC object
612 first, then doing the assignment.
613 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
614 - Various other bug fixes and additions.
618 - Major work on Dialog Editor (still plenty to go).
619 - Expanded documentation a bit more.
621 Alpha 10, May 7th 1998
622 ----------------------
626 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
627 and wxIcon functions so that you can specify what size of
628 icon should be loaded. Probably will remain a Windows-specific thing.
629 - wxStatusBar95 now works for MDI frames.
630 - Toolbars in MDI frames now behave normally. They still
631 require application-supplied positioning code though.
632 - Changed installation instructions, makefiles and batch files
633 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
634 change to support Mingw32/EGCS. Bison now used by default.
636 Alpha 9, April 27th 1998
637 ------------------------
641 - Cured bug in wxStatusBar95 that caused a crash if multiple
643 - Added Gnu-Win32 b19/Mingw32 support by changing resource
644 compilation and pragmas.
645 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
646 commands because VZ changed the id setting in wxMenu::MSWCommand.
650 - Corrected some bugs, such as the wxModule compilation problem.
651 - Added Gnu-Win32 b19/Mingw32 support by changing resource
652 compilation and pragmas.
653 - Changed SIZEOF to WXSIZEOF.
655 Alpha 8, April 17th 1998
656 ------------------------
660 - Added IsNull to wxGDIObject to check if the ref data is present or not.
661 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
663 - Added wxJoystick class and event handling, and simple demo.
664 - Added simple wxWave class. Needs Stop() function.
665 - Added wxModule (module.h/module.cpp) to allow definition
666 of modules to be initialized and cleaned up on wxWindows
668 - Start of Mingw32 compatibility (see minimal and dialogs samples
669 makefile.m95 files, and install.txt).
670 - Note: Windows printing has stopped working... will investigate.
672 - Updated wxString: bug fixes, added wxArrayString, some
673 compatibility functions.
674 - Updated log.h/cpp, added wxApp::CreateLogTarget.
675 - file.h: new wxTempFile class.
676 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
677 - statbr95: wxStatusBar95 control.
678 - registry.h/cpp: wxRegKey class for Win95 registry.
679 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
680 - wxConfig and wxFileConfig classes.
684 - Added src/other/png, src/other/zlib directories.
686 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
687 Porters, please check particularly your wxTreeCtrl and wxListCtrl
689 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
691 Alpha 7, March 30th 1998
692 ------------------------
696 - Added tab classes, tab sample.
697 - Now can return FALSE from OnInit and windows will be
698 cleaned up properly before exit.
699 - Improved border handling so panels don't get borders
701 - Debugged MDI activation from Window menu.
702 - Changes to memory debug handling, including checking for
703 memory leaks on application exit - but see issues.txt for
705 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
706 to allow maintenance of an icon in the Windows 95 taskbar
708 - Got MFC sample working (MFC and wxWindows in the same
709 application), partly by tweaking ntwxwin.mak settings.
710 - Got DLL compilation working again (VC++).
711 - Changed wxProp/Dialog Editor filenames.
715 - Added tab classes, tab sample.
716 - Revised memory.cpp, memory.h slightly; memory.h now #defines
717 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
718 now checks for leaks on exit. Added memcheck sample.
719 See src/msw/issues.txt for more details.
720 - resource.h, resource.cpp changed to make wxDefaultResourceTable
721 a pointer. Now initialize resource system with
722 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
723 allow better control of memory.
724 - wxString now derives from wxObject, to enable memory leak
726 - Added some #include fixes in various files, plus changed
727 float to long in wxToolBar files.
729 Alpha 6, March 10th 1998
730 ------------------------
734 - Found stack error bug - stopped unwanted OnIdle recursion.
735 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
736 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
737 check if the number of top-level windows is zero before
738 exiting. Also, wxApp::GetTopWindow will return either
739 m_topWindow or the first member of wxTopLevelWindows, so you
740 don't have to call wxApp::SetTopWindow.
741 - Added dynarray.h/dynarray.cpp (from Vadim).
742 - Added first cut at OLE drag and drop (from Vadim). dnd sample
743 added. Drop target only at this stage. See src/msw/ole/*.cpp,
744 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
745 Doesn't work with GnuWin32 - no appropriate headers e.g. for
747 Doesn't work with BC++ either - crashes on program startup.
748 - Added Vadim's owner-draw modifications - will probably remain
749 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
750 - Added wxLB_OWNERDRAW for owner-draw listboxes.
751 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
752 Doesn't entirely work for WIN16.
753 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
754 can also be used as an argument to wxMenu::Append, not just for
755 internal implementation.
756 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
757 in makeg95.env, together with mingw32.bat). However, resource
758 binding is not working yet so most apps with dialogs crash.
762 - Added Vadim's dynarray.h, dynarray.cpp.
763 - Added Vadim's menuitem.cpp.
764 - Added Windows-specific wxCheckListBox,
765 owner-draw wxListBox, and drag-and-drop
766 (see docs/msw/changes.txt).
768 Alpha 5, 14th February 1998
769 --------------------------
773 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
774 DISTRIBUTIONS. This change log will therefore now refer to
775 the Windows-specific code only. See docs/changes.txt for generic
777 - Removed Windows-specific reference counting system (GDI
778 resources were cleaned up in idle time) - minimal
779 advantages now we have a wxWin reference counting system.
780 - Added missing WXDLLEXPORT keywords so DLL compilation works
782 - Removed most warnings for GnuWin32 compilation.
783 - Added wxRegion/wxRegionIterator, but haven't yet used it in
788 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
789 DISTRIBUTIONS. This change log will therefore now refer to
790 the generic code only. See docs/msw/changes.txt for Windows-specific
792 - Readmes, change logs and installation files now go in
793 platform-specific directories under docs, e.g. docs/msw,
795 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
796 created dynamically, not as a global object.
797 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
798 - Changed names of some include/wx/generic headers to be
799 consistent and to conform to gcc pragma conventions. Also
800 changed choicesg.cpp to choicdgg.cpp.
802 - Added gtk inclusion in include/wx headers.
803 - Added consistent file headings to source and headers.
804 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
805 added a few references to wxTransString.
806 - Added operator to wxTransString that converts automatically
807 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
808 - samples/internat now works (minimally).
809 - Added wxMouseEvent::GetPosition and
810 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
811 - Made wxSize and wxRect contain longs not ints.
812 - Cured some lemory leaks (thanks Vadim).
813 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
814 will only keep processing OnIdle if it returns TRUE from
817 Alpha 4, 31st January 1998
818 --------------------------
822 - Changed wxDC functions to take longs instead of floats. GetSize now takes
823 integer pointers, plus a version that returns a wxSize.
824 - const keyword added to various wxDC functions.
825 - Under Windows, wxDC no longer has any knowledge of whether
826 an associated window is scrolled or not. Instead, the device
827 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
828 - wxScrolledWindow applications can optionally override the virtual OnDraw
829 function instead of using the OnPaint event handler. The wxDC passed to
830 OnDraw will be translated by PrepareDC to reflect scrolling.
831 When drawing outside of OnDraw, must call PrepareDC explicitly.
832 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
834 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
835 to help printing with multiple pages.
836 - IPC classes given base classes (wxConnectionBase etc.) which
837 define the API used by different implementations. DDE
838 implementation updated to use these base classes.
839 - wxHelpInstance now separated into wxHelpControllerBase (base
840 for all implementations), wxWinHelpController (uses standard
841 WinHelp), wxXLPHelPController (talks to wxHelp by DDE or
842 TCP/IP). There will be others eventually, such as
843 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
844 - Added Vadim Zeitlin's wxString class plus
845 internationalization code (gettext simulation, wxLocale, etc.).
846 New files from Vadim:
852 src\common\string.cpp
856 No longer use GNU wxString files.
857 - Split off file-related functions into include\wx\filefn.h and
858 src\common\filefn.cpp.
859 - Borland C++ support (WIN32) for main library and
860 samples, using makefile.b32 files.
861 - Preparation done for allowing BC++ to compile wxWin as a DLL,
862 including changes to defs.h.
863 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
865 - Added wxShowEvent (generated when window is being shown or
867 - Got minimal, docview, mdi samples working for 16-bit VC++ and
868 cured 16-bit problem with wxTextCtrl (removed global memory
870 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
872 Alpha 3, September 1997
873 -----------------------
877 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
878 - Instigated new file hierarchy, split files and classes up more logically.
879 - PrologIO and some other utils now put into core library.
880 - Revamped print/preview classes, added wxPageSetupDialog.
881 - Started documentation.
883 Alpha 2, 30th April 1997
884 ------------------------
888 - EVT_... macros now have at least one argument, for conformance
889 with MetroWerks compiler.
890 - Added ids to .wxr file format.
891 - Got Dialog Editor compiled and running again but need
892 to extend functionality to be in line with new controls.
893 Added dialoged\test app to allow dynamic loading of .wxr files
894 for testing purposes.
895 - Rewrote wxBitmap to allow installable file type
897 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
898 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
900 - Added back wxRadioBox.
901 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
904 Alpha 1, 5th April 1997
905 -----------------------
909 At this point, the following has been achieved:
911 - A lot, but not all, of the code has been revamped for better
912 naming conventions, protection of data members, and use of
913 wxString instead of char *.
914 - Obsolete functionality deleted (e.g. default wxPanel layout,
915 old system event system) and code size reduced.
916 - Class hierarchy changed (see design doc) - base classes such
917 as wxbWindow now removed.
918 - No longer includes windows.h in wxWin headers, by using stand-in
919 Windows types where needed e.g. WXHWND.
921 - wxScrolledWindow, wxStatusBar and new MDI classes added.
922 MDI is now achived using separate classes, not window styles.
923 - wxSystemSettings added, and made use of to reflect standard
925 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
926 settings mucho rationalised.
927 - All windows are now subclassed with the same window proc to make
928 event handling far more consistent. Old internal wxWnd and derived
930 - API for controls revised, in particular addition of
931 wxValidator parameters and removal of labels for some controls.
932 - 1 validator written: see examples/validate.
933 - Event table system introduced (see most samples and
934 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
935 made more flexible, with Push/PopEventHandler allowing a chain
937 - wxRadioBox removed - will be added back soon.
938 - Toolbar class hierarchy revised:
940 wxToolBarSimple (= old wxToolBar)
941 wxToolBar95 (= old wxButtonBar under Win95
942 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
943 - Constraint system debugged somewhat (sizers now work properly).
944 - wxFileDialog, wxDirDialog added; other common dialogs now
945 have class equivalents. Generic colour and font dialogs
946 rewritten to not need obsolete panel layout.
947 - .wxr resource system partially reinstated, though needs
948 an integer ID for controls. Hopefully the resource system
949 will be replaced by something better and more efficient
951 - Device contexts no longer stored with window and accessed
952 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
954 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
955 determines whether labels are shown. Other Win95-specific flags
956 introduced, e.g. for showing ticks.
957 - Styles introduced for dealing with 3D effects per window, for
958 any window: all Win95 3D effects supported, plus transparent windows.
959 - Major change to allow 3D effect support without CTL3D, under
961 - Bitmap versions of button and checkbox separated out into new
962 classes, but unimplemented as yet because I intend to remove
963 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
964 - utils/wxprop classes working (except maybe wxPropertyFormView)
965 in preparation for use in Dialog Editor.
966 - GNU-WIN32 compilation verified (a month or so ago).