]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/changes.txt
fixed bug in SetStyle() which wouldn't reset the slant if it had been set before
[wxWidgets.git] / docs / changes.txt
... / ...
CommitLineData
1wxWindows 2 Change Log
2----------------------
3
4INCOMPATIBLE CHANGES SINCE 2.2.x
5================================
6
7 Please take a few minutes to read the following list, especially
8 paying attention to the most important changes which are marked
9 with '!' in the first column.
10
11 Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2
12 is defined to 1 if you wish to retain maximal compatibility with 2.2
13 series -- however you are also strongly encouraged to try to compile
14 your code without this define as it won't be default any longer in
15 2.6 release.
16
17 NB: if you want to build your program with different major versions
18 of wxWindows you will probably find the wxCHECK_VERSION() macro
19 (see the documentation) useful.
20
21
22wxBase:
23
24! wxArray<T>::Remove(size_t) has been removed to fix compilation problems
25 under 64 bit architectures, please replace it with RemoveAt() in your
26 code.
27
28! wxArray<T> macros have been changed to fix runtime problems under 64 bit
29 architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
30 used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
31 arrays containing non-pointers.
32
33- wxObject::CopyObject() and Clone() methods were removed because they
34 simply don't make sense for all objects
35
36- wxEvent now has a pure virtual Clone() method which must be implemented
37 by all derived classes, if you have user-defined event classes please
38 add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
39
40- small change to wxStopWatch::Pause() semantics, please see the documentation
41
42- unlikely but possible incompatibility: the definition of TRUE has changed
43 from "1" to "(bool)1" (and the same thing for FALSE), so the code which
44 could be erroneously compiled previously such as doing "return FALSE" from
45 a function returning a pointer would stop compiling now (but this change
46 is not supposed to have any effects on valid code)
47
48- another minor change: wxApp::OnAssert() has a new "cond" argument, you
49 must modify YourApp::OnAssert() signature if you were using it to override
50 the default assert handling.
51
52
53All (GUI):
54
55! the event type constants are not constants any more but are dynamically
56 allocated during run-time which means that they can't be used as case labels
57 in the switch()es, you must rewrite them to use if()s instead
58
59 You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
60 but this is strongly discouraged, please consider changing your code
61 instead!
62
63! wxDialog does not derive from wxPanel any longer - if you were using it in
64 your code, please update it. The quick fix for the most cases is to replace
65 the occurrences of wxPanel with wxWindow.
66
67! if you handle (and don't skip) EVT_KEY_DOWN, the EVT_CHAR event is not
68 generated at all, so you must call event.Skip() in your OnKeyDown() if
69 you want to get OnChar() as well
70
71- in general, the key events sent for the various non ASCII key combinations
72 have been changed to make them consistent over all supported platforms,
73 please see the wxKeyEvent documentation for details
74
75- wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
76 have changed (to fix some unfortunate clashes), please check your code to
77 ensure that no tests for wxYES or wxNO are broken: for example, the following
78 will *NOT* work any longer:
79
80 if ( flags & wxYES_NO )
81 ... do something ...
82 if ( flags & wxYES )
83 ... do something else ...
84
85- static wxWizard::Create() doesn't exist any more, the wizards are created
86 in the same way as all the other wxWindow objects, i.e. by directly using
87 the ctor
88
89- wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
90
91- wxGridCellAttrProvider class API changed, you will need to update your code
92 if you derived any classes from it
93
94- wxImage::ComputeHistogram()'s signature changed to
95 unsigned long ComputeHistogram(wxImageHistogram&) const
96
97- wxEvtHandler cannot be copied/assigned any longer - this never worked but
98 now it results in compile-time error instead of run-time crashes
99
100- WXK_NUMLOCK and WXK_SCROLL keys no longer result in EVT_CHAR() events,
101 they only generate EVT_KEY_DOWN/UP() ones
102
103- the dialogs use wxApp::GetTopWindow() as the parent implicitly if the
104 parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this
105 from happening
106
107- several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode:
108 for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
109 and GetCount() instead of Number() in many classes
110
111- wxCmdLineParser does not use wxLog to output messages anymore.
112 to obtain the previous behaviour, add
113 wxMessageOutput::Set(new wxMessageOutputLog); to your program
114 (you will need to #include <wx/msgout.h>)
115
116wxMSW:
117
118! build system changed: setup.h is not a static file in include/wx any more
119 but is created as part of the build process under lib/<toolkit>/wx/include
120 where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
121 the include path in your make/project files appropriately. Furthermore,
122 xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
123 class. You'll need to remove all references to xpm.lib from your
124 make/project files.
125
126- child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
127 style to avoid it
128
129- all overloads of wxDC::SetClippingRegion() combine the given region with the
130 previously selected one instead of replacing it
131
132- wxGetHomeDir() uses HOME environment variable and if it is set will not
133 return the programs directory any longer but its value (this function has
134 never been meant to return the programs directory anyhow)
135
136- wxHTML apps don't need to include wx/html/msw/wxhtml.rc in resources file
137 anymore. The file was removed from wxMSW
138
139
140Unix ports:
141
142! You should use `wx-config --cxxflags` in your makefiles instead of
143 `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
144 and the compiler flags for C++ files only, CFLAGS should still be used
145 to compile pure C files.
146
147
148wxThread and related classes:
149
150- The thread-related classes have been heavily changed since 2.2.x versions
151 as the old code had many serious problems. This could have resulted in
152 semantical changes other than those mentioned here, please review use of
153 wxThread, wxMutex and wxCondition classes in your code.
154
155! wxCondition now *must* be used with a mutex, please read the (updated) class
156 documentation for details and revise your code accordingly: this change was
157 unfortunately needed as it was impossible to ensure the correct behaviour
158 (i.e. absense of race conditions) using the old API.
159
160- wxMutex is not recursive any more in POSIX implementation (it hasn't been
161 recursive in 2.2.x but was in 2.3.1 and 2.3.2), please refer to the class
162 documentation for the discussion of the recursive mutexes.
163
164- wxMutex::IsLocked() doesn't exist any more and should have never existed:
165 this is was unique example of a thread-unsafe-by-design method.
166
167
168OTHER CHANGES
169=============
170
1712.3.3
172-----
173
174wxBase:
175
176- wxSemaphore class added, many fixed to wxCondition and wxThread (K.S. Sreeram)
177- fixes to the command line parsing error and usage messages
178- modified wxFileName::CreateTempFileName() to open the file atomically
179 (if possible) and, especially, not to leak the file descriptors under Unix
180- memory leak in wxHTTP fixed (Dimitri)
181- fixes to AM_PATH_WXCONFIG autoconf macro
182- added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
183 after (non standard) STL hash_map
184- wxLocale now works in Unicode mode
185- wxLocale can now load message catalogs in arbitrary encoding
186- fixed the bug related to the redrawing on resize introduced in 2.3.2
187- added static wxFontMapper::Get() accessor (use of wxTheFontMapper is now
188 deprecated)
189- added wxShutdown() function (Marco Cavallini)
190- added wxEXPLICIT macro
191
192Unix (Base/GUI):
193
194- wxWindows may be built using BSD and Solaris (and possibly other) make
195 programs and not only GNU make
196- wxTCP-based IPC classes now support communicating over Unix domain sockets
197- wxWindows may be built as a dynamic shared library under Darwin / Mac OS X
198 lazy linking issues have been solved by linking a single module (.o) into
199 the shared library (two step link using distrib/mac/shared-ld-sh)
200- fixed thread priority setting under Linux
201
202All (GUI):
203
204- it is now possible to set the icons of different sizes for frames (e.g. a
205 small and big ones) using the new wxIconBundle class
206- implemented radio menu items and radio toolbar buttons
207- added possibility to show text in the toolbar buttons
208- added wxArtProvider class that can be used to customize the look of standard
209 wxWindows dialogs
210- significantly improved native font support
211- wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
212 wxHashTable
213- added IFF image handler
214- fixed using custom renderers in wxGrid which was broken in 2.3.2
215- support for multiple images in one file added to wxImage (TIFF, GIF and ICO formats)
216- support for CUR and ANI files in wxImage added (Chris Elliott)
217- wxTextCtrl::GetRange() added
218- added wxGetFontFromUser() convenience function
219- added EVT_MENU_OPEN and EVT_MENU_CLOSE events
220- added Hungarian translations (Janos Vegh)
221- added wxImage::SaveFile(filename) method (Chris Elliott)
222- added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
223 for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
224- added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
225- added wxTextCtrl::EmulateKeyPress()
226- Added wxMouseCaptureChangedEvent
227- Added custom character filtering to wxTextValidator
228- wxTreeCtrl now supports incremental keyboard search
229- wxHelpProvider::RemoveHelp added and called from ~wxWindowBase
230 so that erroneous help strings are no longer found as the hash
231 table fills up
232- updated libpng from 1.0.3 to 1.2.4
233- Added wxView::OnClosingDocument so the application can do
234 cleanup.
235- generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
236 renamed to wxGenericImageList, so they can be used on wxMSW
237 (Rene Rivera).
238
239wxMSW:
240
241- small appearance fixes for native look under Windows XP
242- fixed multiple bugs in wxExecute() with IO redirection
243- refresh the buttons properly when the window is resized (Hans Van Leemputten)
244- huge (40*) speed up in wxMask::Create()
245- changing wxWindows styles also changes the underlying Windows window style
246- wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
247- fixed flicker in wxTreeCtrl::SetItemXXX()
248- fixed redraw problems in dynamically resized wxStaticText
249- improvements to wxWindows applications behaviour when the system colours
250 are changed
251- fixed wxProgressDialog for ranges > 65535
252- wxSpinButton and wxSpinCtrl now support full 32 bit range (if the version
253 of comctl32.dll installed on the system supports it)
254- wxFontEnumerator now returns all fonts, not only TrueType ones
255- bugs in handling wxFrame styles (border/caption related) fixed
256- showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
257 recursion any more
258- wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
259- the separators are not seen behind the controls added to the toolbar any more
260- wxLB_SORT style can be used with wxCheckListBox
261- wxWindowDC and wxClientDC::GetSize() works correctly now
262- Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can be used in FL
263- Multiline labels in buttons are now supoprted (simply use "\n" in the label)
264- Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it
265 has the capture before release it.
266- fixed bugs in multiple selection wxCheckListBox
267- default button handling is now closer to expected
268- setting tooltips for wxSlider now works
269- multiple events avoided in wxComboBox
270- tooltip asserts avoided for read-only wxComboBox
271- fixed a race condition during a thread exit and a join
272- fixed a condition where a thread can hang during message/event processing
273- increased space between wxRadioBox label and first radio button
274- don't fail to register remaining window classes if one fails to register
275
276wxGTK:
277
278- wxDirDialog now presents the file system in standard Unix way
279- wxButton now honours wxBU_EXACTFIT
280- wxStaticBox now honours wxALIGN_XXX styles
281- added support for non alphanumeric simple character accelerators ('-', '=')
282- new behaviour for wxWindow::Refresh() as it now produces a delayed refresh.
283 Call the new wxWindow::Update() to force an immediate update
284- support for more SGI hardware (12-bit mode among others)
285- fixed wxDC::Blit() to honour source DC's logical coordinates
286- implemented wxIdleEvent::RequestMore() for simple background tasks
287- implemented wxChoice::Delete()
288- fixed bad memory leak in wxFileDialog (Chris Elliott)
289- made internal GC pool dynamically growable
290
291wxMotif:
292
293- improved colour settings return values (Ian Brown)
294- improved border style handling for wxStaticText (Ian Brown)
295- improved toolbar control alignment
296- implemented wxSpinButton
297- implemented wxCheckListBox
298- fixed wxSpinCtrl and wxStaticLine when used with sizers
299- wxStaticBitmap now shows transparent icons correctly
300
301wxHTML:
302
303- fixed wxHtmlHelpController's cache files handling on big endian machines
304- added blocking and redirecting capabilities to wxHtmlWindow via
305 wxHtmlWindow::OnOpeningURL()
306- fixed alignment handling in tables
307- fixed <font face="..."> handling to be case insensitive
308
3092.3.2
310-----
311
312New port: wxUniv for Win32/GTK+ is now included in the distribution.
313
314wxBase:
315
316- wxRegEx class added
317- wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
318- wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
319- more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
320 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
321 capabilities at runtime instead of in the configure script.
322
323All (GUI):
324
325- support for virtual list control added
326- column images in report mode of the list control
327- wxFindReplaceDialog added (based on work of Markus Greither)
328- wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
329- polygon support in wxRegion (Klaas Holwerda)
330- wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
331- fixed bug with using wxExecute() to capture huge amounts of output
332