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