]> git.saurik.com Git - wxWidgets.git/blob - docs/changes.txt
Added wxTB_NODIVIDER and wxTB_NOALIGN so native Windows toolbar can
[wxWidgets.git] / docs / changes.txt
1 wxWindows 2 Change Log
2 ----------------------
3
4 INCOMPATIBLE CHANGES SINCE 2.2.x
5 ================================
6
7 wxBase:
8
9 - wxArray<T>::Remove(size_t) has been removed to fix compilation problems
10 under 64 bit architectures, please replace it with RemoveAt() in your
11 code.
12
13 - wxArray<T> macros have been changed to fix runtime problems under 64 bit
14 architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
15 used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
16 arrays containing non-pointers.
17
18 - wxObject::CopyObject() and Clone() methods were removed because they
19 simply don't make sense for all objects
20
21 - wxEvent now has a pure virtual Clone() method which must be implemented
22 by all derived classes, if you have user-defined event classes please
23 add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
24
25 All (GUI):
26
27 - the event type constants are not constants any more but are dynamically
28 allocated during run-time which means that they can't be used as case labels
29 in the switch()es, you must rewrite them to use if()s instead
30
31 You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
32 but this is strongly discouraged, please consider changing your codei
33 instead!
34
35 - wxDialog does not derive from wxPanel any longer - if you were using it in
36 your code, please update it. The quick fix for the most cases is to replace
37 the occurences of wxPanel with wxWindow.
38
39 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
40 have changed (to fix some unfortunate clashes), please check your code to
41 ensure that no tests for wxYES or wxNO are broken: for example, the following
42 will *NOT* work any longer:
43
44 if ( flags & wxYES_NO )
45 ... do something ...
46 if ( flags & wxYES )
47 ... do something else ...
48
49 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
50
51 - wxGridCellAttrProvider class API changed, you will need to update your code
52 if you derived any classes from it
53
54 - wxImage::ComputeHistogram()'s signature changed to
55 unsigned long ComputeHistogram(wxImageHistogram&) const
56
57 - wxEvtHandler cannot be copied/assigned any longer - this never worked but
58 now it results in compile-time error instead of run-time crashes
59
60 wxMSW:
61
62 - build system changed: setup.h is not a static file in include/wx any more
63 but is created as part of the build process under lib/<toolkit>/wx/include
64 where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
65 the include path in your make/project files appropriately. Furthermore,
66 xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
67 class. You'll need to remove all references to xpm.lib from your
68 make/project files.
69
70 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
71 style to avoid it, wxFRAME_FLOAT_ON_PARENT style is now obsolete and has no
72 effect
73
74 - all overloads of wxDC::SetClippingRegion() combine the given region with the
75 previously selected one instead of replacing it
76
77 - wxGetHomeDir() uses HOME environment variable and if it is set will not
78 return the programs directory any longer but its value (this function has
79 never been meant to return the programs directory anyhow)
80
81 Unix ports:
82
83 - You should use `wx-config --cxxflags` in your makefiles instead of
84 `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
85 and the compiler flags for C++ files only, CFLAGS should still be used
86 to compile pure C files.
87
88
89 OTHER CHANGES
90 =============
91
92 2.3.3
93 -----
94
95 wxBase:
96
97 - fixes to the command line parsing error and usage messages
98 - modified wxFileName::CreateTempFileName() to open the file atomically
99 (if possible) and, especially, not to leak the file descriptors under Unix
100 - memory leak in wxHTTP fixed (Dimitri)
101 - fixes to AM_PATH_WXCONFIG autoconf macro
102 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
103 after STL hash_map
104 - wxLocale now works in Unicode mode
105 - wxLocale can now load message catalogs in arbitrary encoding
106 - fixed the bug related to the redrawing on resize introduced in 2.3.2
107
108 Unix (Base/GUI):
109
110 - wxWindows may be built using BSD and Solaris (and possibly other) make
111 programs and not only GNU make
112
113 All (GUI):
114
115 - implemented radio menu items and radio toolbar buttons
116 - added possibility to show text in the toolbar buttons
117 - added wxArtProvider class that can be used to customize the look of standard
118 wxWindows dialogs
119 - significantly improved native font support
120 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
121 wxHashTable
122 - added IFF image handler
123 - fixed using custom renderers in wxGrid which was broken in 2.3.2
124 - support for multiple images in one file added to wxImage (TIFF, GIF and ICO formats)
125 - support for CUR and ANI files in wxImage added (Chris Elliott)
126 - wxTextCtrl::GetRange() added
127 - added wxGetFontFromUser() convenience function
128 - added EVT_MENU_OPEN and EVT_MENU_CLOSE events
129 - added Hungarian translations (Janos Vegh)
130 - added wxImage::SaveFile(filename) method (Chris Elliott)
131 - added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
132 for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
133
134 wxMSW:
135
136 - small appearance fixes for native look under Windows XP
137 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
138 - huge (40*) speed up in wxMask::Create()
139 - changing wxWindows styles also changes the underlying Windows window style
140 - wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
141 - fixed flicker in wxTreeCtrl::SetItemXXX()
142 - fixed redraw problems in dynamically resized wxStaticText
143 - improvements to wxWindows applications behaviour when the system colours
144 are changed
145 - fixed wxProgressDialog for ranges > 65535
146 - wxFontEnumerator now returns all fonts, not only TrueType ones
147 - bugs in handling wxFrame styles (border/caption related) fixed
148 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
149 recursion any more
150 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
151 - the separators are not seen behind the controls added to the toolbar any more
152 - wxLB_SORT style can be used with wxCheckListBox
153 - wxWindowDC and wxClientDC::GetSize() works correctly now
154 - Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can
155 be used in FL
156
157 wxGTK:
158
159 - wxDirDialog now presents the file system in standard Unix way
160 - wxButton now honours wxBU_EXACTFIT
161 - wxStaticBox now honours wxALIGN_XXX styles
162 - added support for non alphanumeric simple character accelerators ('-', '=')
163
164 wxHTML:
165
166 - fixed wxHtmlHelpController's cache files handling on big endian machines
167 - added blocking and redirecting capabilities to wxHtmlWindow via
168 wxHtmlWindow::OnOpeningURL()
169 - fixed alignment handling in tables
170 - fixed <font face="..."> handling to be case insensitive
171
172 2.3.2
173 -----
174
175 New port: wxUniv for Win32/GTK+ is now included in the distribution.
176
177 wxBase:
178
179 - wxRegEx class added
180 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
181 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
182 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
183 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
184 capabilities at runtime instead of in the configure script.
185
186 All (GUI):
187
188 - support for virtual list control added
189 - column images in report mode of the list control
190 - wxFindReplaceDialog added (based on work of Markus Greither)
191 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
192 - polygon support in wxRegion (Klaas Holwerda)
193 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
194 - fixed bug with using wxExecute() to capture huge amounts of output
195 - new wxCalendarCtrl styles added (Søren Erland Vestø)
196 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
197 - wxDirSelector() added (Paul A. Thiessen)
198 - wxGrid cell editing veto support (Roger Gammans)
199 - wxListCtrl ITEM_FOCUSED event added
200 - support for ICO files in wxImage added (Chris Elliott)
201
202 wxMSW:
203
204 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
205 - new library naming convention under VC++ -- please change your application
206 project files
207
208 wxGTK:
209
210 - fixed popup menu positioning bug
211
212 wxHTML:
213
214 - new HTML parser with correct parsing of character entities and fixes
215 to tags parsing
216 - added support for animated GIFs
217
218 2.3.1
219 -----
220
221 wxBase:
222
223 - Fixes for gcc 3.0
224 - Fixed new charset detection code
225 - ODBC Informix fixes (submitted by Roger Gammans)
226 - Added ODBC date support to wxVariant
227 - Added wxDir::Traverse
228 - Added wxSingleInstanceChecker class
229 - Removed redundant wxDebugContext functions using C++ streams,
230 so now standard stream usage should be unnecessary
231
232 All (GUI):
233
234 - Added wxDbGrid class for displaying ODBC tables
235 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
236 user code can get access to the edit control when it is created, (to
237 push on a custom event handler for example)
238 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
239 GetDefaultStyle methods to wxTextCtrl
240 - Added wxSingleInstanceChecker
241 - Improvements to Tex2RTF
242 - Added Paul and Roger Gammans' grid controls
243 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
244 first-time saved
245 - Fixed memory leak in textcmn.cpp
246 - Various wxXML enhancements
247 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
248 - Fixed memory leak in DoPrint, htmprint.cpp
249 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
250 instead of GetId()
251 - Added wxDbGrid combining wxODBC classes with wxGrid
252 - Added more makefiles and project files for contrib hierarchy
253
254 wxMSW:
255
256 - Fixed wxApp::ProcessMessage so controls don't lose their
257 accelerators when the accelerators are redefined elsewhere
258 - Accelerators consisting of simple keystrokes (without control,
259 alt or shift) now work
260 - Compile fixes for Watcom C++ added
261 - Compile fixes for Cygwin 1.0 added
262 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
263 - Replaced wxYield() call in PopupMenu() by a much safer
264 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
265 - Enter processing in wxSpinCtrl fixed
266 - Fixed bug in determining the best listbox size
267 - Fix for wxFrame's last focus bug
268 - We now send iconize events
269 - Fixed wxFrame::SetClientSize() with toolbar bug
270 - Added mousewheel processing
271 - Added wxSystemSettings::Get/SetOption so we can configure
272 wxWindows at run time; used this to implement no-maskblt option
273 in wxDC
274 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
275 child frame styles are honoured
276
277 wxGTK:
278
279 - Fixed slider rounding bug
280 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
281 - We now send iconize events
282 - Fix for discrepancies between wxNotebookEvent and wxNotebook
283 GetSelection() results
284
285 2.3.0
286 -----
287
288 wxBase:
289
290 - fixed problem with wxURL when using static version of the library
291 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
292 - wxMimeTypesManager now can create file associations too (Chris Elliott)
293 - wxCopyFile() respects the file permissions (Roland Scholz)
294 - wxFTP::GetFileSize() added (Søren Erland Vestø)
295 - wxDateTime::IsSameDate() bug fixed
296 - wxTimeSpan::Format() now behaves more as expected, see docs
297 - wxLocale now provides much more convenient API for setting language and
298 detecting current system language. New API is more abstracted and truly
299 cross-platform, independent of underlying C runtime library.
300
301 All (GUI):
302
303 - new wxToggleButton class (John Norris, Axel Schlueter)
304 - wxCalendarCtrl not highlighting the date with time part bug fixed
305 - wxADJUST_MINSIZE sizer flag added
306 - FindOrCreateBrush/Pen() bug fix for invalid colour values
307 - new wxXPMHandler for reading and writing XPM images
308 - added new (now recommended) API for conversion between wxImage and wxBitmap
309 (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
310 wxImage methods and ctor)
311 - ODBC classes now support DB2, Interbase, and Pervasive SQL
312 - ODBC documentation complete!!
313 - ODBC classes have much Unicode support added, but not complete
314 - ODBC experimental BLOB support added, but not completely tested
315 - ODBC NULL column support completed (Roger/Paul Gammans)
316 - ODBC All "char *" and char arrays removed and replaced with wxString use
317
318 wxMSW:
319
320 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
321 - fixed bug in MDI children flags (mis)handling
322 - it is possible to compile wxCHMHelpController with compilers
323 other than Visual C++ now and hhctrl.ocx is loaded at runtime
324
325 wxGTK:
326
327 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
328
329 wxHTML:
330
331 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
332 - visual enhancements to contents panel of wxHtmlHelpController
333
334 2.2.0
335 -----
336
337 wxBase:
338
339 - Fixed bug with directories with trailing (back)slashes in wxPathExists
340 - wxString: added wxArrayString::operator==() and !=()
341 - Fixes for wxCmdLineParser
342 - Added wxGetLocalTimeMillis
343 - Completed Czech translations
344 - Some stream corrections
345 - added missing consts to wxPoint operators
346 - wxDateTime ParseFormat fixes
347 - wxFile::Open(write_append) will create file if it doesn't exist
348 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
349
350 All (GUI):
351
352 - wxGenericDragImage now allows virtual image drawing, and
353 flicker-free dragging is now possible
354 - Added wxPrinter::GetLastError
355 - Fixed wxLogGui reentrancy problem
356 - Paper names now translated
357 - wxGrid fixes
358 - Generic validator now caters for more cases (integers in
359 wxTextCtrl, strings in wxChoice, wxComboBox)
360 - Fixed crash when docview On... functions return FALSE. Show
361 error message when an non-existent filename is typed into the Open
362 File dialog.
363 - Corrected Baltic font encoding handling
364 - wxImage: enhanced TIFF code, added new platform-independent BMP
365 writing code
366 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
367 - Fixed wxPropertyForm crashes in sample
368 - wxWizard now calls TransferDataFromWindow() before calling
369 wxWizardPage::GetNext() fixing an obvious bug
370
371 wxMSW:
372
373 - wxWindow::GetCharWidth/Height now calculated accurately.
374 This will affect all .wxr dialog resources, so for
375 backward compatibility, please set
376 wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
377 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
378 - wxTextCtrl: implemented setting colours for rich edit controls
379 - wxColour now accepts both grey and gray
380 - BC++ DLL compilation fixed
381 - Watcom C++ makefiles improved for JPEG and TIFF compilation
382 - Fixed submenu accelerator bug
383 - Fixed dialog focus bug (crash if the previous window to have
384 the focus was destroyed before the dialog closed)
385 - Too-small default wxTextCtrl height fixed
386 - fixed "missing" initial resize of wxMDIChildFrame
387 - wxFrame restores focus better
388 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
389 frames anddialogs, interferes with other window styles otherwise
390 (sometimes you'd get a thick frame in a subwindow)
391 - wxTextCtrl insertion point set to the beginning of the control by SetValue
392 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
393 - wxFileDialog: adjusts struct size if there's an error (struct
394 sizes can be different on different versions of Windows)
395 - wxImageList::GetSize() documented and added to wxMSW
396 - fixed default dialog style to make them non resizeable again
397 - fixed wxFrame::IsShown() which always returned TRUE before
398
399 wxGTK:
400
401 - Please see docs/gtk/changes.txt.
402
403 wxMotif:
404
405 - Small compilation fixes
406
407 Documentation:
408
409 - wxCaret documented
410
411 2.1.16
412 ------
413
414 wxBase:
415
416 All (GUI):
417
418 wxMSW:
419
420 - Various bug fixes
421 - Added wxCHMHelpController, for invoking MS HTML Help
422 files. This works under VC++ only
423 - Modal dialog handling improved
424 - Printer dialog now modal
425
426 wxGTK:
427
428 - Various bug fixes
429
430 wxMotif:
431
432 - Various bug fixes
433
434 2.1.15
435 ------
436
437 Documentation:
438
439 - Added docs/tech for technical notes
440
441 File hierarchy:
442
443 - Started new contrib hierarchy that mirrors
444 the main lib structure; moved OGL and MMedia into it
445
446 wxBase:
447
448 - wxSocket support
449 - wxDateTime replaces and extends old wxDate and wxTime classes (still
450 available but strongly deprecated) with many new features
451 - wxLongLong class provides support for (signed) 64 bit integers
452 - wxCmdLineParser class for parsing the command line (supporting short and
453 long options, switches and parameters of different types)
454 - it is now possible to build wxBase under Win32 (using VC++ only so far)
455 and BeOS (without thread support yet)
456 - wxThread class modified to support both detached and joinable threads, also
457 added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
458 only so far)
459 - wxDir class for enumerating files in a directory
460 - wxLog functions are now (more) MT-safe
461 - wxStopWatch class, timer functions have more chances to return correct
462 results for your platform (use ANSI functions where available)
463 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
464 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
465 is available)
466 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
467
468 all (GUI):
469
470 - Added wxImage::Rotate.
471 - new wxCalendarCtrl class for picking a date interactively
472 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu menagament
473 - wxToolBar supports arbitrary controls (not only buttons) and can be
474 dynamically changed (Delete/Insert functions)
475 - vertical toolbars supported by MSW and GTK native wxToolBar classes
476 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
477 - "file open" dialog allows selecting multiple files at once (contributed by
478 John Norris)
479 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
480 MIME types if available (Unix only)
481 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
482 - TIFF support added (libtiff required and included in the distribution)
483 - PCX files can now be written (256 and 24 bits)
484 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
485 - wxScrolledWindow now has keyboard interface
486 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
487 - added wxEncodingConverter and improved wxFontMapper
488 for dealing with convertions between different encodings,
489 charsets support in wxLocale and wxHTML
490 - wxDragImage class added
491 - samples/help improved to show standard and advanced HTML help
492 controllers, as well as native help
493 - moved wxTreeLayout class to main lib
494
495 wxMSW:
496
497 - wxFrame::MakeFullScreen added.
498 - support for enhanced metafiles added, support for copying/pasting metafiles
499 (WMF and enhanced ones) fixed/added.
500 - implemented setting colours for push buttons
501 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
502 positioned along the top of the screen and not only at the bottom
503 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
504 - loading/saving big (> 32K) files in wxTextCtrl works
505 - tooltips work with wxRadioBox
506 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
507 Unix ports
508 - returning FALSE from OnPrintPage() aborts printing
509 - VC++ makefiles and project files made (mostly) consistent
510 - wxSetCursorEvent added
511
512 wxGTK:
513
514 - wxFontMapper endless recursion bug (on some systems) fixed
515 - wxGTK synthesizes wxActivateEvents
516 - UpdateUI handlers may be used with wxTextCtrl
517
518 wxMotif:
519
520 - wxMenu::Enable works
521 - wxToolBar bugs fixed
522 - OGL samples made to work again
523
524 wxHTML:
525
526 - almost complete rewrite of wxHtmlHelpController,
527 including faster search, bookmarks, printing, setup dialog
528 and cross-platform binary compatible .cached files for faster
529 loading of large helpbooks, case insensitive search
530 splitted into 3 parts: wxHtmlHelpData, Frame and Controller
531 - added support for charsets and <meta> tag
532 - added support for font faces and justified paragraphs,
533 taken some steps to prepare wxHTML for frames
534 - added dynamic pushing/poping of wxHtmlParser tag handlers
535 - improved HTML printing
536 - added extensive table of HTML characters substitutions (&nbsp; etc.)
537 - fixed wxHtmlWindow flickering, several minor bugfixes
538 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
539 fixed handling of relative and absolute font sizes in <font size>
540
541
542 NOTE: for changes after wxWindows 2.1.0 b4, please see the CVS
543 change log.
544
545 2.1.0, b4, May 9th 1999
546 -----------------------
547
548 wxGTK:
549
550 - JPEG support added.
551 - Many fixes and changes not thought worth mentioning in this file :-)
552
553 wxMSW:
554
555 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
556 SetTabSize added.
557 - JPEG support added.
558 - Fixes for Cygwin compilation.
559 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
560 - Many fixes people didn't tell this file about.
561
562 wxMotif:
563
564
565 General:
566
567 - Some changes for Unicode support, including wxchar.h/cpp.
568
569
570 2.0.1 (release), March 1st 1999
571 -------------------------------
572
573 wxGTK:
574
575 - wxGLCanvas fixes.
576 - Slider/spinbutton fixes.
577
578 wxMSW:
579
580 - Fixed problems with <return> in dialogs/panels.
581 - Fixed window cursor setting.
582 - Fixed toolbar sizing and edge-clipping problems.
583 - Some makefile fixes.
584
585 wxMotif:
586
587 - None.
588
589 General:
590
591 - Added wxUSE_SOCKETS.
592 - More topic overviews.
593 - Put wxPrintPaperType, wxPrintPaperDatabase into
594 prntbase.h/cpp for use in non-PostScript situations
595 (e.g. Win16 wxPageSetupDialog).
596
597
598 Beta 5, February 18th 1999
599 --------------------------
600
601 wxGTK:
602
603 - wxExecute improved.
604
605 wxMSW:
606
607 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
608 expected).
609 - Changed VC++ makefiles (.vc) so that it's possible to have
610 debug/release/DLL versions of the library available simultaneously,
611 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
612 - Added BC++ 5 IDE files and instructions.
613 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
614 - Fixed focus-related crash.
615
616 wxMotif:
617
618 - Cured asynchronous wxExecute crash.
619 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
620
621 General:
622
623 - wxLocale documented.
624 - Added include filenames to class reference.
625 - wxHelpController API changed: SetBrowser becomes SetViewer,
626 DisplaySection works for WinHelp, help sample compiles under Windows
627 (though doesn't display help yet).
628
629 Beta 4, February 12th 1999
630 --------------------------
631
632 wxGTK:
633
634 - Miscellaneous fixes.
635
636 wxMSW:
637
638 - Makefiles for more compilers and samples; Cygwin makefiles
639 rationalised.
640 - Added VC++ project file for compiling wxWindows as DLL.
641
642 wxMotif:
643
644 - Added OnEraseBackground invocation.
645 - Added wxRETAINED implementation for wxScrolledWindow.
646 - Cured scrolling display problem by adding XmUpdateDisplay.
647 - Tried to make lex-ing in the makefile more generic (command line
648 syntax should apply to both lex and flex).
649 - Changed file selector colours for consistency (except for buttons:
650 crashes for some reason).
651 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
652 of malloc, which causes memory problems).
653
654 General:
655
656 - Further doc improvements.
657 - wxGenericValidator added.
658 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
659 automatically.
660
661 Beta 3, January 31st 1999
662 -------------------------
663
664 wxGTK:
665
666 - wxClipboard/DnD API changes (still in progress).
667 - wxToolTip class added.
668 - Miscellaneous fixes.
669
670 wxMSW:
671
672 - wxRegConfig DeleteAll bug fixed.
673 - Makefiles for more compilers.
674 - TWIN32 support added.
675 - Renamed VC++ makefiles from .nt to .vc, and
676 factored out program/library settings.
677 - Fixed wxIniConfig bug.
678
679 wxMotif:
680
681 - A few more colour fixes.
682 - wxGLCanvas and OpenGL samples working.
683 - Some compiler warnings fixed.
684 - wxChoice crash fix.
685 - Dialog Editor starting to work on Motif.
686
687 General:
688
689 - wxBusyCursor class added.
690 - Added samples/dde.
691 - More doc improvements, incl. expanding docs/html/index.htm.
692
693 Beta 2, January 1999
694 --------------------
695
696 wxGTK:
697
698 wxMSW:
699
700 - 16-bit BC++ compilation/linking works albeit without the resource system.
701
702 wxMotif:
703
704 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
705 the right place.
706 - Cured some widget table clashes.
707 - Added thread support (Robert).
708 - wxPoem sample now works.
709
710 General:
711
712 - Rearranged documentation a bit.
713 - Sash window uses area of first frame/dialog to paint over when drawing
714 the dragged sash, not just the sash window itself (it clipped to the right
715 or below).
716 - Made resource sample use the correct Cancel button id.
717 - Moved wxProp to main library (generic directory), created proplist
718 sample.
719 - Added bombs and fractal samples.
720
721 Beta 1, December 24th 1998
722 --------------------------
723
724 wxGTK:
725
726 - Various
727
728 wxMSW, wxMotif: not in sync with this release.
729
730
731 Alpha 18, December 29th 1998
732 ----------------------------
733
734 wxMSW:
735
736 - Win16 support working again (VC++ 1.5)
737 - Win16 now uses generic wxNotebook, wxListCtrl,
738 wxTreeCtrl -- more or less working now, although
739 a little work on wxNotebook is still needed.
740 Under 16-bit Windows, get assertion when you click
741 on a tab.
742 - Wrote 16-bit BC++ makefiles: samples don't yet link.
743 - Added CodeWarrior support to distribution courtesy
744 of Stefan Csomor.
745
746 wxMotif:
747
748 - Cured scrolling problem: scrollbars now show/hide themselves
749 without (permanently) resizing the window.
750 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
751 that disabled scrollbar paging.
752 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
753 colours correctly.
754 - Removed major bug whereby dialogs were unmanaged automatically
755 when any button was pressed.
756 - Fixed colours of wxWindow scrollbars, made list and text controls
757 have a white background.
758 - Fixed dialog colour setting.
759 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
760 they have sensible colours by default.
761 - Fixed a bug in wxStaticBox.
762 - Cured wxTreeCtrl bug: now works pretty well!
763 - Debugged DrawEllipticArc (a ! in the wrong place).
764 - Added SetClippingRegion( const wxRegion& region ).
765 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
766
767 Alpha 17, November 22nd 1998
768 ----------------------------
769
770 wxMSW:
771
772 - More documentation updates, especially for
773 wxLayoutWindow classes and debugging facilities.
774 - Changed wxDebugContext to use wxDebugLog instead
775 of wxTrace.
776 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
777 However, DLL support may be broken for BC++ since
778 VC++ 6 required changing of WXDLLEXPORT keyword
779 position.
780 - Numerous miscellaneous changes.
781
782 wxMotif:
783
784 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
785 were too buggy (probably not design for dynamic addition/removal of
786 child frames).
787 - Some improvements to the wxNotebook implementation.
788 - wxToolBar now uses a bulletin board instead of a form, in an attempt
789 to make it possible to add ordinary wxControls to a toolbar.
790 - Cured problem with not being able to use global memory operators,
791 by defining two more global operators, so that the delete will match
792 the debugging implementation.
793 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
794 global memory operators (usually OK) and #defining new to be
795 WXDEBUG_NEW (sometimes it might not be OK).
796 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
797 - Added a parent-existance check to popup menu code to make it not crash.
798 - Added some optimization in wxWindow::SetSize to produce less flicker.
799 It remains to be seen whether this produces any resize bugs.
800
801 It's a long time since I updated this file. Previously done:
802
803 - wxFrame, wxDialog done.
804 - wxScrolledWindow done (but backing pixmap not used at present).
805 - wxBitmap done though could be tidied it up at some point.
806 - Most basic controls are there, if not rigorously tested.
807 - Some MDI support (menus appear on child frames at present).
808 - wxNotebook almost done.
809 - wxToolBar done (horizontal only, which would be easy to extend
810 to vertical toolbars).
811
812 More recently:
813
814 - Colour and font changing done (question mark over what happens
815 to scrollbars).
816 - Accelerators done (for menu items and buttons). Also event loop
817 tidied up in wxApp so that events are filtered through ProcessXEvent.
818 - wxWindow::GetUpdateRegion should now work.
819
820 Alpha 16, September 8th 1998
821 ----------------------------
822
823 wxMSW:
824
825 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
826 sample.
827 - Guilhem's socket classes added, plus wxsocket sample.
828 - A few more makefiles added.
829 - GnuWin32/BC++ compatibility mods.
830 - Further doc updates.
831 - wxProp updates for correct working with wxGTK.
832
833 wxMotif:
834
835 - First start at Motif port.
836 - Made makefiles for wxMotif source directory and minimal sample.
837 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
838 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
839 wxMenu, wxMenuItem, wxMenuBar
840
841 Alpha 15, August 31st 1998
842 --------------------------
843
844 wxMSW:
845
846 - wxBitmap debugged.
847 - wxDC::GetDepth added.
848 - Contribution added whereby wxBitmap will be
849 converted to DC depth if they don't match.
850 - wxConfig API improved, documentation updated.
851 - Printing classes name conventions cleaned up.
852 - wxUpdateUIEvent now derives from wxCommandEvent
853 so event can travel up the window hierachy.
854
855 Alpha 14, July 31st 1998
856 ------------------------
857
858 wxMSW:
859
860 - Toolbar API has been simplified, and now
861 wxFrame::GetClientArea returns the available client
862 area when toolbar, status bar etc. have been accounted for.
863 wxFrame::CreateToolBar added in line with CreateStatusBar.
864 - Documentation updates, incl. for wxToolBar.
865 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
866 - Various additions from other folk, e.g. streams, wxConfig
867 changes, wxNotebook.
868 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
869
870 Alpha 13, July 8th 1998
871 -----------------------
872
873 wxMSW:
874
875 - Implemented wxPoint as identical to POINT on Windows, and
876 altered wxDC wxPoint functions to use wxPoint directly in
877 Windows functions, for efficiency.
878 - Cured wxASSERT bug in wxStatusBar95.
879 - #ifdefed out some bits in oleutils.cpp for compilers that
880 don't support it.
881 - Added some operators to wxPoint, wxSize.
882 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
883
884 Alpha 12, July 7th 1998
885 -----------------------
886
887 wxMSW:
888
889 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
890 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
891
892 Alpha 11, July 3rd 1998
893 -----------------------
894
895 wxMSW:
896
897 - Added thread.h, thread.cpp.
898 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
899 wxMenuBar.
900 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
901 SetTextColor to SetTextColour, and added or made public several
902 wxMenuItem accessors.
903 - Added two overloads to wxRegion::Contains. Added
904 wxRegion::IsEmpty for a more consistent naming convention.
905 - Added Vadim's wxDataObject and wxDropSource.
906 - ENTER/LEAVE events now work.
907 - Cured wxMemoryDC bug where the DC wasn't being deleted.
908 - Cured wxGauge SetSize major bugginess.
909 - Cured problem where if a GDI object was created on the stack,
910 then went out of scope, then another object was selected into
911 the DC, GDI objects would leak. This is because the assignment
912 to e.g. wxDC::m_pen would delete the GDI object without it first
913 being selected out of the DC. Cured by selecting the old DC object
914 first, then doing the assignment.
915 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
916 - Various other bug fixes and additions.
917
918 Generic:
919
920 - Major work on Dialog Editor (still plenty to go).
921 - Expanded documentation a bit more.
922
923 Alpha 10, May 7th 1998
924 ----------------------
925
926 wxMSW:
927
928 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
929 and wxIcon functions so that you can specify what size of
930 icon should be loaded. Probably will remain a Windows-specific thing.
931 - wxStatusBar95 now works for MDI frames.
932 - Toolbars in MDI frames now behave normally. They still
933 require application-supplied positioning code though.
934 - Changed installation instructions, makefiles and batch files
935 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
936 change to support Mingw32/EGCS. Bison now used by default.
937
938 Alpha 9, April 27th 1998
939 ------------------------
940
941 wxMSW:
942
943 - Cured bug in wxStatusBar95 that caused a crash if multiple
944 fields were used.
945 - Added Gnu-Win32 b19/Mingw32 support by changing resource
946 compilation and pragmas.
947 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
948 commands because VZ changed the id setting in wxMenu::MSWCommand.
949
950 Generic:
951
952 - Corrected some bugs, such as the wxModule compilation problem.
953 - Added Gnu-Win32 b19/Mingw32 support by changing resource
954 compilation and pragmas.
955 - Changed SIZEOF to WXSIZEOF.
956
957 Alpha 8, April 17th 1998
958 ------------------------
959
960 wxMSW:
961
962 - Added IsNull to wxGDIObject to check if the ref data is present or not.
963 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
964 some reason :-(
965 - Added wxJoystick class and event handling, and simple demo.
966 - Added simple wxWave class. Needs Stop() function.
967 - Added wxModule (module.h/module.cpp) to allow definition
968 of modules to be initialized and cleaned up on wxWindows
969 startup/exit.
970 - Start of Mingw32 compatibility (see minimal and dialogs samples
971 makefile.m95 files, and install.txt).
972 - Note: Windows printing has stopped working... will investigate.
973 VADIM'S CHANGES:
974 - Updated wxString: bug fixes, added wxArrayString, some
975 compatibility functions.
976 - Updated log.h/cpp, added wxApp::CreateLogTarget.
977 - file.h: new wxTempFile class.
978 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
979 - statbr95: wxStatusBar95 control.
980 - registry.h/cpp: wxRegKey class for Win95 registry.
981 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
982 - wxConfig and wxFileConfig classes.
983
984 Generic:
985
986 - Added src/other/png, src/other/zlib directories.
987 - Added samples/png.
988 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
989 Porters, please check particularly your wxTreeCtrl and wxListCtrl
990 header files.
991 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
992
993 Alpha 7, March 30th 1998
994 ------------------------
995
996 wxMSW:
997
998 - Added tab classes, tab sample.
999 - Now can return FALSE from OnInit and windows will be
1000 cleaned up properly before exit.
1001 - Improved border handling so panels don't get borders
1002 automatically.
1003 - Debugged MDI activation from Window menu.
1004 - Changes to memory debug handling, including checking for
1005 memory leaks on application exit - but see issues.txt for
1006 unresolved issues.
1007 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
1008 to allow maintenance of an icon in the Windows 95 taskbar
1009 tray area.
1010 - Got MFC sample working (MFC and wxWindows in the same
1011 application), partly by tweaking ntwxwin.mak settings.
1012 - Got DLL compilation working again (VC++).
1013 - Changed wxProp/Dialog Editor filenames.
1014
1015 Generic:
1016
1017 - Added tab classes, tab sample.
1018 - Revised memory.cpp, memory.h slightly; memory.h now #defines
1019 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
1020 now checks for leaks on exit. Added memcheck sample.
1021 See src/msw/issues.txt for more details.
1022 - resource.h, resource.cpp changed to make wxDefaultResourceTable
1023 a pointer. Now initialize resource system with
1024 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
1025 allow better control of memory.
1026 - wxString now derives from wxObject, to enable memory leak
1027 checking.
1028 - Added some #include fixes in various files, plus changed
1029 float to long in wxToolBar files.
1030
1031 Alpha 6, March 10th 1998
1032 ------------------------
1033
1034 wxMSW:
1035
1036 - Found stack error bug - stopped unwanted OnIdle recursion.
1037 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
1038 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
1039 check if the number of top-level windows is zero before
1040 exiting. Also, wxApp::GetTopWindow will return either
1041 m_topWindow or the first member of wxTopLevelWindows, so you
1042 don't have to call wxApp::SetTopWindow.
1043 - Added dynarray.h/dynarray.cpp (from Vadim).
1044 - Added first cut at OLE drag and drop (from Vadim). dnd sample
1045 added. Drop target only at this stage. See src/msw/ole/*.cpp,
1046 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
1047 Doesn't work with GnuWin32 - no appropriate headers e.g. for
1048 IUnknown.
1049 Doesn't work with BC++ either - crashes on program startup.
1050 - Added Vadim's owner-draw modifications - will probably remain
1051 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
1052 - Added wxLB_OWNERDRAW for owner-draw listboxes.
1053 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
1054 Doesn't entirely work for WIN16.
1055 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
1056 can also be used as an argument to wxMenu::Append, not just for
1057 internal implementation.
1058 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
1059 in makeg95.env, together with mingw32.bat). However, resource
1060 binding is not working yet so most apps with dialogs crash.
1061
1062 Generic:
1063
1064 - Added Vadim's dynarray.h, dynarray.cpp.
1065 - Added Vadim's menuitem.cpp.
1066 - Added Windows-specific wxCheckListBox,
1067 owner-draw wxListBox, and drag-and-drop
1068 (see docs/msw/changes.txt).
1069
1070 Alpha 5, 14th February 1998
1071 --------------------------
1072
1073 wxMSW:
1074
1075 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1076 DISTRIBUTIONS. This change log will therefore now refer to
1077 the Windows-specific code only. See docs/changes.txt for generic
1078 changes.
1079 - Removed Windows-specific reference counting system (GDI
1080 resources were cleaned up in idle time) - minimal
1081 advantages now we have a wxWin reference counting system.
1082 - Added missing WXDLLEXPORT keywords so DLL compilation works
1083 again.
1084 - Removed most warnings for GnuWin32 compilation.
1085 - Added wxRegion/wxRegionIterator, but haven't yet used it in
1086 e.g. wxDC.
1087
1088 Generic:
1089
1090 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1091 DISTRIBUTIONS. This change log will therefore now refer to
1092 the generic code only. See docs/msw/changes.txt for Windows-specific
1093 changes.
1094 - Readmes, change logs and installation files now go in
1095 platform-specific directories under docs, e.g. docs/msw,
1096 docs/gtk.
1097 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
1098 created dynamically, not as a global object.
1099 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
1100 - Changed names of some include/wx/generic headers to be
1101 consistent and to conform to gcc pragma conventions. Also
1102 changed choicesg.cpp to choicdgg.cpp.
1103 - Added gcc pragmas.
1104 - Added gtk inclusion in include/wx headers.
1105 - Added consistent file headings to source and headers.
1106 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
1107 added a few references to wxTransString.
1108 - Added operator to wxTransString that converts automatically
1109 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
1110 - samples/internat now works (minimally).
1111 - Added wxMouseEvent::GetPosition and
1112 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
1113 - Made wxSize and wxRect contain longs not ints.
1114 - Cured some lemory leaks (thanks Vadim).
1115 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
1116 will only keep processing OnIdle if it returns TRUE from
1117 MoreRequested.
1118
1119 Alpha 4, 31st January 1998
1120 --------------------------
1121
1122 All:
1123
1124 - Changed wxDC functions to take longs instead of floats. GetSize now takes
1125 integer pointers, plus a version that returns a wxSize.
1126 - const keyword added to various wxDC functions.
1127 - Under Windows, wxDC no longer has any knowledge of whether
1128 an associated window is scrolled or not. Instead, the device
1129 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
1130 - wxScrolledWindow applications can optionally override the virtual OnDraw
1131 function instead of using the OnPaint event handler. The wxDC passed to
1132 OnDraw will be translated by PrepareDC to reflect scrolling.
1133 When drawing outside of OnDraw, must call PrepareDC explicitly.
1134 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
1135 scrolling toolbars.
1136 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
1137 to help printing with multiple pages.
1138 - IPC classes given base classes (wxConnectionBase etc.) which
1139 define the API used by different implementations. DDE
1140 implementation updated to use these base classes.
1141 - wxHelpInstance now separated into wxHelpControllerBase (base
1142 for all implementations), wxWinHelpController (uses standard
1143 WinHelp), wxXLPHelPController (talks to wxHelp by DDE or
1144 TCP/IP). There will be others eventually, such as
1145 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
1146 - Added Vadim Zeitlin's wxString class plus
1147 internationalization code (gettext simulation, wxLocale, etc.).
1148 New files from Vadim:
1149 include\wx\string.h
1150 include\wx\debug.h
1151 include\wx\file.h
1152 include\wx\log.h
1153 include\wx\intl.h
1154 src\common\string.cpp
1155 src\common\log.cpp
1156 src\common\intl.cpp
1157 src\common\file.cpp
1158 No longer use GNU wxString files.
1159 - Split off file-related functions into include\wx\filefn.h and
1160 src\common\filefn.cpp.
1161 - Borland C++ support (WIN32) for main library and
1162 samples, using makefile.b32 files.
1163 - Preparation done for allowing BC++ to compile wxWin as a DLL,
1164 including changes to defs.h.
1165 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
1166 introduced.
1167 - Added wxShowEvent (generated when window is being shown or
1168 hidden).
1169 - Got minimal, docview, mdi samples working for 16-bit VC++ and
1170 cured 16-bit problem with wxTextCtrl (removed global memory
1171 trick).
1172 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
1173
1174 Alpha 3, September 1997
1175 -----------------------
1176
1177 All:
1178
1179 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
1180 - Instigated new file hierarchy, split files and classes up more logically.
1181 - PrologIO and some other utils now put into core library.
1182 - Revamped print/preview classes, added wxPageSetupDialog.
1183 - Started documentation.
1184
1185 Alpha 2, 30th April 1997
1186 ------------------------
1187
1188 All:
1189
1190 - EVT_... macros now have at least one argument, for conformance
1191 with MetroWerks compiler.
1192 - Added ids to .wxr file format.
1193 - Got Dialog Editor compiled and running again but need
1194 to extend functionality to be in line with new controls.
1195 Added dialoged\test app to allow dynamic loading of .wxr files
1196 for testing purposes.
1197 - Rewrote wxBitmap to allow installable file type
1198 handlers.
1199 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
1200 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
1201 fully).
1202 - Added back wxRadioBox.
1203 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
1204 a separate file.
1205
1206 Alpha 1, 5th April 1997
1207 -----------------------
1208
1209 Generic:
1210
1211 At this point, the following has been achieved:
1212
1213 - A lot, but not all, of the code has been revamped for better
1214 naming conventions, protection of data members, and use of
1215 wxString instead of char *.
1216 - Obsolete functionality deleted (e.g. default wxPanel layout,
1217 old system event system) and code size reduced.
1218 - Class hierarchy changed (see design doc) - base classes such
1219 as wxbWindow now removed.
1220 - No longer includes windows.h in wxWin headers, by using stand-in
1221 Windows types where needed e.g. WXHWND.
1222 - PrologIO revised.
1223 - wxScrolledWindow, wxStatusBar and new MDI classes added.
1224 MDI is now achived using separate classes, not window styles.
1225 - wxSystemSettings added, and made use of to reflect standard
1226 Windows settings.
1227 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
1228 settings mucho rationalised.
1229 - All windows are now subclassed with the same window proc to make
1230 event handling far more consistent. Old internal wxWnd and derived
1231 classes removed.
1232 - API for controls revised, in particular addition of
1233 wxValidator parameters and removal of labels for some controls.
1234 - 1 validator written: see examples/validate.
1235 - Event table system introduced (see most samples and
1236 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
1237 made more flexible, with Push/PopEventHandler allowing a chain
1238 of event handlers.
1239 - wxRadioBox removed - will be added back soon.
1240 - Toolbar class hierarchy revised:
1241 wxToolBarBase
1242 wxToolBarSimple (= old wxToolBar)
1243 wxToolBar95 (= old wxButtonBar under Win95
1244 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
1245 - Constraint system debugged somewhat (sizers now work properly).
1246 - wxFileDialog, wxDirDialog added; other common dialogs now
1247 have class equivalents. Generic colour and font dialogs
1248 rewritten to not need obsolete panel layout.
1249 - .wxr resource system partially reinstated, though needs
1250 an integer ID for controls. Hopefully the resource system
1251 will be replaced by something better and more efficient
1252 in the future.
1253 - Device contexts no longer stored with window and accessed
1254 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
1255 variables instead.
1256 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
1257 determines whether labels are shown. Other Win95-specific flags
1258 introduced, e.g. for showing ticks.
1259 - Styles introduced for dealing with 3D effects per window, for
1260 any window: all Win95 3D effects supported, plus transparent windows.
1261 - Major change to allow 3D effect support without CTL3D, under
1262 Win95.
1263 - Bitmap versions of button and checkbox separated out into new
1264 classes, but unimplemented as yet because I intend to remove
1265 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
1266 - utils/wxprop classes working (except maybe wxPropertyFormView)
1267 in preparation for use in Dialog Editor.
1268 - GNU-WIN32 compilation verified (a month or so ago).
1269
1270