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