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