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