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