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