]> git.saurik.com Git - wxWidgets.git/blame - docs/changes.txt
docs for Change/GetMode(s) (patch 966312)
[wxWidgets.git] / docs / changes.txt
Content-type: text/html ]> git.saurik.com Git - wxWidgets.git/blame - docs/changes.txt


500 - Internal Server Error

Malformed UTF-8 character (fatal) at /usr/lib/x86_64-linux-gnu/perl5/5.40/HTML/Entities.pm line 485, <$fd> line 1783.
CommitLineData
c4839ccf
JS
1------------------------
2wxWidgets 2.5 Change Log
3------------------------
d643b80e
VZ
4
5INCOMPATIBLE CHANGES SINCE 2.4.x
6================================
7
e441e1f4
VZ
8 Please take a few minutes to read the following list, especially
9 paying attention to the most important changes which are marked
10 with '!' in the first column.
11
12 Also please note that you should ensure that WXWIN_COMPATIBILITY_2_4
13 is defined to 1 if you wish to retain maximal compatibility with 2.4
14 series.
15
16! windows are no longer fully repainted when resized, use new style
44db04e4 17 wxFULL_REPAINT_ON_RESIZE to force this (wxNO_FULL_REPAINT_ON_RESIZE still
e441e1f4
VZ
18 exists but doesn't do anything any more, this behaviour is default now)
19
a2bd1520 20! wxWindow::m_font and m_backgroundColour/m_foregroundColour are no longer
495f877d
RD
21 always set, use GetFont(), GetBack/ForegroundColour() to access
22 them, and they will be dynamically determined if necessary.
23
24
25! The Sizers have had some fundamental internal changes in the 2.5.2
26 and 2.5.3 releases intended to make them do more of the "Right
27 Thing" but also be as backwards compatible as possible. First a bit
28 about how things used to work:
29
30 * The size that a window had when Add()ed to the sizer was assumed
31 to be its minimal size, and that size would always be used by
32 default when calculating layout size and positions, and the
33 sizer itself would keep track of that minimal size.
34
35 * If the window item was Add()ed with the wxADJUST_MINSIZE flag
36 then when layout was calculated the item's GetBestSize would be
37 used to reset the minimal size that the sizer used.
38
39 The main thrust of the new Sizer changes was to make behaviour like
40 wxADJUST_MINSIZE be the default, and also to push the tracking of
41 the minimal size to the window itself (since it knows its own needs)
42 instead of having the sizer take care of it. Consequently these
43 changes were made:
44
45 * The wxFIXED_MINSIZE flag was added to allow for the old
46 behaviour. When this flag is used the size a window has when
47 Add()ed to the sizer will be treated as its minimal size and it
48 will not be readjusted on each layout.
49
50 * The min size stored in wxWindow and settable with SetSizeHints or
51 SetMinSize will by default be used by the sizer (if it was set)
52 as the minimal size of the sizer item. If the minsize was not
53 set (or was only partially set) then the window's best size is
54 fetched and it is used instead of (or blended with) the minsize.
55 wxWindow:GetBestFittingSize was added to facilitate getting the
56 size to be used by the sizers.
57
58 * The best size of a window is cached so it doesn't need to
59 recaculated on every layout. wxWindow::InvalidateBestSize was
60 added and should be called (usually just internally in control
61 methods) whenever something is done that would make the best
62 size change.
63
64 * All wxControls were changed to set the minsize to what is passed
65 to the constructor or Create method, and also to set the real
66 size of the control to the blending of the minsize and bestsize.
67 wxWindow::SetBestFittingSize was added to help with this,
68 although most controls don't need to call it directly because it
69 is called indirectly via the SetInitialSize called in the base
70 classes.
71
72 At this time, the only situation known not to work the same as
73 before is the following:
74
75 win = new SomeWidget(parent);
76 win->SetSize(SomeNonDefaultSize);
77 sizer->Add(win);
78
79 In this case the old code would have used the new size as the
80 minimum, but now the sizer will use the default size as the minimum
81 rather than the size set later. It is an easy fix though, just move
82 the specification of the size to the constructor (assuming that
83 SomeWidget will set its minsize there like the rest of the controls
84 do) or call SetMinSize instead of SetSize.
85
86 In order to fit well with this new scheme of things, all wxControls
87 or custom controls should do the following things. (Depending on
88 how they are used you may also want to do the same thing for
89 non-control custom windows.)
90
91 * Either override or inherit a meaningful DoGetBestSize method
92 that calculates whatever size is "best" for the control. Once
93 that size is calculated then there should normally be a call to
94 CacheBestSize to save it for later use, unless for some reason
95 you want the best size to be recalculated on every layout.
96
97 * Any method that changes the attributes of the control such that
98 the best size will change should call InvalidateBestSize so it
99 will be recalculated the next time it is needed.
100
101 * The control's constructor and/or Create method should ensure
102 that the minsize is set to the size passed in, and that the
103 control is sized to a blending of the min size and best size.
104 This can be done by calling SetBestFittingSize.
105
a2bd1520 106
e441e1f4 107
9b9d4651
VZ
108- no initialization/cleanup can be done in wxApp/~wxApp because they are
109 now called much earlier/later than before; please move any exiting code
110 from there to wxApp::OnInit()/OnExit()
fba61bdf 111- also, OnExit() is not called if OnInit() fails
527bbb39 112- finally the program exit code is OnRun() return value, not OnExit() one
26ab89ad 113- wxTheApp can't be assigned to any longer, use wxApp::SetInstance() instead
32b38f99 114- wxFileType::GetIcon() returns wxIconLocation, not wxIcon
bfdc04a9 115- wxColourDatabase is not a wxList any more, use AddColour to add new colours
5da0803c 116- wxWindow::Clear() is now called ClearBackground()
480e5897 117- pointer returned by wxFont::GetNativeFontInfo() must not be deleted now
bfdc04a9 118- wxMouseEvent::Moving() doesn't return true if mouse is being dragged any more
bfdc04a9
VZ
119- (most) controls now inherit parents colours by default, override
120 ShouldInheritColours() to return false if you don't want this to happen
dfcb9d7c 121- wxApp::SendIdleEvent() now takes 2 arguments
d366db96
MB
122- wxTabView::GetLayers() changed return type from wxList& to wxTabLayerList&
123 (when WXWIN_COMPATIBILITY_2_4 == 0)
6e76b35d 124- wxID_SEPARATOR (id used for the menu separators) value changed from -1 to -2
25959b95 125- wxGetNumberFromUser() is now in separate wx/numdlg.h, not wx/textdlg.h
d99957b6
VZ
126- wxChoice and wxCombobox now handle their size in the same way as in all the
127 other ports under MSW, new code is actually correct but different from weird
128 stuff they were doing before so the behaviour of your programs might change
1e6d9c20
VS
129- wxTaskBarIcon objects must now be destroyed before the application can exit.
130 Previously, the application terminated if there were no top level windows;
131 now it terminates if there are no top level windows or taskbar icons left.
4c68a102
VS
132- wxZlibInputStream is not by default compatible with the output of the
133 2.4.x version of wxZlibOutputStream. However, there is a compatibilty mode,
134 switched on by passing wxZLIB_24COMPATIBLE to the constructor.
6e86701b
MB
135- when WXWIN_COMPATIBILITY_2_4 == 0 wxHashTable uses a new implementation
136 not using wxList keyed interface (the same used when wxUSE_STL == 1),
137 the only incompatibility being that Next() returns a wxHashTable::Node*
138 instead of a wxNode*.
55e9fa68 139- non-const wxDC methods GetBackground(), GetBrush(), GetFont() and GetPen()
90287048
VS
140 as well as wxWindow methods GetFont() and GetCursor() don't exist any more,
141 please fix your code -- it never worked correctly anyhow if you modified the
142 objects returned by these methods so you should simply switch to using const
143 methods.
87fb0be4 144- wxWindow::GetFont() now returns wxFont object instead of reference
e1633ef9
VS
145- EVT_XXX macros are now type-safe; code that uses wrong type for event
146 handler's argument will no longer compile.
daf32463
WS
147- Identical functionality of wxFileDialog::ParseWildcard,
148 wxGenericDirCtrl::ParseFilter, Motif and MSW parsing native dialogs
149 is now accessible in ::wxParseCommonDialogsFilter
adbf2d73
VS
150- wxNotebookSizer and wxBookCtrlSizer are now deprecated -- the are no longer
151 needed, you can treat wxNotebook as any other control and put it directly
152 into the sizer that was wxNotebookSizer's parent sizer in old code.
1e6d9c20 153
5e2ab1ea 154
09c6a817 155
9b9d4651
VZ
156DEPRECATED METHODS SINCE 2.4.x
157==============================
09c6a817 158
fc2171bd 159Deprecated methods may still be used but will disappear in future wxWidgets
09c6a817
VZ
160versions, please update your code to not use them.
161
7af6b69e 162- wxDocManager::GetNoHistoryFiles() renamed to GetHistoryFilesCount()
09c6a817
VZ
163- wxSizer::Remove(wxWindow *), use Detach() instead [it is more clear]
164- wxSizer::Set/GetOption(): use Set/GetProportion() instead
165- wxKeyEvent::KeyCode(): use GetKeyCode instead
166- wxList::Number, First, Last, Nth: use GetCount, GetFirst/Last, Item instead
167- wxNode::Next, Previous, Data: use GetNext, GetPrevious, GetData instead
168- wxListBase::operator wxList&(): use typesafe lists instead
ba8c1601
MB
169- wxTheFontMapper: use wxFontMapper::Get() instead
170- wxStringHashTable: use wxHashMap instead
171- wxHashTableLong: use wxHashMap instead
fc2171bd 172- wxArrayString::GetStringArray: use wxCArrayString or alternative wxWidgets
584ad2a3 173 methods taking wxArrayString
ba8c1601 174- wxArrayString::Remove(index, count): use RemoveAt instead
df3b5898 175- wxTreeItemId conversion to long is deprecated and shouldn't be used
207e6243
VZ
176- wxTreeCtrl::GetFirst/NextChild() 2nd argument now has type wxTreeItemIdValue
177 and not long, please change declarations of "cookie"s in your code
178 accordingly -- otherwise your code won't work on 64 bit platforms
35821d8f
VZ
179- [MSW only] wxWindow::GetUseCtl3D(), GetTransparentBackground() and
180 SetTransparent() as well as wxNO_3D and wxUSER_COLOURS styles
080a7b20 181- wxList keyed interface: use wxHashMap instead
dfcb9d7c 182- wxColourDatabase::FindColour(): use Find() instead (NB: different ret type)
d366db96
MB
183- wxHashTable::Next: use wxHashTable::Node* or
184 wxHashTable::compatibility_iterator to store the return
185 value
4a3990e2 186- wxWave class; use wxSound instead
ba443432
JS
187- The wxHIDE_READONLY flag for wxFileDialog was not implemented
188 and has now been removed
6bba4b8a 189- wxTaskBarIcon::OnXXX() virtual methods: use events instead
dfcb9d7c 190
7af6b69e 191
d643b80e
VZ
192OTHER CHANGES
193=============
194
33d4eef0
VS
1952.5.3
196-----
197
00bcc185
VS
198All:
199
200- number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten)
0c2a5de2 201- fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem)
8cc00d5f 202- fixed bug in wxDateTime::Set(jdn) when DST was in effect
051aa330 203- fixed fatal bug in wxString when wxUSE_STL==1 (Kurt Granroth)
dbea9b70
VS
204- support msgids in charsets other than C and languages other than English
205 (based on patch by Stefan Kowski)
08873d36 206- added wxMicroSleep() and wxMilliSleep() replacing deprecated wxUsleep()
00bcc185 207
dae73d74
VS
208All (GUI):
209
a24de76b 210- added wxWindow::MoveBefore/AfterInTabOrder() to change tab navigation order
dae73d74
VS
211- added wxTaskBarIcon::CreatePopupMenu which is now recommended way
212 of showing popup menu; calling wxTaskBarIcon::PopupMenu directly
213 is discouraged
a24de76b
VZ
214- added ..._CMD_...(id) variants for wxGrid event table entry macros
215- added wxWindow::Navigate for programmatic navigation to the next control.
0d9b2c16
VZ
216- wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set
217- added wxKeyEvent::GetUnicodeKey()
a2bd1520 218- added wxKeyEvent::CmdDown() and wxMouseEvent::CmdDown()
dae73d74 219
33d4eef0
VS
220Unix:
221
222- wxTaskBarIcon now supports freedesktop.org System Tray protocol
0a8d9df6 223- security fixes to wxSingleInstanceChecker
8708fa76
VS
224- wx-config script was modified to allow choosing from multiple installed
225 builds of wxWidgets
33d4eef0 226
bbce0c0c
VS
227wxGTK:
228
692c9b86
VZ
229- wxGTK uses GTK+ 2.x by default now, you have to pass --disable-gtk2 to
230 configure if you want to use GTK+ 1.2
f40fdaa3 231- fixed many rendering artifacts and wrong colours with lots of GTK+ themes
dae73d74 232- implemented wxColourDialog as native dialog
692c9b86 233- implemented wxTextCtrl::HitTest() (GTK+ >= 2)
1ce52aa6 234- implemented wxTextCtrl::ScrollLines() and ScrollPages for GTK+ 2.x
1a4088e1 235- wxTreeCtrl::GetCount() counts root as well now (compatible with MSW)
4dcccda6 236- added support for wxCHK_3STATE style (GTK2 only)
1dbeee57 237- implemented text underlining under GTK2
2be125e6 238- implemented wxFRAME_NO_TASKBAR style (GTK >= 2.2)
44fd6f72
VS
239- implemented support for wxSYS_DCLICK_?, wxSYS_DRAG_? and wxSYS_CURSOR_?
240 in wxSystemSettings::GetMetric (Mart Raudsepp)
d8e1fe80
VS
241- implemented wxTopLevel::IsMaximized() for GTK+2 and WMs that implement
242 freedesktop.org's wm-spec (Mart Raudsepp)
fe51e08c 243- wxEVT_CONTEXT_MENU is now generated for right mouse press, not release
bbce0c0c 244
f8ab089a
MB
245wxMotif:
246
0d9b2c16 247- added support for wxCHK_3STATE style (3 state checkbox)
f8ab089a 248
60c315ca
VS
249wxMSW:
250
251- fixed UNC paths handling in wxFileSystem (Daniel Nash)
0d9b2c16 252- set wxKeyEvent::m_uniChar in Unicode build
60c315ca 253
a0f428c6
WS
254wxWinCE:
255
256- added automatized but customizable handling of native SmartPhone menus
257
91fa114d
VS
258wxHTML:
259
260- added support for nested index entries and index entries pointing to more
261 than one page to wxHtmlHelpController
262
33d4eef0 263
a1037371
VZ
2642.5.2
265-----
266
3c2544bb
JS
267All:
268
dcbb88f0
VZ
269- Hindi translation added (Dhananjaya Sharma)
270- Brazilian Portuguese translation added (E. A. Tacao)
5232d996
VZ
271- wxDynamicCast() now uses static_cast<wxObject *> internally and so using it
272 with anything not deriving from wxObject will fail at compile time (instead
273 of run-time) now
bdcade0a
MB
274- when wxUSE_STL == 1 and STL provides quasi-standard hash_map/hash_set,
275 wxHashMap/wxHashSet are just typedefs for them. This makes impossible
276 to forward declare these classes.
f6d74279 277
3c2544bb
JS
278All (GUI):
279
280- wxHtmlWindow now delays image scaling until rendering,
281 resulting in much better display of scaled images
e1983ab5
VZ
282- Added UpdateSize to wxSplitterWindow to allow layout while hidden
283- implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock)
15ad38c3 284- support for KOI8-U encoding added (Yuriy Tkachenko)
8f61ba28 285- The old wxADJUST_MINSIZE behaviour is now the default behaviour for
ec5cadfe
RD
286 sizer items that are windows. This means that GetAdjustedBestSize
287 will now be called by default to determine the minimum size that a
288 window in a sizer should have. If you want to still use the initial
289 size (and not the BestSize) then use the wxFIXED_MINSIZE flag. When
290 windows are added to a sizer their initial size is made the window's
291 min size using SetSizeHints, and calls to wxSizer::SetItemMinSize
292 are also forwarded to SetSizeHints for window items.
8f61ba28 293- added wxRegEx::GetMatchCount()
2d814c19 294- it is now possible to display images in wxHtmlListBox
3c2544bb 295
a1037371 296wxMSW:
3c2544bb 297
a1037371 298- wxWindow::Freeze()/Thaw() can now be nested
3c2544bb
JS
299- Added wxSP_NO_XP_THEME style to wxSplitterWindow to switch off
300 XP theming (some applications look bad without 3D borders)
4e86e9cd 301- wxMenuBar::GetLabelTop() doesn't include '&'s in the label any more
9a85c87d
VZ
302- wxRegConf couldn't read global settings without admin privileges and didn't
303 even try to do it by default -- now it does
1e6d9c20
VS
304- wxTaskBarIcon must be explicitly destroyed now, otherwise the application
305 won't exit even though there are no top level windows
54bcff35 306- wxFileName::GetModificationTime() works with opened files too now
bf5d9fa4
VZ
307- wxDC::GetClippingBox() now works even for clipping regions created by Windows
308- fixed wxFileDataObject in Unicode build (Alex D)
89b67477 309- subdindented paragraphs support (Tim Kosse)
a1037371 310
c663fbea
VS
311wxGTK:
312
313- added support for wxTE_RIGHT and wxTE_CENTRE styles under GTK2 (Mart Raudsepp)
314
cf9df191
VZ
315wxMotif:
316
317- removed wxMenuItem::DeleteSubMenu()
e04b7e8e
MB
318- wxButtons use Motif default size, which is smaller than it used to be
319 and closer to wxMSW/wxGTK look. This can be disabled by setting
320 motif.largebuttons system option to 1 (see wxSystemOptions).
cf9df191 321
e8ba218b
VZ
322wxUniv/X11:
323
324- implemented DrawRoundedRectangle() (clawghoul)
325
ca16b7a9
VS
326wxHTML:
327
5b2b456f 328- improved tables and lists layout algorithms (Tim Kosse)
c5448f38 329- <div> handling fix (Xavier Nodet)
ca16b7a9 330
a9a76b2f 331Unix:
33d4eef0 332
a9a76b2f 333- fixed priorities of mailcap entries (David Hart)
1d8864ac 334- added "wx-config --libs=std,<extra>" syntax (i.e. support for "std")
a9a76b2f 335
a21c0aaa 336wxODBC:
33d4eef0 337
c4839ccf 338- Full Unicode support is now available
a21c0aaa
GT
339- BLOB support is working
340
a1037371 341
1d95f44a
JS
3422.5.1
343-----
11ebea16 344
2e622163 345All:
de07d200 346
3a818b15 347