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