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