wxDateTime::ParseFormat() and ParseTime() added (compile but don't work)
[wxWidgets.git] / docs / changes.txt
1 wxWindows 2 Change Log
2 ----------------------
3
4 next release (2.1.12 or 2.2?)
5 -----------------------------
6
7 wxBase:
8
9 - it is now possible to build wxBase under Win32 (using VC++ only so far)
10
11 - wxThread class modified to support both detached and joinable threads, also
12   added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
13   only so far)
14 - wxDir class for enumerating files in a directory
15 - wxLog functions are now (more) MT-safe
16 - wxStopWatch class, timer functions have more chances to return correct
17   results for your platform (use ANSI functions where available)
18 - wxString::ToLong, ToULong, ToDouble methods added
19 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
20   is available)
21 - wxArray::RemoveAt() replaces deprectaed wxArray::Remove(index)
22
23 all (GUI):
24 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu menagament
25 - wxToolBar supports arbitrary controls (not only buttons) and can be
26   dynamically changed (Delete/Insert functions)
27 - vertical toolbars supported by MSW and GTK native wxToolBar classes
28 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
29 - "file open" dialog allows selecting multiple files at once (contributed by
30   John Norris)
31 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
32   MIME types if available (Unix only)
33 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
34
35 - TIFF support added (libtiff required and included in the distribution)
36 - PCX files can now be written (24 bit only so far)
37
38 wxMSW:
39
40 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
41 - tooltips work with wxRadioBox
42 - returning FALSE from OnPrintPage() aborts printing
43
44 wxGTK:
45
46 - wxFontMapper endless recursion bug (on some systems) fixed
47 - wxGTK synthesizes wxActivateEvents
48 - UpdateUI handlers may be used with wxTextCtrl
49
50 wxMotif:
51
52 - wxMenu::Enable) works
53
54 NOTE: for changes after wxWindows 2.1.0 b4, please see the CVS
55 change log.
56
57 Major improvements are listed in readme.txt.
58
59 2.1.0, b4, May 9th 1999
60 -----------------------
61
62 wxGTK:
63
64 - JPEG support added.
65 - Many fixes and changes not thought worth mentioning in this file :-)
66
67 wxMSW:
68
69 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
70   SetTabSize added.
71 - JPEG support added.
72 - Fixes for Cygwin compilation.
73 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
74 - Many fixes people didn't tell this file about.
75
76 wxMotif:
77
78
79 General:
80
81 - Some changes for Unicode support, including wxchar.h/cpp.
82
83
84 2.0.1 (release), March 1st 1999
85 -------------------------------
86
87 wxGTK:
88
89 - wxGLCanvas fixes.
90 - Slider/spinbutton fixes.
91
92 wxMSW:
93
94 - Fixed problems with <return> in dialogs/panels.
95 - Fixed window cursor setting.
96 - Fixed toolbar sizing and edge-clipping problems.
97 - Some makefile fixes.
98
99 wxMotif:
100
101 - None.
102
103 General:
104
105 - Added wxUSE_SOCKETS.
106 - More topic overviews.
107 - Put wxPrintPaperType, wxPrintPaperDatabase into
108   prntbase.h/cpp for use in non-PostScript situations
109   (e.g. Win16 wxPageSetupDialog).
110
111
112 Beta 5, February 18th 1999
113 --------------------------
114
115 wxGTK:
116
117 - wxExecute improved.
118
119 wxMSW:
120
121 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
122   expected).
123 - Changed VC++ makefiles (.vc) so that it's possible to have
124   debug/release/DLL versions of the library available simultaneously,
125   with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
126 - Added BC++ 5 IDE files and instructions.
127 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
128 - Fixed focus-related crash.
129
130 wxMotif:
131
132 - Cured asynchronous wxExecute crash.
133 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
134
135 General:
136
137 - wxLocale documented.
138 - Added include filenames to class reference.
139 - wxHelpController API changed: SetBrowser becomes SetViewer,
140   DisplaySection works for WinHelp, help sample compiles under Windows
141   (though doesn't display help yet).
142
143 Beta 4, February 12th 1999
144 --------------------------
145
146 wxGTK:
147
148 - Miscellaneous fixes.
149
150 wxMSW:
151
152 - Makefiles for more compilers and samples; Cygwin makefiles
153   rationalised.
154 - Added VC++ project file for compiling wxWindows as DLL.
155
156 wxMotif:
157
158 - Added OnEraseBackground invocation.
159 - Added wxRETAINED implementation for wxScrolledWindow.
160 - Cured scrolling display problem by adding XmUpdateDisplay.
161 - Tried to make lex-ing in the makefile more generic (command line
162   syntax should apply to both lex and flex).
163 - Changed file selector colours for consistency (except for buttons:
164   crashes for some reason).
165 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
166   of malloc, which causes memory problems).
167
168 General:
169
170 - Further doc improvements.
171 - wxGenericValidator added.
172 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
173   automatically.
174
175 Beta 3, January 31st 1999
176 -------------------------
177
178 wxGTK:
179
180 - wxClipboard/DnD API changes (still in progress).
181 - wxToolTip class added.
182 - Miscellaneous fixes.
183
184 wxMSW:
185
186 - wxRegConfig DeleteAll bug fixed.
187 - Makefiles for more compilers.
188 - TWIN32 support added.
189 - Renamed VC++ makefiles from .nt to .vc, and
190   factored out program/library settings.
191 - Fixed wxIniConfig bug.
192
193 wxMotif:
194
195 - A few more colour fixes.
196 - wxGLCanvas and OpenGL samples working.
197 - Some compiler warnings fixed.
198 - wxChoice crash fix.
199 - Dialog Editor starting to work on Motif.
200
201 General:
202
203 - wxBusyCursor class added.
204 - Added samples/dde.
205 - More doc improvements, incl. expanding docs/html/index.htm.
206
207 Beta 2, January 1999
208 --------------------
209
210 wxGTK:
211
212 wxMSW:
213
214 - 16-bit BC++ compilation/linking works albeit without the resource system.
215
216 wxMotif:
217
218 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
219   the right place.
220 - Cured some widget table clashes.
221 - Added thread support (Robert).
222 - wxPoem sample now works.
223
224 General:
225
226 - Rearranged documentation a bit.
227 - Sash window uses area of first frame/dialog to paint over when drawing
228   the dragged sash, not just the sash window itself (it clipped to the right
229   or below).
230 - Made resource sample use the correct Cancel button id.
231 - Moved wxProp to main library (generic directory), created proplist
232   sample.
233 - Added bombs and fractal samples.
234
235 Beta 1, December 24th 1998
236 --------------------------
237
238 wxGTK:
239
240 - Various
241
242 wxMSW, wxMotif: not in sync with this release.
243
244
245 Alpha 18, December 29th 1998
246 ----------------------------
247
248 wxMSW:
249
250 - Win16 support working again (VC++ 1.5)
251 - Win16 now uses generic wxNotebook, wxListCtrl,
252   wxTreeCtrl -- more or less working now, although
253   a little work on wxNotebook is still needed.
254   Under 16-bit Windows, get assertion when you click
255   on a tab.
256 - Wrote 16-bit BC++ makefiles: samples don't yet link.
257 - Added CodeWarrior support to distribution courtesy
258   of Stefan Csomor.
259
260 wxMotif:
261
262 - Cured scrolling problem: scrollbars now show/hide themselves
263   without (permanently) resizing the window.
264 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
265   that disabled scrollbar paging.
266 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
267   colours correctly.
268 - Removed major bug whereby dialogs were unmanaged automatically
269   when any button was pressed.
270 - Fixed colours of wxWindow scrollbars, made list and text controls
271   have a white background.
272 - Fixed dialog colour setting.
273 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
274   they have sensible colours by default.
275 - Fixed a bug in wxStaticBox.
276 - Cured wxTreeCtrl bug: now works pretty well!
277 - Debugged DrawEllipticArc (a ! in the wrong place).
278 - Added SetClippingRegion( const wxRegion& region ).
279 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
280
281 Alpha 17, November 22nd 1998
282 ----------------------------
283
284 wxMSW:
285
286 - More documentation updates, especially for
287   wxLayoutWindow classes and debugging facilities.
288 - Changed wxDebugContext to use wxDebugLog instead
289   of wxTrace.
290 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
291   However, DLL support may be broken for BC++ since
292   VC++ 6 required changing of WXDLLEXPORT keyword
293   position.
294 - Numerous miscellaneous changes.
295
296 wxMotif:
297
298 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
299   were too buggy (probably not design for dynamic addition/removal of
300   child frames).
301 - Some improvements to the wxNotebook implementation.
302 - wxToolBar now uses a bulletin board instead of a form, in an attempt
303   to make it possible to add ordinary wxControls to a toolbar.
304 - Cured problem with not being able to use global memory operators,
305   by defining two more global operators, so that the delete will match
306   the debugging implementation.
307 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
308   global memory operators (usually OK) and #defining new to be
309   WXDEBUG_NEW (sometimes it might not be OK).
310 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
311 - Added a parent-existance check to popup menu code to make it not crash.
312 - Added some optimization in wxWindow::SetSize to produce less flicker.
313   It remains to be seen whether this produces any resize bugs.
314
315 It's a long time since I updated this file. Previously done:
316
317 - wxFrame, wxDialog done.
318 - wxScrolledWindow done (but backing pixmap not used at present).
319 - wxBitmap done though could be tidied it up at some point.
320 - Most basic controls are there, if not rigorously tested.
321 - Some MDI support (menus appear on child frames at present).
322 - wxNotebook almost done.
323 - wxToolBar done (horizontal only, which would be easy to extend
324   to vertical toolbars).
325
326 More recently:
327
328 - Colour and font changing done (question mark over what happens
329   to scrollbars).
330 - Accelerators done (for menu items and buttons). Also event loop
331   tidied up in wxApp so that events are filtered through ProcessXEvent.
332 - wxWindow::GetUpdateRegion should now work.
333
334 Alpha 16, September 8th 1998
335 ----------------------------
336
337 wxMSW:
338
339 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
340   sample.
341 - Guilhem's socket classes added, plus wxsocket sample.
342 - A few more makefiles added.
343 - GnuWin32/BC++ compatibility mods.
344 - Further doc updates.
345 - wxProp updates for correct working with wxGTK.
346
347 wxMotif:
348
349 - First start at Motif port.
350 - Made makefiles for wxMotif source directory and minimal sample.
351 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
352   wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
353   wxMenu, wxMenuItem, wxMenuBar
354
355 Alpha 15, August 31st 1998
356 --------------------------
357
358 wxMSW:
359
360 - wxBitmap debugged.
361 - wxDC::GetDepth added.
362 - Contribution added whereby wxBitmap will be
363   converted to DC depth if they don't match.
364 - wxConfig API improved, documentation updated.
365 - Printing classes name conventions cleaned up.
366 - wxUpdateUIEvent now derives from wxCommandEvent
367   so event can travel up the window hierachy.
368
369 Alpha 14, July 31st 1998
370 ------------------------
371
372 wxMSW:
373
374 - Toolbar API has been simplified, and now
375   wxFrame::GetClientArea returns the available client
376   area when toolbar, status bar etc. have been accounted for.
377   wxFrame::CreateToolBar added in line with CreateStatusBar.
378 - Documentation updates, incl. for wxToolBar.
379 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
380 - Various additions from other folk, e.g. streams, wxConfig
381   changes, wxNotebook.
382 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
383
384 Alpha 13, July 8th 1998
385 -----------------------
386
387 wxMSW:
388
389 - Implemented wxPoint as identical to POINT on Windows, and
390   altered wxDC wxPoint functions to use wxPoint directly in
391   Windows functions, for efficiency.
392 - Cured wxASSERT bug in wxStatusBar95.
393 - #ifdefed out some bits in oleutils.cpp for compilers that
394   don't support it.
395 - Added some operators to wxPoint, wxSize.
396 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
397
398 Alpha 12, July 7th 1998
399 -----------------------
400
401 wxMSW:
402
403 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
404   have flat toolbars on Win98 or Win95 with IE >= 3 installed.
405
406 Alpha 11, July 3rd 1998
407 -----------------------
408
409 wxMSW:
410
411 - Added thread.h, thread.cpp.
412 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
413   wxMenuBar.
414 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
415   SetTextColor to SetTextColour, and added or made public several
416   wxMenuItem accessors.
417 - Added two overloads to wxRegion::Contains. Added
418   wxRegion::IsEmpty for a more consistent naming convention.
419 - Added Vadim's wxDataObject and wxDropSource.
420 - ENTER/LEAVE events now work.
421 - Cured wxMemoryDC bug where the DC wasn't being deleted.
422 - Cured wxGauge SetSize major bugginess.
423 - Cured problem where if a GDI object was created on the stack,
424   then went out of scope, then another object was selected into
425   the DC, GDI objects would leak. This is because the assignment
426   to e.g. wxDC::m_pen would delete the GDI object without it first
427   being selected out of the DC. Cured by selecting the old DC object
428   first, then doing the assignment.
429 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
430 - Various other bug fixes and additions.
431
432 Generic:
433
434 - Major work on Dialog Editor (still plenty to go).
435 - Expanded documentation a bit more.
436
437 Alpha 10, May 7th 1998
438 ----------------------
439
440 wxMSW:
441
442 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
443   and wxIcon functions so that you can specify what size of
444   icon should be loaded. Probably will remain a Windows-specific thing.
445 - wxStatusBar95 now works for MDI frames.
446 - Toolbars in MDI frames now behave normally. They still
447   require application-supplied positioning code though.
448 - Changed installation instructions, makefiles and batch files
449   for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
450   change to support Mingw32/EGCS. Bison now used by default.
451
452 Alpha 9, April 27th 1998
453 ------------------------
454
455 wxMSW:
456
457 - Cured bug in wxStatusBar95 that caused a crash if multiple
458   fields were used.
459 - Added Gnu-Win32 b19/Mingw32 support by changing resource
460   compilation and pragmas.
461 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
462   commands because VZ changed the id setting in wxMenu::MSWCommand.
463
464 Generic:
465
466 - Corrected some bugs, such as the wxModule compilation problem.
467 - Added Gnu-Win32 b19/Mingw32 support by changing resource
468   compilation and pragmas.
469 - Changed SIZEOF to WXSIZEOF.
470
471 Alpha 8, April 17th 1998
472 ------------------------
473
474 wxMSW:
475
476 - Added IsNull to wxGDIObject to check if the ref data is present or not.
477 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
478   some reason :-(
479 - Added wxJoystick class and event handling, and simple demo.
480 - Added simple wxWave class. Needs Stop() function.
481 - Added wxModule (module.h/module.cpp) to allow definition
482   of modules to be initialized and cleaned up on wxWindows
483   startup/exit.
484 - Start of Mingw32 compatibility (see minimal and dialogs samples
485   makefile.m95 files, and install.txt).
486 - Note: Windows printing has stopped working... will investigate.
487 VADIM'S CHANGES:
488 - Updated wxString: bug fixes, added wxArrayString, some
489   compatibility functions.
490 - Updated log.h/cpp, added wxApp::CreateLogTarget.
491 - file.h: new wxTempFile class.
492 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
493 - statbr95: wxStatusBar95 control.
494 - registry.h/cpp: wxRegKey class for Win95 registry.
495 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
496 - wxConfig and wxFileConfig classes.
497
498 Generic:
499
500 - Added src/other/png, src/other/zlib directories.
501 - Added samples/png.
502 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
503   Porters, please check particularly your wxTreeCtrl and wxListCtrl
504   header files.
505 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
506
507 Alpha 7, March 30th 1998
508 ------------------------
509
510 wxMSW:
511
512 - Added tab classes, tab sample.
513 - Now can return FALSE from OnInit and windows will be
514   cleaned up properly before exit.
515 - Improved border handling so panels don't get borders
516   automatically.
517 - Debugged MDI activation from Window menu.
518 - Changes to memory debug handling, including checking for
519   memory leaks on application exit - but see issues.txt for
520   unresolved issues.
521 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
522   to allow maintenance of an icon in the Windows 95 taskbar
523   tray area.
524 - Got MFC sample working (MFC and wxWindows in the same
525   application), partly by tweaking ntwxwin.mak settings.
526 - Got DLL compilation working again (VC++).
527 - Changed wxProp/Dialog Editor filenames.
528
529 Generic:
530
531 - Added tab classes, tab sample.
532 - Revised memory.cpp, memory.h slightly; memory.h now #defines
533   new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
534   now checks for leaks on exit. Added memcheck sample.
535   See src/msw/issues.txt for more details.
536 - resource.h, resource.cpp changed to make wxDefaultResourceTable
537   a pointer. Now initialize resource system with
538   wxInitializeResourceSystem and wxCleanUpResourceSystem, to
539   allow better control of memory.
540 - wxString now derives from wxObject, to enable memory leak
541   checking.
542 - Added some #include fixes in various files, plus changed
543   float to long in wxToolBar files.
544
545 Alpha 6, March 10th 1998
546 ------------------------
547
548 wxMSW:
549
550 - Found stack error bug - stopped unwanted OnIdle recursion.
551 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
552 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
553   check if the number of top-level windows is zero before
554   exiting. Also, wxApp::GetTopWindow will return either
555   m_topWindow or the first member of wxTopLevelWindows, so you
556   don't have to call wxApp::SetTopWindow.
557 - Added dynarray.h/dynarray.cpp (from Vadim).
558 - Added first cut at OLE drag and drop (from Vadim). dnd sample
559   added. Drop target only at this stage. See src/msw/ole/*.cpp,
560   wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
561   Doesn't work with GnuWin32 - no appropriate headers e.g. for
562   IUnknown.
563   Doesn't work with BC++ either - crashes on program startup.
564 - Added Vadim's owner-draw modifications - will probably remain
565   Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
566 - Added wxLB_OWNERDRAW for owner-draw listboxes.
567 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
568   Doesn't entirely work for WIN16.
569 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
570   can also be used as an argument to wxMenu::Append, not just for
571   internal implementation.
572 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
573   in makeg95.env, together with mingw32.bat). However, resource
574   binding is not working yet so most apps with dialogs crash.
575
576 Generic:
577
578 - Added Vadim's dynarray.h, dynarray.cpp.
579 - Added Vadim's menuitem.cpp.
580 - Added Windows-specific wxCheckListBox,
581   owner-draw wxListBox, and drag-and-drop
582   (see docs/msw/changes.txt).
583
584 Alpha 5, 14th February 1998
585 --------------------------
586
587 wxMSW:
588
589 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
590   DISTRIBUTIONS. This change log will therefore now refer to
591   the Windows-specific code only. See docs/changes.txt for generic
592   changes.
593 - Removed Windows-specific reference counting system (GDI
594   resources were cleaned up in idle time) - minimal
595   advantages now we have a wxWin reference counting system.
596 - Added missing WXDLLEXPORT keywords so DLL compilation works
597   again.
598 - Removed most warnings for GnuWin32 compilation.
599 - Added wxRegion/wxRegionIterator, but haven't yet used it in
600   e.g. wxDC.
601
602 Generic:
603
604 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
605   DISTRIBUTIONS. This change log will therefore now refer to
606   the generic code only. See docs/msw/changes.txt for Windows-specific
607   changes.
608 - Readmes, change logs and installation files now go in
609   platform-specific directories under docs, e.g. docs/msw,
610   docs/gtk.
611 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
612   created dynamically, not as a global object.
613 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
614 - Changed names of some include/wx/generic headers to be
615   consistent and to conform to gcc pragma conventions. Also
616   changed choicesg.cpp to choicdgg.cpp.
617 - Added gcc pragmas.
618 - Added gtk inclusion in include/wx headers.
619 - Added consistent file headings to source and headers.
620 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
621   added a few references to wxTransString.
622 - Added operator to wxTransString that converts automatically
623   to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
624 - samples/internat now works (minimally).
625 - Added wxMouseEvent::GetPosition and
626   wxMouseEvent::GetLogicalPosition, both returning wxPoints.
627 - Made wxSize and wxRect contain longs not ints.
628 - Cured some lemory leaks (thanks Vadim).
629 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
630   will only keep processing OnIdle if it returns TRUE from
631   MoreRequested.
632
633 Alpha 4, 31st January 1998
634 --------------------------
635
636 All:
637
638 - Changed wxDC functions to take longs instead of floats. GetSize now takes
639   integer pointers, plus a version that returns a wxSize.
640 - const keyword added to various wxDC functions.
641 - Under Windows, wxDC no longer has any knowledge of whether
642   an associated window is scrolled or not. Instead, the device
643   origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
644 - wxScrolledWindow applications can optionally override the virtual OnDraw
645   function instead of using the OnPaint event handler. The wxDC passed to
646   OnDraw will be translated by PrepareDC to reflect scrolling.
647   When drawing outside of OnDraw, must call PrepareDC explicitly.
648 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
649   scrolling toolbars.
650 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
651   to help printing with multiple pages.
652 - IPC classes given base classes (wxConnectionBase etc.) which
653   define the API used by different implementations. DDE
654   implementation updated to use these base classes.
655 - wxHelpInstance now separated into wxHelpControllerBase (base
656   for all implementations), wxWinHelpController (uses standard
657   WinHelp), wxXLPHelPController (talks to wxHelp by DDE or
658   TCP/IP). There will be others eventually, such as
659   wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
660 - Added Vadim Zeitlin's wxString class plus
661   internationalization code (gettext simulation, wxLocale, etc.).
662   New files from Vadim:
663   include\wx\string.h
664   include\wx\debug.h
665   include\wx\file.h
666   include\wx\log.h
667   include\wx\intl.h
668   src\common\string.cpp
669   src\common\log.cpp
670   src\common\intl.cpp
671   src\common\file.cpp
672   No longer use GNU wxString files.
673 - Split off file-related functions into include\wx\filefn.h and
674   src\common\filefn.cpp.
675 - Borland C++ support (WIN32) for main library and
676   samples, using makefile.b32 files.
677 - Preparation done for allowing BC++ to compile wxWin as a DLL,
678   including changes to defs.h.
679 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
680   introduced.
681 - Added wxShowEvent (generated when window is being shown or
682   hidden).
683 - Got minimal, docview, mdi samples working for 16-bit VC++ and
684   cured 16-bit problem with wxTextCtrl (removed global memory
685   trick).
686 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
687
688 Alpha 3, September 1997
689 -----------------------
690
691 All:
692
693 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
694 - Instigated new file hierarchy, split files and classes up more logically.
695 - PrologIO and some other utils now put into core library.
696 - Revamped print/preview classes, added wxPageSetupDialog.
697 - Started documentation.
698
699 Alpha 2, 30th April 1997
700 ------------------------
701
702 All:
703
704 - EVT_... macros now have at least one argument, for conformance
705   with MetroWerks compiler.
706 - Added ids to .wxr file format.
707 - Got Dialog Editor compiled and running again but need
708   to extend functionality to be in line with new controls.
709   Added dialoged\test app to allow dynamic loading of .wxr files
710   for testing purposes.
711 - Rewrote wxBitmap to allow installable file type
712   handlers.
713 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
714 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
715   fully).
716 - Added back wxRadioBox.
717 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
718   a separate file.
719
720 Alpha 1, 5th April 1997
721 -----------------------
722
723 Generic:
724
725 At this point, the following has been achieved:
726
727 - A lot, but not all, of the code has been revamped for better
728   naming conventions, protection of data members, and use of
729   wxString instead of char *.
730 - Obsolete functionality deleted (e.g. default wxPanel layout,
731   old system event system) and code size reduced.
732 - Class hierarchy changed (see design doc) - base classes such
733   as wxbWindow now removed.
734 - No longer includes windows.h in wxWin headers, by using stand-in
735   Windows types where needed e.g. WXHWND.
736 - PrologIO revised.
737 - wxScrolledWindow, wxStatusBar and new MDI classes added.
738   MDI is now achived using separate classes, not window styles.
739 - wxSystemSettings added, and made use of to reflect standard
740   Windows settings.
741 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
742   settings mucho rationalised.
743 - All windows are now subclassed with the same window proc to make
744   event handling far more consistent. Old internal wxWnd and derived
745   classes removed.
746 - API for controls revised, in particular addition of
747   wxValidator parameters and removal of labels for some controls.
748 - 1 validator written: see examples/validate.
749 - Event table system introduced (see most samples and
750   wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
751   made more flexible, with Push/PopEventHandler allowing a chain
752   of event handlers.
753 - wxRadioBox removed - will be added back soon.
754 - Toolbar class hierarchy revised:
755   wxToolBarBase
756   wxToolBarSimple (= old wxToolBar)
757   wxToolBar95 (= old wxButtonBar under Win95
758   wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
759 - Constraint system debugged somewhat (sizers now work properly).
760 - wxFileDialog, wxDirDialog added; other common dialogs now
761   have class equivalents. Generic colour and font dialogs
762   rewritten to not need obsolete panel layout.
763 - .wxr resource system partially reinstated, though needs
764   an integer ID for controls. Hopefully the resource system
765   will be replaced by something better and more efficient
766   in the future.
767 - Device contexts no longer stored with window and accessed
768   with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
769   variables instead.
770 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
771   determines whether labels are shown. Other Win95-specific flags
772   introduced, e.g. for showing ticks.
773 - Styles introduced for dealing with 3D effects per window, for
774   any window: all Win95 3D effects supported, plus transparent windows.
775 - Major change to allow 3D effect support without CTL3D, under
776   Win95.
777 - Bitmap versions of button and checkbox separated out into new
778   classes, but unimplemented as yet because I intend to remove
779   the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
780 - utils/wxprop classes working (except maybe wxPropertyFormView)
781   in preparation for use in Dialog Editor.
782 - GNU-WIN32 compilation verified (a month or so ago).
783
784