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