]> git.saurik.com Git - wxWidgets.git/blob - docs/changes.txt
made wxNO_FULL_REPAINT_ON_RESIZE default, added wxFULL_REPAINT_ON_RESIZE
[wxWidgets.git] / docs / changes.txt
1 ----------------------------
2 wxWindows 2.5/2.6 Change Log
3 ----------------------------
4
5 INCOMPATIBLE CHANGES SINCE 2.4.x
6 ================================
7
8 Please take a few minutes to read the following list, especially
9 paying attention to the most important changes which are marked
10 with '!' in the first column.
11
12 Also please note that you should ensure that WXWIN_COMPATIBILITY_2_4
13 is defined to 1 if you wish to retain maximal compatibility with 2.4
14 series.
15
16 ! windows are no longer fully repainted when resized, use new style
17 wxFULL_REPAINT_ON_RESIZE to force this (wxNO_FULL_REPAINT_ON_RESIZE stll
18 exists but doesn't do anything any more, this behaviour is default now)
19
20
21 - no initialization/cleanup can be done in wxApp/~wxApp because they are
22 now called much earlier/later than before; please move any exiting code
23 from there to wxApp::OnInit()/OnExit()
24 - also, OnExit() is not called if OnInit() fails
25 - wxTheApp can't be assigned to any longer, use wxApp::SetInstance() instead
26 - wxFileType::GetIcon() returns wxIconLocation, not wxIcon
27 - wxWindow::Clear() is now called ClearBackground()
28
29
30 DEPRECATED METHODS SINCE 2.4.x
31 ==============================
32
33 Deprecated methods may still be used but will disappear in future wxWindows
34 versions, please update your code to not use them.
35
36 - wxDocManager::GetNoHistoryFiles() renamed to GetHistoryFilesCount()
37 - wxSizer::Remove(wxWindow *), use Detach() instead [it is more clear]
38 - wxSizer::Set/GetOption(): use Set/GetProportion() instead
39 - wxKeyEvent::KeyCode(): use GetKeyCode instead
40 - wxList::Number, First, Last, Nth: use GetCount, GetFirst/Last, Item instead
41 - wxNode::Next, Previous, Data: use GetNext, GetPrevious, GetData instead
42 - wxListBase::operator wxList&(): use typesafe lists instead
43 - wxTheFontMapper: use wxFontMapper::Get() instead
44 - wxStringHashTable: use wxHashMap instead
45 - wxHashTableLong: use wxHashMap instead
46 - wxArrayString::GetStringArray: no replacement
47 - wxArrayString::Remove(index, count): use RemoveAt instead
48 - wxTreeItemId conversion to long is deprecated and shouldn't be used
49 - [MSW only] wxWindow::GetUseCtl3D(), GetTransparentBackground() and
50 SetTransparent() as well as wxNO_3D and wxUSER_COLOURS styles
51
52
53 OTHER CHANGES
54 =============
55
56 2.5.1
57 -----
58
59 All:
60
61 - wxDateTime::ParseDateTime() implemented (Linus McCabe)
62 - wxHTTP::GetResponse() added (David Nock)
63 - added conversions to/from UTF 16/32 LE/BE (Andreas Pflug)
64
65 All (GUI):
66
67 - added some support for C++ exceptions in the library (do read the manual!)
68 - added wxListCtrl::GetViewRect()
69 - added wxTextCtrl::MarkDirty()
70
71 wxMSW:
72
73 - fixed wxTE_*WRAP styles handling
74 - wxTextCtrl::GetValue() works with text in non default encoding
75 - changed wxCrashReport to generate minidumps instead of text files
76 - wxRadioButtons are now checked when they get focus (standard behaviour)
77 - several fixes to owner drawn menu items (Christian Sturmlechner)
78 - wxGauge now supports full 32 bit range (Miroslav Rajcic)
79 - use proper window with wxTimer (Jaakko Salli)
80
81 wxGTK:
82
83 - fixes to wxTextCtrl scrolling under GTK2 (Nerijus Baliunas)
84 - fix for crash when using user-dashed lines (Chris Borgolte)
85
86
87 2.5.0
88 -----
89
90 All:
91
92 - It is now possible to build several smaller libraries instead of single
93 huge wxWindows library; wxBase is now dependency of GUI ports rather then
94 separately compiled library
95 - added wxDateSpan::operator==() and !=() (Lukasz Michalski)
96 - added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth)
97 - use true/false throughout the library instead of TRUE/FALSE
98 - wxStopWatch::Start() resumes the stop watch if paused, as per the docs
99 - added wxDirTraverser::OnOpenError() to customize the error handling
100 - added wxArray::SetCount()
101 - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
102 by default in Unicode mode
103 - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
104 - added wx/math.h (John Labenski)
105 - added Catalan translations (Pau Bosch i Crespo)
106 - added Ukrainian translations (Eugene Manko)
107 - fixed bug with deleting entries at root level in wxFileConfig
108 - chkconf.h now includes platform-specific versions (for MSW
109 and Mac) which contain some tests that were in setup.h
110 - added event sink argument to wxEvtHandler::Connect()
111 - added support for POST method and alt ports to wxHTTP (Roger Chickering)
112 - added wxSocket::IPAddress() (Chris Mellon)
113 - wxDataStreams can read/write many elements at once (Mickael Gilabert)
114 - added wxRecursionGuard class
115 - added wxThreadHelper class (Daniel Howard)
116
117 wxBase:
118
119 - added Watcom makefiles
120 - fixed bug with searching in sorted arrays (Jürgen Palm)
121
122 All GUI ports:
123
124 - added wxVScrolledWindow, wxVListBox and wxHtmlLbox classes
125 - added wxListbook
126 - added alpha channel support to wxImage
127 - added wxRenderer class allowing to customize the drawing of generic controls
128 - added wxCLOSE_BOX style for dialogs and frames
129 - added wxSplitterWindow and wxWizard handlers to XRC
130 - wxWizard is now sizer-friendly and may be made resizeable (Robert Vazan)
131 - added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski)
132 - added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
133 - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
134 - improved contrib/utils/convertrc parsing (David J. Cooke)
135 - fixed handling of URLs and filenames in wxFileSystem
136 - implemented alignment for wxGrid bool editor and renderer
137 - support wxListCtrl columns alignment for all platforms and not just MSW
138 - added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
139 - added wxTB_HORZ_TEXT style for MSW and GTK (Axel Schlueter)
140 - fixed user dash handling for MSW and GTK (Ken Edwards)
141 - WXR resources can now be used in Unicode builds
142 - it is now possible to use several wxFileHistory objects in the same menu
143 by giving them different base IDs (Dimitri Schoolwerth)
144 - Added wxTLW::SetShape with implementations for wxMSW and wxGTK (so far)
145 - FL: rmoved const from EnableTool parameters
146 - FL: signal child window when toolbar is closed
147 - In various places, changed tests for pathsep on last char of string to call
148 wxEndsWithPathSeparator(s)
149 - Added to defs.h a couple of macros (wxPtrToULong & wxULongToPtr)
150 - Minor improvements to document/view framework, including
151 delayed deletion of a document (until after the user has chosen
152 a new document), and more intelligent addition of filenames to
153 the file history, including not adding filenames if not using the
154 default extension for the template
155 - sped up wxImage::Scale using fixed point arithmetic (Wade Brainerd)
156 - Added BLOB support to wxDB (John Skiff)
157 - wxWizard now validates when pressing Back or Next
158 - Implemented wxNotebook::DoGetBestSize so Fit now works
159 - Added FindItemByPosition to wxMenu
160 - wxTimer now derives from wxEvtHandler and is its own owner object by default
161 - Extended wxTextAttr and added wxTextCtrl::GetStyle stub
162 to allow better rich text support.
163 - implemented wxFlexGridSizer::Show() (Wade Brainerd)
164 - Added m_ prefix to wxColourData and wxFontData members
165 - Added wxHtmlPrintout::AddFilter so HTML printing can be subject to
166 custom filters as well as HTML viewing.
167 - Moved wxApp::SendIdleEvents and wxApp::ProcessIdle into common code.
168 - wxWindow::OnInternalIdle is now used in all ports, and ensures that
169 user OnIdle events do not interfere with crucial internal processing.
170 - wxWindow::UpdateWindowUI is now a documented function that
171 sends wxUpdateUIEvents, and can be overridden. It has a helper function
172 DoUpdateWindowUI for taking appropriate wxUpdateUIEvent action.
173 - Added functions to wxUpdateUIEvent: Set/GetMode, Set/GetUpdateInterval,
174 CanUpdate, to assist with optimising update event frequency.
175 - Added functions to wxIdleEvent: Set/GetMode, CanSend, to
176 determine whether a window should receive idle events.
177 - Added wxWS_EX_PROCESS_IDLE, wxWS_EX_PROCESS_UI_UPDATES window
178 styles for use with conservative idle and update event modes.
179 - send menu update events only when a menu is about to be used (MSW/GTK)
180 - improved event processing performance (Hans Van Leemputten)
181 - added wxMirrorDC class
182 - printing improvements: GetPageInfo() gets called after the DC has
183 been set and after OnPreparePrinting() has been called so it can
184 report the number of pages accurately; doesn't try to set
185 number of pages in print dialog, in common with other Windows apps;
186 wxHTML easy printing's preview shows number of pages
187 correctly; preview scrollbars are set correctly; keyboard navigation
188 improved
189
190 Unix:
191
192 - fixed compilation on systems with zlib installed but < 1.1.3 version
193 - fixed compilation on Solaris 7 with large files support enabled
194 - added wxTaskBarIcon implementation for X11
195 - added support for GNU/Hurd in configure
196 - wxLocale::Init now tries to set .utf8 locale in Unicode mode (Andreas Pflug)
197
198 Generic controls:
199
200 - implemented wxListCtrl::Refresh() (Norbert Berzen)
201 - support adding/removing columns dynamically (Donald C. Taylor)
202 - wxToolBarSimple, property list classes, wxTreeLayout moved
203 to contrib/src/deprecated
204
205 wxGTK:
206
207 - added support for label mnemonics to GTK+2 build (Michael Moss)
208 - added native wxMessageDialog implementation for GTK+2 build
209 - fixed wxMenu::Remove (John Skiff and Benjamin Williams)
210 - made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace
211 - fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and
212 window managers that support _NET_WM_STATE_FULLSCREEN
213 - added wxEVT_MENU_OPEN event generation
214 - fixed bug in generic file selector causing incomplete file extensions to
215 be appended to filenames with no extension
216 - added wxTextCtrl::SetSelection implementation for GTK+ 2
217 - fixed wxTextCtrl::IsEditable() for GTK+ 2
218 - fixed wxStaticText alignment for GTK+ 2 (Kevin Hock)
219 - don't consume 100% CPU when showing a poup menu
220
221 wxMac:
222
223 - generate wxEVT_SCROLL_THUMBRELEASE and wxEVT_SCROLLWIN_THUMBRELEASE events
224 - generate wxEVT_MENU_OPEN and wxEVT_MENU_CLOSE events
225
226 wxMSW:
227
228 - possibility to use DIBs for wxBitmap implementation (Derry Bryson)
229 - added wxCrashReport
230 - wxStaticBitmap doesn't stretch its bitmap any longer (like other ports)
231 - support for accelerator keys in the owner drawn menus (Derry Bryson)
232 - wxCaret::SetSize() doesn't hide the caret any longer as it used to
233 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
234 - fixed bugs in wxThread::Wait() and IsAlive()
235 - fixed bug with wxTR_EDIT_LABELS not working with wxTR_MULTIPLE
236 - fixes for compilation with OpenWatcom and DigitalMars compilers
237 - fixed wxStaticText best size calculation (was wrong by '&' width)
238 - fixed calling wxFrame::Maximize(FALSE) before the window is shown
239 - added wxNotebook::HitTest() (Otto Wyss)
240 - libraries built with makefile.g95 have a _min or _cyg suffix (MinGW/Cygwin)
241 - when using DLL, wxLocalFSHandler was not being exported
242 - fixed problem with wxEvtHandler object not removed from wxPendingEvents
243 - Windows XP manifest is now included in wx.rc; it is no longer neccessary
244 to ship .exe.manifest file with applications to support XP themes
245 - wxLocale::Init no longer reports error if trying to set Unicode-only locale
246 or if user's default locale is Unicode-only
247 - improved border handling under Windows XP
248 - partial fix for wxNotebook pages looking bad under XP: wxUSE_UXTHEME
249 enables XP theme engine code, and wxUSE_UXTHEME_AUTO tells
250 wxWindows to use the theme tab colour for control backgrounds.
251 - disable wxNB_RIGHT, wxNB_LEFT, wxNB_BOTTOM notebook styles under Windows XP
252 - fixed release mode build with VC 7.x (Martin Ecker)
253 - added support for wxALWAYS_SHOW_SB style
254 - you don't need to add opengl32.lib when using VC++ now (David Falkinder)
255
256 wxMotif:
257
258 - made wxFileDialog behaviour with complex wildcards more sensible (it still
259 does not support all the features other ports do); refer to wxFileDialog
260 documentation for a detailed explanation
261 - implemented wxWakeUpIdle
262 - for Motif 2.0, used the native combobox widget instead of the GPL'd
263 xmcombo; xmcombo is still used for Motif 1.x and Lesstif when compiled
264 with Motif 1.x compatibility
265 - implemented wxToggleButton
266 - wxRadioBox and wxStaticBox now use the default shadow (border) style
267 instead of a sunken border
268 - implemented wxBitmapDataObject
269 - finished wxClipboard implementation
270
271 wxUniv:
272
273 - controls in toolbars now supported
274
275 wxHTML:
276
277 - added text selection to wxHtmlWindow
278 - added SetFonts to HTML printing classes (Adrian Philip Look)
279 - it is now possible to force page break when printing by inserting
280 <div style="page-break-before:always"> into the markup (Greg Chicares)
281 - wxHtmlWindow now uses double buffering to prevent flicker
282
283
284 OLD CHANGES
285 ===========
286
287 INCOMPATIBLE CHANGES SINCE 2.2.x
288 ================================
289
290 Please take a few minutes to read the following list, especially
291 paying attention to the most important changes which are marked
292 with '!' in the first column.
293
294 Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2
295 is defined to 1 if you wish to retain maximal compatibility with 2.2
296 series -- however you are also strongly encouraged to try to compile
297 your code without this define as it won't be default any longer in
298 2.6 release.
299
300 NB: if you want to build your program with different major versions
301 of wxWindows you will probably find the wxCHECK_VERSION() macro
302 (see the documentation) useful.
303
304
305 wxBase:
306
307 ! wxArray<T>::Remove(size_t) has been removed to fix compilation problems
308 under 64 bit architectures, please replace it with RemoveAt() in your
309 code.
310
311 ! wxArray<T> macros have been changed to fix runtime problems under 64 bit
312 architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
313 used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
314 arrays containing non-pointers.
315
316 - wxObject::CopyObject() and Clone() methods were removed because they
317 simply don't make sense for all objects
318
319 - wxEvent now has a pure virtual Clone() method which must be implemented
320 by all derived classes, if you have user-defined event classes please
321 add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
322
323 - small change to wxStopWatch::Pause() semantics, please see the documentation
324
325 - unlikely but possible incompatibility: the definition of TRUE has changed
326 from "1" to "(bool)1" (and the same thing for FALSE), so the code which
327 could be erroneously compiled previously such as doing "return FALSE" from
328 a function returning a pointer would stop compiling now (but this change
329 is not supposed to have any effects on valid code)
330
331 - another minor change: wxApp::OnAssert() has a new "cond" argument, you
332 must modify YourApp::OnAssert() signature if you were using it to override
333 the default assert handling.
334
335 All (GUI):
336
337 ! the event type constants are not constants any more but are dynamically
338 allocated during run-time which means that they can't be used as case labels
339 in the switch()es, you must rewrite them to use if()s instead
340
341 You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
342 but this is strongly discouraged, please consider changing your code
343 instead!
344
345 ! wxDialog does not derive from wxPanel any longer - if you were using it in
346 your code, please update it. The quick fix for the most cases is to replace
347 the occurrences of wxPanel with wxWindow.
348
349 ! if you handle (and don't skip) EVT_KEY_DOWN, the EVT_CHAR event is not
350 generated at all, so you must call event.Skip() in your OnKeyDown() if
351 you want to get OnChar() as well
352
353 - in general, the key events sent for the various non ASCII key combinations
354 have been changed to make them consistent over all supported platforms,
355 please see the wxKeyEvent documentation for details
356
357 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
358 have changed (to fix some unfortunate clashes), please check your code to
359 ensure that no tests for wxYES or wxNO are broken: for example, the following
360 will *NOT* work any longer:
361
362 if ( flags & wxYES_NO )
363 ... do something ...
364 if ( flags & wxYES )
365 ... do something else ...
366
367 - static wxWizard::Create() doesn't exist any more, the wizards are created
368 in the same way as all the other wxWindow objects, i.e. by directly using
369 the ctor
370
371 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
372
373 - wxGridCellAttrProvider class API changed, you will need to update your code
374 if you derived any classes from it
375
376 - wxImage::ComputeHistogram()'s signature changed to
377 unsigned long ComputeHistogram(wxImageHistogram&) const
378
379 - wxEvtHandler cannot be copied/assigned any longer - this never worked but
380 now it results in compile-time error instead of run-time crashes
381
382 - WXK_NUMLOCK and WXK_SCROLL keys no longer result in EVT_CHAR() events,
383 they only generate EVT_KEY_DOWN/UP() ones
384
385 - the dialogs use wxApp::GetTopWindow() as the parent implicitly if the
386 parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this
387 from happening
388
389 - several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode:
390 for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
391 and GetCount() instead of Number() in many classes
392
393 - wxCmdLineParser does not use wxLog to output messages anymore.
394 to obtain the previous behaviour, add
395 wxMessageOutput::Set(new wxMessageOutputLog); to your program
396 (you will need to #include <wx/msgout.h>)
397
398 wxMSW:
399
400 ! build system changed: setup.h is not a static file in include/wx any more
401 but is created as part of the build process under lib/<toolkit>/wx
402 where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
403 the include path in your make/project files appropriately. Furthermore,
404 xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
405 class. You'll need to remove all references to xpm.lib from your
406 make/project files. Finally, the library names have changed as well and now
407 use the following consistent naming convention: wxmsw[ver][u][d].(lib|dll)
408 where 'u' appears for Unicode version, 'd' -- for the debug one and version
409 is only present for the DLLs builds.
410
411 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
412 style to avoid it
413
414 - all overloads of wxDC::SetClippingRegion() combine the given region with the
415 previously selected one instead of replacing it
416
417 - wxGetHomeDir() uses HOME environment variable and if it is set will not
418 return the programs directory any longer but its value (this function has
419 never been meant to return the programs directory anyhow)
420
421 - wxHTML apps don't need to include wx/html/msw/wxhtml.rc in resources file
422 anymore. The file was removed from wxMSW
423
424
425 Unix ports:
426
427 ! You should use `wx-config --cxxflags` in your makefiles instead of
428 `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
429 and the compiler flags for C++ files only, CFLAGS should still be used
430 to compile pure C files.
431
432
433 wxThread and related classes:
434
435 - The thread-related classes have been heavily changed since 2.2.x versions
436 as the old code had many serious problems. This could have resulted in
437 semantical changes other than those mentioned here, please review use of
438 wxThread, wxMutex and wxCondition classes in your code.
439
440 ! wxCondition now *must* be used with a mutex, please read the (updated) class
441 documentation for details and revise your code accordingly: this change was
442 unfortunately needed as it was impossible to ensure the correct behaviour
443 (i.e. absense of race conditions) using the old API.
444
445 - wxMutex is not recursive any more in POSIX implementation (it hasn't been
446 recursive in 2.2.x but was in 2.3.1 and 2.3.2), please refer to the class
447 documentation for the discussion of the recursive mutexes.
448
449 - wxMutex::IsLocked() doesn't exist any more and should have never existed:
450 this is was unique example of a thread-unsafe-by-design method.
451
452
453 OTHER CHANGES
454 =============
455
456 2.4.0
457 -----
458
459 wxMSW:
460
461 - fixed loss of client data in wxChoice::SetString()
462
463 2.3.4
464 -----
465
466 All:
467
468 - added (partial) Indonesian translations (Bambang Purnomosidi D. P.)
469 - added wxSizer::Show()/Hide() (Carl Godkin)
470 - fixed bugs in wxDateTime::SetToWeekDay()/GetWeek()
471
472 Unix (Base/GUI):
473
474 - minor OpenBSD compilation/linking fixes, now builds OOB under OpenBSD 3.1
475 - don't include -I/usr/include nor -I/usr/local/include in wx-config output
476 - shared library symbols are now versioned on platforms that support it (Linux)
477
478 wxGTK:
479 - Further work for GTK 2.0 and Unicode support.
480 - Addition of native frame site grip.
481
482 wxX11:
483 - Unicode support through Pango library.
484
485 wxMSW:
486
487 - fixed crashes in wxListCtrl under XP
488 - added context menu for rich edit wxTextCtrl
489
490 wxHTML:
491
492 - fixed wxHTML to work in Unicode build
493
494 2.3.3
495 -----
496
497 wxBase:
498
499 - building wxBase with Borland C++ is now supported (Michael Fieldings)
500 - wxSemaphore class added, many fixed to wxCondition and wxThread (K.S. Sreeram)
501 - fixes to the command line parsing error and usage messages
502 - modified wxFileName::CreateTempFileName() to open the file atomically
503 (if possible) and, especially, not to leak the file descriptors under Unix
504 - memory leak in wxHTTP fixed (Dimitri Schoolwerth)
505 - fixes to AM_PATH_WXCONFIG autoconf macro
506 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
507 after (non standard) STL hash_map
508 - wxLocale now works in Unicode mode
509 - wxLocale can now load message catalogs in arbitrary encoding
510 - added wxShutdown() function (Marco Cavallini)
511 - added wxEXPLICIT macro
512 - IPC classes improved and memory leaks fixed (Michael Fielding).
513 Global buffer removed, duplication in docs removed
514 - debug new/free implementations made thread-safe
515
516 Unix (Base/GUI):
517
518 - wxWindows may be built using BSD and Solaris (and possibly other) make
519 programs and not only GNU make
520 - wxTCP-based IPC classes now support communicating over Unix domain sockets
521 - wxWindows may be built as a dynamic shared library under Darwin / Mac OS X
522 lazy linking issues have been solved by linking a single module (.o) into
523 the shared library (two step link using distrib/mac/shared-ld-sh)
524 - fixed thread priority setting under Linux
525
526 All (GUI):
527
528 - it is now possible to set the icons of different sizes for frames (e.g. a
529 small and big ones) using the new wxIconBundle class
530 - implemented radio menu items and radio toolbar buttons
531 - added possibility to show text in the toolbar buttons
532 - added wxArtProvider class that can be used to customize the look of standard
533 wxWindows dialogs
534 - significantly improved native font support
535 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
536 wxHashTable
537 - added IFF image handler
538 - fixed using custom renderers in wxGrid which was broken in 2.3.2
539 - support for multiple images in one file added to wxImage
540 (TIFF, GIF and ICO formats)
541 - support for CUR and ANI files in wxImage added (Chris Elliott)
542 - wxTextCtrl::GetRange() added
543 - added wxGetFontFromUser() convenience function
544 - added EVT_MENU_OPEN and EVT_MENU_CLOSE events
545 - added Hungarian translations (Janos Vegh)
546 - added wxImage::SaveFile(filename) method (Chris Elliott)
547 - added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
548 for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
549 - added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
550 - added wxTextCtrl::EmulateKeyPress()
551 - Added wxMouseCaptureChangedEvent
552 - Added custom character filtering to wxTextValidator
553 - wxTreeCtrl now supports incremental keyboard search
554 - wxMessageOutput class added
555 - wxHelpProvider::RemoveHelp added and called from ~wxWindowBase
556 so that erroneous help strings are no longer found as the hash
557 table fills up
558 - updated libpng from 1.0.3 to 1.2.4
559 - Added wxView::OnClosingDocument so the application can do cleanup.
560 - generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
561 renamed to wxGenericImageList, so they can be used on wxMSW
562 (Rene Rivera).
563 - Added wxTreeEvent::IsEditCancelled so the application can tell
564 whether a label edit was cancelled.
565 - added static wxFontMapper::Get() accessor
566
567 wxMSW:
568
569 - small appearance fixes for native look under Windows XP
570 - fixed the bug related to the redrawing on resize introduced in 2.3.2
571 - fixed multiple bugs in wxExecute() with IO redirection
572 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
573 - huge (40*) speed up in wxMask::Create()
574 - changing wxWindows styles also changes the underlying Windows window style
575 - wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
576 - fixed flicker in wxTreeCtrl::SetItemXXX()
577 - fixed redraw problems in dynamically resized wxStaticText
578 - improvements to wxWindows applications behaviour when the system colours
579 are changed
580 - choose implicit parent for the dialog boxes better
581 - fixed wxProgressDialog for ranges > 65535
582 - wxSpinButton and wxSpinCtrl now support full 32 bit range (if the version
583 of comctl32.dll installed on the system supports it)
584 - wxFontEnumerator now returns all fonts, not only TrueType ones
585 - bugs in handling wxFrame styles (border/caption related) fixed
586 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
587 recursion any more
588 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
589 - the separators are not seen behind the controls added to the toolbar any more
590 - wxLB_SORT style can be used with wxCheckListBox
591 - wxWindowDC and wxClientDC::GetSize() works correctly now
592 - Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can be used in FL
593 - Multiline labels in buttons are now supoprted (simply use "\n" in the label)
594 - Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it
595 has the capture before release it.
596 - fixed bugs in multiple selection wxCheckListBox
597 - default button handling is now closer to expected
598 - setting tooltips for wxSlider now works
599 - disabling a parent window also disables all of its children (as in wxGTK)
600 - multiple events avoided in wxComboBox
601 - tooltip asserts avoided for read-only wxComboBox
602 - fixed a race condition during a thread exit and a join
603 - fixed a condition where a thread can hang during message/event processing
604 - increased space between wxRadioBox label and first radio button
605 - don't fail to register remaining window classes if one fails to register
606 - wxFontDialog effects only turned on if a valid colour was
607 provided in wxFontData
608 - Added wxTE_LEFT, wxTE_CENTRE and wxTE_RIGHT flags for text control alignment.
609 - Bitmap printing uses 24 bits now, not 8.
610
611 wxGTK:
612
613 - wxDirDialog now presents the file system in standard Unix way
614 - wxButton now honours wxBU_EXACTFIT
615 - wxStaticBox now honours wxALIGN_XXX styles
616 - added support for non alphanumeric simple character accelerators ('-', '=')
617 - new behaviour for wxWindow::Refresh() as it now produces a delayed refresh.
618 Call the new wxWindow::Update() to force an immediate update
619 - support for more SGI hardware (12-bit mode among others)
620 - fixed wxDC::Blit() to honour source DC's logical coordinates
621 - implemented wxIdleEvent::RequestMore() for simple background tasks
622 - implemented wxChoice::Delete()
623 - fixed bad memory leak in wxFileDialog (Chris Elliott)
624 - made internal GC pool dynamically growable
625 - added GTK+ 2 and Unicode support
626
627 wxMotif:
628
629 - improved colour settings return values (Ian Brown)
630 - improved border style handling for wxStaticText (Ian Brown)
631 - improved toolbar control alignment
632 - implemented wxSpinButton
633 - implemented wxCheckListBox
634 - fixed wxSpinCtrl and wxStaticLine when used with sizers
635 - wxStaticBitmap now shows transparent icons correctly
636
637 wxX11:
638
639 - added generic MDI implementation (Hans Van Leemputten)
640 - first cut at wxSocket support (not yet working)
641
642 wxMac:
643
644 - Many improvements
645
646 wxOS2:
647
648 - First alpha-quality release
649
650 wxHTML:
651
652 - fixed wxHtmlHelpController's cache files handling on big endian machines
653 - added blocking and redirecting capabilities to wxHtmlWindow via
654 wxHtmlWindow::OnOpeningURL()
655 - fixed alignment handling in tables
656 - fixed <font face="..."> handling to be case insensitive
657
658 2.3.2
659 -----
660
661 New port: wxUniv for Win32/GTK+ is now included in the distribution.
662
663 wxBase:
664
665 - wxRegEx class added
666 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
667 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
668 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
669 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
670 capabilities at runtime instead of in the configure script.
671
672 All (GUI):
673
674 - support for virtual list control added
675 - column images in report mode of the list control
676 - wxFindReplaceDialog added (based on work of Markus Greither)
677 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
678 - polygon support in wxRegion (Klaas Holwerda)
679 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
680 - fixed bug with using wxExecute() to capture huge amounts of output
681 - new wxCalendarCtrl styles added (Søren Erland Vestø)
682 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
683 - wxDirSelector() added (Paul A. Thiessen)
684 - wxGrid cell editing veto support (Roger Gammans)
685 - wxListCtrl ITEM_FOCUSED event added
686 - support for ICO files in wxImage added (Chris Elliott)
687 - improvements to wxDragImage (Chuck Messenger)
688
689 wxMSW:
690
691 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
692 - new library naming convention under VC++ -- please change your application
693 project files
694
695 wxGTK:
696
697 - fixed popup menu positioning bug
698 - fixed the edit function for wxListCtrl (Chuck Messenger)
699 - fixed the key-hitting events for wxListCtrl and wxTreeCtrl, so they
700 correctly return the key which was pressed (Chuck Messenger)
701
702 wxMac:
703
704 - support for configuration and build under Mac OS X using the Apple Developer
705 Tools
706
707 wxHTML:
708
709 - new HTML parser with correct parsing of character entities and fixes
710 to tags parsing
711 - added support for animated GIFs
712
713 2.3.1
714 -----
715
716 wxBase:
717
718 - Fixes for gcc 3.0
719 - Fixed new charset detection code
720 - ODBC Informix fixes (submitted by Roger Gammans)
721 - Added ODBC date support to wxVariant
722 - Added wxDir::Traverse
723 - Added wxSingleInstanceChecker class
724 - Removed redundant wxDebugContext functions using C++ streams,
725 so now standard stream usage should be unnecessary
726
727 All (GUI):
728
729 - Added wxDbGrid class for displaying ODBC tables
730 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
731 user code can get access to the edit control when it is created, (to
732 push on a custom event handler for example)
733 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
734 GetDefaultStyle methods to wxTextCtrl
735 - Added wxSingleInstanceChecker
736 - Improvements to Tex2RTF
737 - Added Paul and Roger Gammans' grid controls
738 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
739 first-time saved
740 - Fixed memory leak in textcmn.cpp
741 - Various wxXML enhancements
742 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
743 - Fixed memory leak in DoPrint, htmprint.cpp
744 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
745 instead of GetId()
746 - Added wxDbGrid combining wxODBC classes with wxGrid
747 - Added more makefiles and project files for contrib hierarchy
748
749 wxMSW:
750
751 - Fixed wxApp::ProcessMessage so controls don't lose their
752 accelerators when the accelerators are redefined elsewhere
753 - Accelerators consisting of simple keystrokes (without control,
754 alt or shift) now work
755 - Compile fixes for Watcom C++ added
756 - Compile fixes for Cygwin 1.0 added
757 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
758 - Replaced wxYield() call in PopupMenu() by a much safer
759 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
760 - Enter processing in wxSpinCtrl fixed
761 - Fixed bug in determining the best listbox size
762 - Fix for wxFrame's last focus bug
763 - We now send iconize events
764 - Fixed wxFrame::SetClientSize() with toolbar bug
765 - Added mousewheel processing
766 - Added wxSystemSettings::Get/SetOption so we can configure
767 wxWindows at run time; used this to implement no-maskblt option
768 in wxDC
769 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
770 child frame styles are honoured
771
772 wxGTK:
773
774 - Fixed slider rounding bug
775 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
776 - We now send iconize events
777 - Fix for discrepancies between wxNotebookEvent and wxNotebook
778 GetSelection() results
779
780 2.3.0
781 -----
782
783 wxBase:
784
785 - fixed problem with wxURL when using static version of the library
786 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
787 - wxMimeTypesManager now can create file associations too (Chris Elliott)
788 - wxCopyFile() respects the file permissions (Roland Scholz)
789 - wxFTP::GetFileSize() added (Søren Erland Vestø)
790 - wxDateTime::IsSameDate() bug fixed
791 - wxTimeSpan::Format() now behaves more as expected, see docs
792 - wxLocale now provides much more convenient API for setting language and
793 detecting current system language. New API is more abstracted and truly
794 cross-platform, independent of underlying C runtime library.
795
796 All (GUI):
797
798 - new wxToggleButton class (John Norris, Axel Schlueter)
799 - wxCalendarCtrl not highlighting the date with time part bug fixed
800 - wxADJUST_MINSIZE sizer flag added
801 - FindOrCreateBrush/Pen() bug fix for invalid colour values
802 - new wxXPMHandler for reading and writing XPM images
803 - added new (now recommended) API for conversion between wxImage and wxBitmap
804 (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
805 wxImage methods and ctor)
806 - ODBC classes now support DB2, Interbase, and Pervasive SQL
807 - ODBC documentation complete!!
808 - ODBC classes have much Unicode support added, but not complete
809 - ODBC experimental BLOB support added, but not completely tested
810 - ODBC NULL column support completed (Roger/Paul Gammans)
811 - ODBC All "char *" and char arrays removed and replaced with wxString use
812
813 wxMSW:
814
815 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
816 - fixed bug in MDI children flags (mis)handling
817 - it is possible to compile wxCHMHelpController with compilers
818 other than Visual C++ now and hhctrl.ocx is loaded at runtime
819
820 wxGTK:
821
822 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
823
824 wxHTML:
825
826 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
827 - visual enhancements to contents panel of wxHtmlHelpController
828
829 2.2.0
830 -----
831
832 wxBase:
833
834 - Fixed bug with directories with trailing (back)slashes in wxPathExists
835 - wxString: added wxArrayString::operator==() and !=()
836 - Fixes for wxCmdLineParser
837 - Added wxGetLocalTimeMillis
838 - Completed Czech translations
839 - Some stream corrections
840 - added missing consts to wxPoint operators
841 - wxDateTime ParseFormat fixes
842 - wxFile::Open(write_append) will create file if it doesn't exist
843 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
844
845 All (GUI):
846
847 - wxGenericDragImage now allows virtual image drawing, and
848 flicker-free dragging is now possible
849 - Added wxPrinter::GetLastError
850 - Fixed wxLogGui reentrancy problem
851 - Paper names now translated
852 - wxGrid fixes
853 - Generic validator now caters for more cases (integers in
854 wxTextCtrl, strings in wxChoice, wxComboBox)
855 - Fixed crash when docview On... functions return FALSE. Show
856 error message when an non-existent filename is typed into the Open
857 File dialog.
858 - Corrected Baltic font encoding handling
859 - wxImage: enhanced TIFF code, added new platform-independent BMP
860 writing code
861 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
862 - Fixed wxPropertyForm crashes in sample
863 - wxWizard now calls TransferDataFromWindow() before calling
864 wxWizardPage::GetNext() fixing an obvious bug
865
866 wxMSW:
867
868 - wxWindow::GetCharWidth/Height now calculated accurately.
869 This will affect all .wxr dialog resources, so for
870 backward compatibility, please set
871 wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
872 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
873 - wxTextCtrl: implemented setting colours for rich edit controls
874 - wxColour now accepts both grey and gray
875 - BC++ DLL compilation fixed
876 - Watcom C++ makefiles improved for JPEG and TIFF compilation
877 - Fixed submenu accelerator bug
878 - Fixed dialog focus bug (crash if the previous window to have
879 the focus was destroyed before the dialog closed)
880 - Too-small default wxTextCtrl height fixed
881 - fixed "missing" initial resize of wxMDIChildFrame
882 - wxFrame restores focus better
883 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
884 frames and dialogs, interferes with other window styles otherwise
885 (sometimes you'd get a thick frame in a subwindow)
886 - wxTextCtrl insertion point set to the beginning of the control by SetValue
887 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
888 - wxFileDialog: adjusts struct size if there's an error (struct
889 sizes can be different on different versions of Windows)
890 - wxImageList::GetSize() documented and added to wxMSW
891 - fixed default dialog style to make them non resizeable again
892 - fixed wxFrame::IsShown() which always returned TRUE before
893
894 wxGTK:
895
896 - Please see docs/gtk/changes.txt.
897
898 wxMotif:
899
900 - Small compilation fixes
901
902 Documentation:
903
904 - wxCaret documented
905
906 2.1.16
907 ------
908
909 wxBase:
910
911 All (GUI):
912
913 wxMSW:
914
915 - Various bug fixes
916 - Added wxCHMHelpController, for invoking MS HTML Help
917 files. This works under VC++ only
918 - Modal dialog handling improved
919 - Printer dialog now modal
920
921 wxGTK:
922
923 - Various bug fixes
924
925 wxMotif:
926
927 - Various bug fixes
928
929 2.1.15
930 ------
931
932 Documentation:
933
934 - Added docs/tech for technical notes
935
936 File hierarchy:
937
938 - Started new contrib hierarchy that mirrors
939 the main lib structure; moved OGL and MMedia into it
940
941 wxBase:
942
943 - wxSocket support
944 - wxDateTime replaces and extends old wxDate and wxTime classes (still
945 available but strongly deprecated) with many new features
946 - wxLongLong class provides support for (signed) 64 bit integers
947 - wxCmdLineParser class for parsing the command line (supporting short and
948 long options, switches and parameters of different types)
949 - it is now possible to build wxBase under Win32 (using VC++ only so far)
950 and BeOS (without thread support yet)
951 - wxThread class modified to support both detached and joinable threads, also
952 added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
953 only so far)
954 - wxDir class for enumerating files in a directory
955 - wxLog functions are now (more) MT-safe
956 - wxStopWatch class, timer functions have more chances to return correct
957 results for your platform (use ANSI functions where available)
958 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
959 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
960 is available)
961 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
962
963 all (GUI):
964
965 - Added wxImage::Rotate.
966 - new wxCalendarCtrl class for picking a date interactively
967 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu management
968 - wxToolBar supports arbitrary controls (not only buttons) and can be
969 dynamically changed (Delete/Insert functions)
970 - vertical toolbars supported by MSW and GTK native wxToolBar classes
971 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
972 - "file open" dialog allows selecting multiple files at once (contributed by
973 John Norris)
974 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
975 MIME types if available (Unix only)
976 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
977 - TIFF support added (libtiff required and included in the distribution)
978 - PCX files can now be written (256 and 24 bits)
979 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
980 - wxScrolledWindow now has keyboard interface
981 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
982 - added wxEncodingConverter and improved wxFontMapper
983 for dealing with conversions between different encodings,
984 charsets support in wxLocale and wxHTML
985 - wxDragImage class added
986 - samples/help improved to show standard and advanced HTML help
987 controllers, as well as native help
988 - moved wxTreeLayout class to main lib
989
990 wxMSW:
991
992 - wxFrame::MakeFullScreen added.
993 - support for enhanced metafiles added, support for copying/pasting metafiles
994 (WMF and enhanced ones) fixed/added.
995 - implemented setting colours for push buttons
996 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
997 positioned along the top of the screen and not only at the bottom
998 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
999 - loading/saving big (> 32K) files in wxTextCtrl works
1000 - tooltips work with wxRadioBox
1001 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
1002 Unix ports
1003 - returning FALSE from OnPrintPage() aborts printing
1004 - VC++ makefiles and project files made (mostly) consistent
1005 - wxSetCursorEvent added
1006
1007 wxGTK:
1008
1009 - wxFontMapper endless recursion bug (on some systems) fixed
1010 - wxGTK synthesizes wxActivateEvents
1011 - UpdateUI handlers may be used with wxTextCtrl
1012
1013 wxMotif:
1014
1015 - wxMenu::Enable works
1016 - wxToolBar bugs fixed
1017 - OGL samples made to work again
1018
1019 wxHTML:
1020
1021 - almost complete rewrite of wxHtmlHelpController,
1022 including faster search, bookmarks, printing, setup dialog
1023 and cross-platform binary compatible .cached files for faster
1024 loading of large helpbooks, case insensitive search
1025 split into 3 parts: wxHtmlHelpData, Frame and Controller
1026 - added support for charsets and <meta> tag
1027 - added support for font faces and justified paragraphs,
1028 taken some steps to prepare wxHTML for frames
1029 - added dynamic pushing/popping of wxHtmlParser tag handlers
1030 - improved HTML printing
1031 - added extensive table of HTML characters substitutions (&nbsp; etc.)
1032 - fixed wxHtmlWindow flickering, several minor bugfixes
1033 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
1034 fixed handling of relative and absolute font sizes in <font size>
1035
1036
1037 NOTE: for changes after wxWindows 2.1.0 b4, please see the CVS
1038 change log.
1039
1040 2.1.0, b4, May 9th 1999
1041 -----------------------
1042
1043 wxGTK:
1044
1045 - JPEG support added.
1046 - Many fixes and changes not thought worth mentioning in this file :-)
1047
1048 wxMSW:
1049
1050 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
1051 SetTabSize added.
1052 - JPEG support added.
1053 - Fixes for Cygwin compilation.
1054 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
1055 - Many fixes people didn't tell this file about.
1056
1057 wxMotif:
1058
1059
1060 General:
1061
1062 - Some changes for Unicode support, including wxchar.h/cpp.
1063
1064
1065 2.0.1 (release), March 1st 1999
1066 -------------------------------
1067
1068 wxGTK:
1069
1070 - wxGLCanvas fixes.
1071 - Slider/spinbutton fixes.
1072
1073 wxMSW:
1074
1075 - Fixed problems with <return> in dialogs/panels.
1076 - Fixed window cursor setting.
1077 - Fixed toolbar sizing and edge-clipping problems.
1078 - Some makefile fixes.
1079
1080 wxMotif:
1081
1082 - None.
1083
1084 General:
1085
1086 - Added wxUSE_SOCKETS.
1087 - More topic overviews.
1088 - Put wxPrintPaperType, wxPrintPaperDatabase into
1089 prntbase.h/cpp for use in non-PostScript situations
1090 (e.g. Win16 wxPageSetupDialog).
1091
1092
1093 Beta 5, February 18th 1999
1094 --------------------------
1095
1096 wxGTK:
1097
1098 - wxExecute improved.
1099
1100 wxMSW:
1101
1102 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
1103 expected).
1104 - Changed VC++ makefiles (.vc) so that it's possible to have
1105 debug/release/DLL versions of the library available simultaneously,
1106 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
1107 - Added BC++ 5 IDE files and instructions.
1108 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
1109 - Fixed focus-related crash.
1110
1111 wxMotif:
1112
1113 - Cured asynchronous wxExecute crash.
1114 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
1115
1116 General:
1117
1118 - wxLocale documented.
1119 - Added include filenames to class reference.
1120 - wxHelpController API changed: SetBrowser becomes SetViewer,
1121 DisplaySection works for WinHelp, help sample compiles under Windows
1122 (though doesn't display help yet).
1123
1124 Beta 4, February 12th 1999
1125 --------------------------
1126
1127 wxGTK:
1128
1129 - Miscellaneous fixes.
1130
1131 wxMSW:
1132
1133 - Makefiles for more compilers and samples; Cygwin makefiles
1134 rationalised.
1135 - Added VC++ project file for compiling wxWindows as DLL.
1136
1137 wxMotif:
1138
1139 - Added OnEraseBackground invocation.
1140 - Added wxRETAINED implementation for wxScrolledWindow.
1141 - Cured scrolling display problem by adding XmUpdateDisplay.
1142 - Tried to make lex-ing in the makefile more generic (command line
1143 syntax should apply to both lex and flex).
1144 - Changed file selector colours for consistency (except for buttons:
1145 crashes for some reason).
1146 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
1147 of malloc, which causes memory problems).
1148
1149 General:
1150
1151 - Further doc improvements.
1152 - wxGenericValidator added.
1153 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
1154 automatically.
1155
1156 Beta 3, January 31st 1999
1157 -------------------------
1158
1159 wxGTK:
1160
1161 - wxClipboard/DnD API changes (still in progress).
1162 - wxToolTip class added.
1163 - Miscellaneous fixes.
1164
1165 wxMSW:
1166
1167 - wxRegConfig DeleteAll bug fixed.
1168 - Makefiles for more compilers.
1169 - TWIN32 support added.
1170 - Renamed VC++ makefiles from .nt to .vc, and
1171 factored out program/library settings.
1172 - Fixed wxIniConfig bug.
1173
1174 wxMotif:
1175
1176 - A few more colour fixes.
1177 - wxGLCanvas and OpenGL samples working.
1178 - Some compiler warnings fixed.
1179 - wxChoice crash fix.
1180 - Dialog Editor starting to work on Motif.
1181
1182 General:
1183
1184 - wxBusyCursor class added.
1185 - Added samples/dde.
1186 - More doc improvements, incl. expanding docs/html/index.htm.
1187
1188 Beta 2, January 1999
1189 --------------------
1190
1191 wxGTK:
1192
1193 wxMSW:
1194
1195 - 16-bit BC++ compilation/linking works albeit without the resource system.
1196
1197 wxMotif:
1198
1199 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
1200 the right place.
1201 - Cured some widget table clashes.
1202 - Added thread support (Robert).
1203 - wxPoem sample now works.
1204
1205 General:
1206
1207 - Rearranged documentation a bit.
1208 - Sash window uses area of first frame/dialog to paint over when drawing
1209 the dragged sash, not just the sash window itself (it clipped to the right
1210 or below).
1211 - Made resource sample use the correct Cancel button id.
1212 - Moved wxProp to main library (generic directory), created proplist
1213 sample.
1214 - Added bombs and fractal samples.
1215
1216 Beta 1, December 24th 1998
1217 --------------------------
1218
1219 wxGTK:
1220
1221 - Various
1222
1223 wxMSW, wxMotif: not in sync with this release.
1224
1225
1226 Alpha 18, December 29th 1998
1227 ----------------------------
1228
1229 wxMSW:
1230
1231 - Win16 support working again (VC++ 1.5)
1232 - Win16 now uses generic wxNotebook, wxListCtrl,
1233 wxTreeCtrl -- more or less working now, although
1234 a little work on wxNotebook is still needed.
1235 Under 16-bit Windows, get assertion when you click
1236 on a tab.
1237 - Wrote 16-bit BC++ makefiles: samples don't yet link.
1238 - Added CodeWarrior support to distribution courtesy
1239 of Stefan Csomor.
1240
1241 wxMotif:
1242
1243 - Cured scrolling problem: scrollbars now show/hide themselves
1244 without (permanently) resizing the window.
1245 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
1246 that disabled scrollbar paging.
1247 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
1248 colours correctly.
1249 - Removed major bug whereby dialogs were unmanaged automatically
1250 when any button was pressed.
1251 - Fixed colours of wxWindow scrollbars, made list and text controls
1252 have a white background.
1253 - Fixed dialog colour setting.
1254 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
1255 they have sensible colours by default.
1256 - Fixed a bug in wxStaticBox.
1257 - Cured wxTreeCtrl bug: now works pretty well!
1258 - Debugged DrawEllipticArc (a ! in the wrong place).
1259 - Added SetClippingRegion( const wxRegion& region ).
1260 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
1261
1262 Alpha 17, November 22nd 1998
1263 ----------------------------
1264
1265 wxMSW:
1266
1267 - More documentation updates, especially for
1268 wxLayoutWindow classes and debugging facilities.
1269 - Changed wxDebugContext to use wxDebugLog instead
1270 of wxTrace.
1271 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
1272 However, DLL support may be broken for BC++ since
1273 VC++ 6 required changing of WXDLLEXPORT keyword
1274 position.
1275 - Numerous miscellaneous changes.
1276
1277 wxMotif:
1278
1279 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
1280 were too buggy (probably not design for dynamic addition/removal of
1281 child frames).
1282 - Some improvements to the wxNotebook implementation.
1283 - wxToolBar now uses a bulletin board instead of a form, in an attempt
1284 to make it possible to add ordinary wxControls to a toolbar.
1285 - Cured problem with not being able to use global memory operators,
1286 by defining two more global operators, so that the delete will match
1287 the debugging implementation.
1288 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
1289 global memory operators (usually OK) and #defining new to be
1290 WXDEBUG_NEW (sometimes it might not be OK).
1291 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
1292 - Added a parent-existence check to popup menu code to make it not crash.
1293 - Added some optimization in wxWindow::SetSize to produce less flicker.
1294 It remains to be seen whether this produces any resize bugs.
1295
1296 It's a long time since I updated this file. Previously done:
1297
1298 - wxFrame, wxDialog done.
1299 - wxScrolledWindow done (but backing pixmap not used at present).
1300 - wxBitmap done though could be tidied it up at some point.
1301 - Most basic controls are there, if not rigorously tested.
1302 - Some MDI support (menus appear on child frames at present).
1303 - wxNotebook almost done.
1304 - wxToolBar done (horizontal only, which would be easy to extend
1305 to vertical toolbars).
1306
1307 More recently:
1308
1309 - Colour and font changing done (question mark over what happens
1310 to scrollbars).
1311 - Accelerators done (for menu items and buttons). Also event loop
1312 tidied up in wxApp so that events are filtered through ProcessXEvent.
1313 - wxWindow::GetUpdateRegion should now work.
1314
1315 Alpha 16, September 8th 1998
1316 ----------------------------
1317
1318 wxMSW:
1319
1320 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
1321 sample.
1322 - Guilhem's socket classes added, plus wxsocket sample.
1323 - A few more makefiles added.
1324 - GnuWin32/BC++ compatibility mods.
1325 - Further doc updates.
1326 - wxProp updates for correct working with wxGTK.
1327
1328 wxMotif:
1329
1330 - First start at Motif port.
1331 - Made makefiles for wxMotif source directory and minimal sample.
1332 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
1333 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
1334 wxMenu, wxMenuItem, wxMenuBar
1335
1336 Alpha 15, August 31st 1998
1337 --------------------------
1338
1339 wxMSW:
1340
1341 - wxBitmap debugged.
1342 - wxDC::GetDepth added.
1343 - Contribution added whereby wxBitmap will be
1344 converted to DC depth if they don't match.
1345 - wxConfig API improved, documentation updated.
1346 - Printing classes name conventions cleaned up.
1347 - wxUpdateUIEvent now derives from wxCommandEvent
1348 so event can travel up the window hierarchy.
1349
1350 Alpha 14, July 31st 1998
1351 ------------------------
1352
1353 wxMSW:
1354
1355 - Toolbar API has been simplified, and now
1356 wxFrame::GetClientArea returns the available client
1357 area when toolbar, status bar etc. have been accounted for.
1358 wxFrame::CreateToolBar added in line with CreateStatusBar.
1359 - Documentation updates, incl. for wxToolBar.
1360 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
1361 - Various additions from other folk, e.g. streams, wxConfig
1362 changes, wxNotebook.
1363 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
1364
1365 Alpha 13, July 8th 1998
1366 -----------------------
1367
1368 wxMSW:
1369
1370 - Implemented wxPoint as identical to POINT on Windows, and
1371 altered wxDC wxPoint functions to use wxPoint directly in
1372 Windows functions, for efficiency.
1373 - Cured wxASSERT bug in wxStatusBar95.
1374 - #ifdefed out some bits in oleutils.cpp for compilers that
1375 don't support it.
1376 - Added some operators to wxPoint, wxSize.
1377 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
1378
1379 Alpha 12, July 7th 1998
1380 -----------------------
1381
1382 wxMSW:
1383
1384 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
1385 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
1386
1387 Alpha 11, July 3rd 1998
1388 -----------------------
1389
1390 wxMSW:
1391
1392 - Added thread.h, thread.cpp.
1393 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
1394 wxMenuBar.
1395 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
1396 SetTextColor to SetTextColour, and added or made public several
1397 wxMenuItem accessors.
1398 - Added two overloads to wxRegion::Contains. Added
1399 wxRegion::IsEmpty for a more consistent naming convention.
1400 - Added Vadim's wxDataObject and wxDropSource.
1401 - ENTER/LEAVE events now work.
1402 - Cured wxMemoryDC bug where the DC wasn't being deleted.
1403 - Cured wxGauge SetSize major bugginess.
1404 - Cured problem where if a GDI object was created on the stack,
1405 then went out of scope, then another object was selected into
1406 the DC, GDI objects would leak. This is because the assignment
1407 to e.g. wxDC::m_pen would delete the GDI object without it first
1408 being selected out of the DC. Cured by selecting the old DC object
1409 first, then doing the assignment.
1410 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
1411 - Various other bug fixes and additions.
1412
1413 Generic:
1414
1415 - Major work on Dialog Editor (still plenty to go).
1416 - Expanded documentation a bit more.
1417
1418 Alpha 10, May 7th 1998
1419 ----------------------
1420
1421 wxMSW:
1422
1423 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
1424 and wxIcon functions so that you can specify what size of
1425 icon should be loaded. Probably will remain a Windows-specific thing.
1426 - wxStatusBar95 now works for MDI frames.
1427 - Toolbars in MDI frames now behave normally. They still
1428 require application-supplied positioning code though.
1429 - Changed installation instructions, makefiles and batch files
1430 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
1431 change to support Mingw32/EGCS. Bison now used by default.
1432
1433 Alpha 9, April 27th 1998
1434 ------------------------
1435
1436 wxMSW:
1437
1438 - Cured bug in wxStatusBar95 that caused a crash if multiple
1439 fields were used.
1440 - Added Gnu-Win32 b19/Mingw32 support by changing resource
1441 compilation and pragmas.
1442 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
1443 commands because VZ changed the id setting in wxMenu::MSWCommand.
1444
1445 Generic:
1446
1447 - Corrected some bugs, such as the wxModule compilation problem.
1448 - Added Gnu-Win32 b19/Mingw32 support by changing resource
1449 compilation and pragmas.
1450 - Changed SIZEOF to WXSIZEOF.
1451
1452 Alpha 8, April 17th 1998
1453 ------------------------
1454
1455 wxMSW:
1456
1457 - Added IsNull to wxGDIObject to check if the ref data is present or not.
1458 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
1459 some reason :-(
1460 - Added wxJoystick class and event handling, and simple demo.
1461 - Added simple wxWave class. Needs Stop() function.
1462 - Added wxModule (module.h/module.cpp) to allow definition
1463 of modules to be initialized and cleaned up on wxWindows
1464 startup/exit.
1465 - Start of Mingw32 compatibility (see minimal and dialogs samples
1466 makefile.m95 files, and install.txt).
1467 - Note: Windows printing has stopped working... will investigate.
1468 VADIM'S CHANGES:
1469 - Updated wxString: bug fixes, added wxArrayString, some
1470 compatibility functions.
1471 - Updated log.h/cpp, added wxApp::CreateLogTarget.
1472 - file.h: new wxTempFile class.
1473 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
1474 - statbr95: wxStatusBar95 control.
1475 - registry.h/cpp: wxRegKey class for Win95 registry.
1476 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
1477 - wxConfig and wxFileConfig classes.
1478
1479 Generic:
1480
1481 - Added src/other/png, src/other/zlib directories.
1482 - Added samples/png.
1483 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
1484 Porters, please check particularly your wxTreeCtrl and wxListCtrl
1485 header files.
1486 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
1487
1488 Alpha 7, March 30th 1998
1489 ------------------------
1490
1491 wxMSW:
1492
1493 - Added tab classes, tab sample.
1494 - Now can return FALSE from OnInit and windows will be
1495 cleaned up properly before exit.
1496 - Improved border handling so panels don't get borders
1497 automatically.
1498 - Debugged MDI activation from Window menu.
1499 - Changes to memory debug handling, including checking for
1500 memory leaks on application exit - but see issues.txt for
1501 unresolved issues.
1502 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
1503 to allow maintenance of an icon in the Windows 95 taskbar
1504 tray area.
1505 - Got MFC sample working (MFC and wxWindows in the same
1506 application), partly by tweaking ntwxwin.mak settings.
1507 - Got DLL compilation working again (VC++).
1508 - Changed wxProp/Dialog Editor filenames.
1509
1510 Generic:
1511
1512 - Added tab classes, tab sample.
1513 - Revised memory.cpp, memory.h slightly; memory.h now #defines
1514 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
1515 now checks for leaks on exit. Added memcheck sample.
1516 See src/msw/issues.txt for more details.
1517 - resource.h, resource.cpp changed to make wxDefaultResourceTable
1518 a pointer. Now initialize resource system with
1519 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
1520 allow better control of memory.
1521 - wxString now derives from wxObject, to enable memory leak
1522 checking.
1523 - Added some #include fixes in various files, plus changed
1524 float to long in wxToolBar files.
1525
1526 Alpha 6, March 10th 1998
1527 ------------------------
1528
1529 wxMSW:
1530
1531 - Found stack error bug - stopped unwanted OnIdle recursion.
1532 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
1533 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
1534 check if the number of top-level windows is zero before
1535 exiting. Also, wxApp::GetTopWindow will return either
1536 m_topWindow or the first member of wxTopLevelWindows, so you
1537 don't have to call wxApp::SetTopWindow.
1538 - Added dynarray.h/dynarray.cpp (from Vadim).
1539 - Added first cut at OLE drag and drop (from Vadim). dnd sample
1540 added. Drop target only at this stage. See src/msw/ole/*.cpp,
1541 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
1542 Doesn't work with GnuWin32 - no appropriate headers e.g. for
1543 IUnknown.
1544 Doesn't work with BC++ either - crashes on program startup.
1545 - Added Vadim's owner-draw modifications - will probably remain
1546 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
1547 - Added wxLB_OWNERDRAW for owner-draw listboxes.
1548 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
1549 Doesn't entirely work for WIN16.
1550 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
1551 can also be used as an argument to wxMenu::Append, not just for
1552 internal implementation.
1553 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
1554 in makeg95.env, together with mingw32.bat). However, resource
1555 binding is not working yet so most apps with dialogs crash.
1556
1557 Generic:
1558
1559 - Added Vadim's dynarray.h, dynarray.cpp.
1560 - Added Vadim's menuitem.cpp.
1561 - Added Windows-specific wxCheckListBox,
1562 owner-draw wxListBox, and drag-and-drop
1563 (see docs/msw/changes.txt).
1564
1565 Alpha 5, 14th February 1998
1566 --------------------------
1567
1568 wxMSW:
1569
1570 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1571 DISTRIBUTIONS. This change log will therefore now refer to
1572 the Windows-specific code only. See docs/changes.txt for generic
1573 changes.
1574 - Removed Windows-specific reference counting system (GDI
1575 resources were cleaned up in idle time) - minimal
1576 advantages now we have a wxWin reference counting system.
1577 - Added missing WXDLLEXPORT keywords so DLL compilation works
1578 again.
1579 - Removed most warnings for GnuWin32 compilation.
1580 - Added wxRegion/wxRegionIterator, but haven't yet used it in
1581 e.g. wxDC.
1582
1583 Generic:
1584
1585 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1586 DISTRIBUTIONS. This change log will therefore now refer to
1587 the generic code only. See docs/msw/changes.txt for Windows-specific
1588 changes.
1589 - Readmes, change logs and installation files now go in
1590 platform-specific directories under docs, e.g. docs/msw,
1591 docs/gtk.
1592 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
1593 created dynamically, not as a global object.
1594 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
1595 - Changed names of some include/wx/generic headers to be
1596 consistent and to conform to gcc pragma conventions. Also
1597 changed choicesg.cpp to choicdgg.cpp.
1598 - Added gcc pragmas.
1599 - Added gtk inclusion in include/wx headers.
1600 - Added consistent file headings to source and headers.
1601 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
1602 added a few references to wxTransString.
1603 - Added operator to wxTransString that converts automatically
1604 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
1605 - samples/internat now works (minimally).
1606 - Added wxMouseEvent::GetPosition and
1607 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
1608 - Made wxSize and wxRect contain longs not ints.
1609 - Cured some memory leaks (thanks Vadim).
1610 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
1611 will only keep processing OnIdle if it returns TRUE from
1612 MoreRequested.
1613
1614 Alpha 4, 31st January 1998
1615 --------------------------
1616
1617 All:
1618
1619 - Changed wxDC functions to take longs instead of floats. GetSize now takes
1620 integer pointers, plus a version that returns a wxSize.
1621 - const keyword added to various wxDC functions.
1622 - Under Windows, wxDC no longer has any knowledge of whether
1623 an associated window is scrolled or not. Instead, the device
1624 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
1625 - wxScrolledWindow applications can optionally override the virtual OnDraw
1626 function instead of using the OnPaint event handler. The wxDC passed to
1627 OnDraw will be translated by PrepareDC to reflect scrolling.
1628 When drawing outside of OnDraw, must call PrepareDC explicitly.
1629 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
1630 scrolling toolbars.
1631 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
1632 to help printing with multiple pages.
1633 - IPC classes given base classes (wxConnectionBase etc.) which
1634 define the API used by different implementations. DDE
1635 implementation updated to use these base classes.
1636 - wxHelpInstance now separated into wxHelpControllerBase (base
1637 for all implementations), wxWinHelpController (uses standard
1638 WinHelp), wxXLPHelpController (talks to wxHelp by DDE or
1639 TCP/IP). There will be others eventually, such as
1640 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
1641 - Added Vadim Zeitlin's wxString class plus
1642 internationalization code (gettext simulation, wxLocale, etc.).
1643 New files from Vadim:
1644 include\wx\string.h
1645 include\wx\debug.h
1646 include\wx\file.h
1647 include\wx\log.h
1648 include\wx\intl.h
1649 src\common\string.cpp
1650 src\common\log.cpp
1651 src\common\intl.cpp
1652 src\common\file.cpp
1653 No longer use GNU wxString files.
1654 - Split off file-related functions into include\wx\filefn.h and
1655 src\common\filefn.cpp.
1656 - Borland C++ support (WIN32) for main library and
1657 samples, using makefile.b32 files.
1658 - Preparation done for allowing BC++ to compile wxWin as a DLL,
1659 including changes to defs.h.
1660 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
1661 introduced.
1662 - Added wxShowEvent (generated when window is being shown or
1663 hidden).
1664 - Got minimal, docview, mdi samples working for 16-bit VC++ and
1665 cured 16-bit problem with wxTextCtrl (removed global memory
1666 trick).
1667 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
1668
1669 Alpha 3, September 1997
1670 -----------------------
1671
1672 All:
1673
1674 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
1675 - Instigated new file hierarchy, split files and classes up more logically.
1676 - PrologIO and some other utils now put into core library.
1677 - Revamped print/preview classes, added wxPageSetupDialog.
1678 - Started documentation.
1679
1680 Alpha 2, 30th April 1997
1681 ------------------------
1682
1683 All:
1684
1685 - EVT_... macros now have at least one argument, for conformance
1686 with MetroWerks compiler.
1687 - Added ids to .wxr file format.
1688 - Got Dialog Editor compiled and running again but need
1689 to extend functionality to be in line with new controls.
1690 Added dialoged\test app to allow dynamic loading of .wxr files
1691 for testing purposes.
1692 - Rewrote wxBitmap to allow installable file type
1693 handlers.
1694 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
1695 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
1696 fully).
1697 - Added back wxRadioBox.
1698 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
1699 a separate file.
1700
1701 Alpha 1, 5th April 1997
1702 -----------------------
1703
1704 Generic:
1705
1706 At this point, the following has been achieved:
1707
1708 - A lot, but not all, of the code has been revamped for better
1709 naming conventions, protection of data members, and use of
1710 wxString instead of char *.
1711 - Obsolete functionality deleted (e.g. default wxPanel layout,
1712 old system event system) and code size reduced.
1713 - Class hierarchy changed (see design doc) - base classes such
1714 as wxbWindow now removed.
1715 - No longer includes windows.h in wxWin headers, by using stand-in
1716 Windows types where needed e.g. WXHWND.
1717 - PrologIO revised.
1718 - wxScrolledWindow, wxStatusBar and new MDI classes added.
1719 MDI is now achieved using separate classes, not window styles.
1720 - wxSystemSettings added, and made use of to reflect standard
1721 Windows settings.
1722 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
1723 settings mucho rationalised.
1724 - All windows are now subclassed with the same window proc to make
1725 event handling far more consistent. Old internal wxWnd and derived
1726 classes removed.
1727 - API for controls revised, in particular addition of
1728 wxValidator parameters and removal of labels for some controls.
1729 - 1 validator written: see examples/validate.
1730 - Event table system introduced (see most samples and
1731 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
1732 made more flexible, with Push/PopEventHandler allowing a chain
1733 of event handlers.
1734 - wxRadioBox removed - will be added back soon.
1735 - Toolbar class hierarchy revised:
1736 wxToolBarBase
1737 wxToolBarSimple (= old wxToolBar)
1738 wxToolBar95 (= old wxButtonBar under Win95
1739 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
1740 - Constraint system debugged somewhat (sizers now work properly).
1741 - wxFileDialog, wxDirDialog added; other common dialogs now
1742 have class equivalents. Generic colour and font dialogs
1743 rewritten to not need obsolete panel layout.
1744 - .wxr resource system partially reinstated, though needs
1745 an integer ID for controls. Hopefully the resource system
1746 will be replaced by something better and more efficient
1747 in the future.
1748 - Device contexts no longer stored with window and accessed
1749 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
1750 variables instead.
1751 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
1752 determines whether labels are shown. Other Win95-specific flags
1753 introduced, e.g. for showing ticks.
1754 - Styles introduced for dealing with 3D effects per window, for
1755 any window: all Win95 3D effects supported, plus transparent windows.
1756 - Major change to allow 3D effect support without CTL3D, under
1757 Win95.
1758 - Bitmap versions of button and checkbox separated out into new
1759 classes, but unimplemented as yet because I intend to remove
1760 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
1761 - utils/wxprop classes working (except maybe wxPropertyFormView)
1762 in preparation for use in Dialog Editor.
1763 - GNU-WIN32 compilation verified (a month or so ago).
1764
1765