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