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