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