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