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