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