]>
Commit | Line | Data |
---|---|---|
70cf18ef VZ |
1 | ------------------------------------------------------------------------------- |
2 | wxWidgets Change Log | |
3 | ------------------------------------------------------------------------------- | |
d643b80e | 4 | |
5ec9d741 | 5 | INCOMPATIBLE CHANGES SINCE 2.8.x |
aae53500 VZ |
6 | ================================ |
7 | ||
e6d4038a VZ |
8 | Unicode-related changes |
9 | ----------------------- | |
10 | ||
11 | The biggest changes in wxWidgets 3.0 are the changes due to the merge of the | |
12 | old ANSI and Unicode build modes in a single build. See the Unicode overview | |
13 | in the manual for more details but here are the most important incompatible | |
14 | changes: | |
15 | ||
16 | - Many wxWidgets functions taking "const wxChar *" have been changed to take | |
4baf7800 | 17 | either "const wxString&" so that they accept both Unicode and ANSI strings. |
e6d4038a | 18 | and the argument can't be NULL or "const char *" if the strings are always |
4baf7800 VZ |
19 | ANSI but may be NULL. This change is normally backwards compatible except: |
20 | ||
21 | a) Virtual functions: derived classes versions must be modified to take | |
22 | "const wxString&" as well to make sure that they continue to override the | |
23 | base class version. | |
24 | ||
25 | b) Passing NULL as argument: as NULL can't be unambiguously converted to | |
26 | wxString, in many cases code using it won't compile any more and NULL | |
1c06345a VZ |
27 | should be replaced with an empty string. The same issue also applies to |
28 | the structure fields which used to contain "const wxChar *" pointers (such | |
29 | as wxCmdLineEntryDesc::shortName, longName and description fields) and are | |
30 | now wxStrings: empty strings should be assigned to them instead of NULL. | |
e6d4038a | 31 | |
e6d4038a VZ |
32 | |
33 | ||
b1f3b29c VZ |
34 | Changes in behaviour not resulting in compilation errors, please read this! |
35 | --------------------------------------------------------------------------- | |
36 | ||
466e87bd VZ |
37 | - Default location of wxFileConfig files has changed under Windows, you will |
38 | need to update your code if you access these files directly. | |
39 | ||
47a8a4d5 VZ |
40 | - wxWindow::IsEnabled() now returns false if a window parent (and not |
41 | necessarily the window itself) is disabled, new function IsThisEnabled() | |
42 | with the same behaviour as old IsEnabled() was added. | |
43 | ||
5644933f VZ |
44 | - Generating wxNavigationKeyEvent events doesn't work any more under wxGTK (and |
45 | other platforms in the future), use wxWindow::Navigate() or NavigateIn() | |
46 | instead. | |
47 | ||
89064717 VZ |
48 | - Sizers distribute only the extra space between the stretchable items |
49 | according to their proportions and not all available space. We believe the | |
50 | new behaviour corresponds better to user expectations but if you did rely | |
51 | on the old behaviour you will have to update your code to set the minimal | |
52 | sizes of the sizer items to be in the same proportion as the items | |
53 | proportions to return to the old behaviour. | |
54 | ||
b1f3b29c VZ |
55 | Changes in behaviour which may result in compilation errors |
56 | ----------------------------------------------------------- | |
57 | ||
c1dc9f83 VZ |
58 | - WXWIN_COMPATIBILITY_2_4 doesn't exist any more, please update your code if |
59 | you still relied on features deprecated since version 2.4 | |
60 | ||
c9f78968 VS |
61 | - Return type of wxString::operator[] and wxString::iterator::operator* is no |
62 | longer wxChar (i.e. char or wchar_t), but wxUniChar. This is not a problem | |
63 | in vast majority of cases because of conversion operators, but it can break | |
64 | code that depends on the result being wxChar. | |
65 | ||
ef0f1387 VS |
66 | - The value returned by wxString::c_str() cannot be casted to non-const char* |
67 | or wchar_t* anymore. The solution is to use newly added wxString methods | |
68 | char_str() (which returns a buffer convertible to char*) or wchar_str() | |
69 | (which returns a buffer convertible to wchar_t*). These methods are | |
70 | available in wxWidgets 2.8 series beginning with 2.8.4 as well. | |
71 | ||
c9f78968 VS |
72 | - The value returned by wxString::operator[] or wxString::iterator cannot be |
73 | used in switch statements anymore, because it's a class instance. Code like | |
74 | this won't compile: | |
75 | switch (str[i]) { ... } | |
76 | and has to be replaced with this: | |
77 | switch (str[i].GetValue()) { ... } | |
78 | ||
79 | - Return type of wxString::c_str() is now wxCStrData struct and not | |
80 | const wxChar*. wxCStrData is implicitly convertible to const char* and | |
81 | const wchar_t*, so this only presents a problem if the compiler cannot | |
82 | convert the type. In particular, Borland C++ and DigitalMars compilers | |
83 | don't correctly convert operator?: operands to the same type and fail with | |
84 | compilation error instead. This can be worked around by explicitly casting | |
85 | to const wxChar*: | |
86 | wxLogError(_("error: %s"), !err.empty() ? (const wxChar*)err.c_str() : "") | |
87 | ||
52de37c7 | 88 | - wxCtime() and wxAsctime() return char*; this is incompatible with Unicode |
5bce3e6f | 89 | build in wxWidgets 2.8 that returned wchar_t*. |
52de37c7 | 90 | |
c9f78968 VS |
91 | - DigitalMars compiler has a bug that prevents it from using |
92 | wxUniChar::operator bool in conditions and it erroneously reports type | |
93 | conversion ambiguity in expressions such as this: | |
94 | for ( wxString::const_iterator p = s.begin(); *p; ++p ) | |
95 | This can be worked around by explicitly casting to bool: | |
96 | for ( wxString::const_iterator p = s.begin(); (bool)*p; ++p ) | |
97 | ||
d03dab2a | 98 | - Virtual wxHtmlParser::AddText() takes wxString, not wxChar*, argument now. |
5bce3e6f | 99 | |
de34bb08 | 100 | - Functions that took wxChar* arguments that could by NULL in wxWidgets 2.8. |
d38f70b2 | 101 | are deprecated and passing NULL to them won't compile anymore, wxEmptyString |
ab29bb87 | 102 | must be used instead. |
d38f70b2 | 103 | |
de34bb08 VZ |
104 | - wxTmemxxx() functions take either wxChar* or char*, not void*: use memxxx() |
105 | with void pointers. | |
106 | ||
d03dab2a VS |
107 | - Removed insecure wxGets() and wxTmpnam() functions. |
108 | ||
6a4cbac1 VS |
109 | - Removed global GetLine() function from wx/protocol/protocol.h, use |
110 | wxProtocol::ReadLine() instead. | |
111 | ||
d03dab2a | 112 | |
5ec9d741 VZ |
113 | Deprecated methods and their replacements |
114 | ----------------------------------------- | |
115 | ||
13dd765c | 116 | - wxCreateGreyedImage() deprecated, use wxImage::ConvertToGreyscale() instead. |
7890307b VS |
117 | - wxString::GetWriteBuf() and UngetWriteBuf() deprecated, using wxStringBuffer |
118 | or wxStringBufferLength instead. | |
d0bc78e2 VZ |
119 | - wxDIRCTRL_SHOW_FILTERS style is deprecated, filters are alwsys shown if |
120 | specified so this style should simply be removed | |
724b119a VZ |
121 | - wxDocManager::MakeDefaultName() replaced by MakeNewDocumentName() and |
122 | wxDocument::GetPrintableName() with GetUserReadableName() which are simpler | |
123 | to use | |
288b6107 VS |
124 | - wxXmlProperty class was renamed to wxXmlAttribute in order to use standard |
125 | terminology. Corresponding wxXmlNode methods were renamed to use | |
126 | "Attribute" instead of "Property" or "Prop" in their names. | |
d0bc78e2 | 127 | |
9ac43913 | 128 | |
5ec9d741 VZ |
129 | Major new features in this release |
130 | ---------------------------------- | |
131 | ||
12dc0a01 | 132 | |
ccee328e VZ |
133 | 2.9.0 |
134 | ----- | |
135 | ||
ac6e0eb1 VZ |
136 | All: |
137 | ||
3cc305b2 JS |
138 | - Added support for user-defined types to wxConfig (Marcin Wojdyr). |
139 | - Added wxJoin() and wxSplit() functions (Francesco Montorsi). | |
140 | - Added wxMutex::LockTimeout() (Aleksandr Napylov). | |
141 | - Added wxMemoryInputStream(wxInputStream&) ctor (Stas Sergeev). | |
142 | - Implemented wxMemoryInputStream::CanRead(). | |
143 | - Added wxEXEC_BLOCK flag (Hank Schultz). | |
144 | - Add support for wxStream-derived classes to wxRTTI (Stas Sergeev). | |
145 | - Added wxStreamBuffer::Truncate() (Stas Sergeev). | |
146 | - Allow using wxEventLoop in console applications (Lukasz Michalski). | |
147 | - Added functions for Base64 en/decoding (Charles Reimers). | |
148 | - Added support for binary data to wxConfig (Charles Reimers). | |
149 | - Added functions for atomically inc/decrementing integers (Armel Asselin). | |
30519b02 | 150 | - wxLogInterposer has been added to replace wxLogPassThrough and new |
3cc305b2 JS |
151 | wxLogInterposerTemp was added. |
152 | - Added support for broadcasting to UDP sockets (Andrew Vincent). | |
153 | - Documentation now includes the wx library in which each class is defined. | |
abbb59e8 | 154 | |
bd630206 VZ |
155 | All (Unix): |
156 | ||
3cc305b2 | 157 | - Added wx-config --optional-libs command line option (John Labenski). |
bd630206 | 158 | |
abbb59e8 VZ |
159 | All (GUI): |
160 | ||
3cc305b2 JS |
161 | - Added wxH[V]ScrolledWindow (Brad Anderson, Bryan Petty). |
162 | - Added wxDC::StretchBlit() for wxMac and wxMSW (Vince Harron). | |
163 | - Added support for drop down toolbar buttons (Tim Kosse). | |
164 | - Added support for labels for toolbar controls (Vince Harron). | |
165 | - Added wxMessageDialog::SetMessage() and SetExtendedMessage(). | |
166 | - Added wxEventBlocker class (Francesco Montorsi).. | |
167 | - Added wxFile/DirPickerCtrl::Get/SetFile/DirName() (Francesco Montorsi).. | |
13dd765c JS |
168 | - Added wxSizerFlags::Top() and Bottom(). |
169 | - Slovak translation added. | |
170 | - Fixed tab-related drawing and hit-testing bugs in wxRichTextCtrl. | |
171 | - Implemented background colour in wxRichTextCtrl. | |
172 | - Fixed crashes in helpview when opening a file. | |
3cc305b2 JS |
173 | - Set locale to the default in all ports, not just wxGTK. |
174 | - Added wxJoystick::GetButtonState/Position() (Frank C Szczerba). | |
175 | - Added wxGridUpdateLocker helper class (Evgeniy Tarassov). | |
176 | - Support wxGRID_AUTOSIZE in wxGrid::SetRow/ColLabelSize() (Evgeniy Tarassov). | |
177 | - Added wxWindow::NavigateIn() in addition to existing Navigate(). | |
178 | - Add support for <data> tags to wxrc. | |
179 | - Support wxAPPLY and wxCLOSE in CreateStdDialogButtonSizer() (Marcin Wojdyr). | |
180 | - Show standard options in wxCmdLineParser usage message (Francesco Montorsi). | |
181 | - Added wxRect::operator+ (union) and * (intersection) (bdonner). | |
182 | - Added support for two auxiliary mouse buttons to wxMouseEvent (Chris Weiland). | |
becac1ef | 183 | - Added wxToolTip::SetAutoPop() and SetReshow() (Jan Knepper) |
39f0cb54 | 184 | - Added wxTaskBarIcon::Destroy() |
c7db82dc | 185 | - Added XRC handler for wxSearchCtrl (Sander Berents) |
37ba70a5 | 186 | - Read image resolution from TIFF, JPEG and BMP images (Maycon Aparecido Gasoto) |
376b252c | 187 | - Added wxSYS_DCLICK_TIME system metric constant (Arne Steinarson) |
9cf3d218 | 188 | - Added wxApp::Get/SetAppDisplayName() (Brian A. Vanderburg II) |
ccee328e | 189 | |
ac6e0eb1 VZ |
190 | wxGTK: |
191 | ||
3cc305b2 JS |
192 | - Support for markup and ellipsization in wxStaticText (Francesco Montorsi). |
193 | - Native implementation for wxHyperlinkCtrl (Francesco Montorsi). | |
194 | - Native keyboard navigation implementation. | |
195 | - Added wxCB_SORT support to wxComboBox (Evgeniy Tarassov). | |
196 | - Don't overwrite primary selection with clipboard and vice versa. | |
13dd765c JS |
197 | - Implemented support for underlined fonts in wxStaticText. |
198 | - wxTopLevelWindow::SetSizeHints size increments now work. | |
199 | - wxTopLevelWindow::GetSize() returns the size including the WM decorations. | |
200 | - wxTopLevelWindow::GetClientSize() returns 0x0 when the window is minimized. | |
201 | - Added support for colour cursors (Pascal Monasse). | |
3cc305b2 JS |
202 | - Pass current control text to EVT_TEXT handler for wxSpinCtrl (John Ratliff). |
203 | - Added gtk.tlw.can-set-transparency system option. | |
ac6e0eb1 | 204 | |
4dd25308 VZ |
205 | wxMac: |
206 | ||
3cc305b2 JS |
207 | - Better IconRef support (Alan Shouls). |
208 | - Added support for changing button labels in wxMessageDialog (Gareth Simpson). | |
209 | - Fix duplicate (empty) help menu in non-English programs (Andreas Jacobs). | |
210 | - Allow accelerators to be used with buttons too (Ryan Wilcox). | |
211 | - Support resource forks in wxCopyFile() (Hank Schultz). | |
4dd25308 | 212 | |
e570a44b VZ |
213 | wxMSW: |
214 | ||
13dd765c JS |
215 | - Fixed infinite loop in wxThread::Wait() in console applications. |
216 | - Return the restored window size from GetSize() when window is minimized. | |
3cc305b2 | 217 | - wxCheckListBox now looks more native, especially under XP (Marcin Malich). |
ac6e0eb1 | 218 | |
2cdb6fdb VZ |
219 | wxX11: |
220 | ||
3cc305b2 JS |
221 | - Added mouse wheel support (David Hart). |
222 | - Make Enter key activate the default button (David Hart). | |
2cdb6fdb | 223 | |
12dc0a01 | 224 | |
66160760 VZ |
225 | 2.8.5 |
226 | ----- | |
227 | ||
57beadd2 VZ |
228 | All (GUI): |
229 | ||
c253e005 | 230 | - Added colour normalization to PNM image handler (Ray Johnston) |
ba0f12ef VZ |
231 | - Fixed selecting part of word from right to left in wxHTML (Michael Hieke) |
232 | - Selecting text in wxHTML with character precision was made easier, it's | |
233 | enough to select half of a character (Michael Hieke) | |
234 | - Significantly improved startup times of XRC-based applications using | |
235 | embedded resources on Unix (requires resources recompilation) | |
eb86e775 | 236 | - Fixed freeing of "static" alpha data in wxImage (Axel Gembe) |
ab29bb87 VZ |
237 | - Don't invalidate the font in SetNativeFontInfo[Desc]() if the string is |
238 | invalid, to conform to the documented behaviour (Langhammer) | |
0200fb27 | 239 | - Fixed wxXPMHandler::SaveFile for images with more than 92 colors. |
57beadd2 | 240 | |
66160760 VZ |
241 | wxMSW: |
242 | ||
94dd2287 | 243 | - Correct problem with page setup dialog when using landscape mode |
66160760 | 244 | - Added msw.font.no-proof-quality system option, see manual for description |
b013c971 | 245 | - Fix appearance of notebook with non-top tabs under Windows Vista |
d4762753 | 246 | - Fixed bug with symbol resolving in wxStackWalker (Axel Gembe) |
46753a7c | 247 | - Fixed showing busy cursor for disabled windows and during wxExecute() |
c70557da | 248 | - Set the string of wxEVT_COMMAND_CHECKLISTBOX_TOGGLED events (Luca Cappa) |
48271822 | 249 | - Fix problems with timers on SMP machines in wxAnimationCtrl (Gennady) |
66160760 | 250 | |
94dd2287 VZ |
251 | wxGTK: |
252 | ||
d6a41cc7 | 253 | - Setting foreground colour of single line wxTextCtrl now works |
94dd2287 VZ |
254 | - More work on setting defaults in GNOME print dialogs. |
255 | - Also made landscape printing work as per wxMSW. | |
256 | - Add support for clipping in GNOME print backend. | |
257 | - Speed up wxBitmap::Rescale() | |
258 | - Add right button event for wxToolbar's tools (Tim Kosse) | |
1c871fe2 | 259 | - Don't unconditionally add wxCAPTION style to wxMiniFrame |
0a904ed2 | 260 | - Generate wxEVT_COMMAND_LIST_END_LABEL_EDIT event even if label didn't change |
85866f52 | 261 | - Fix WX_GL_STEREO attribute handling (Tristan Mehamli) |
a07bf2d0 | 262 | - Fix wxThread::SetPriority() when the thread is running (Christos Gourdoupis) |
5f77ee3b | 263 | - Fixed off by 1 bug in wxDC::GradientFillLinear() (Tim Kosse) |
94dd2287 VZ |
264 | |
265 | ||
b40bf35c VZ |
266 | 2.8.4 |
267 | ----- | |
268 | ||
defde6bc VZ |
269 | All: |
270 | ||
271 | - Fix bug in wxFileConfig when recreating a group (Steven Van Ingelgem) | |
2c17722e VZ |
272 | - Fix wxStringOutputStream::Write() in Unicode build when the argument |
273 | overlaps UTF-8 characters boundary | |
8bdc8a9c | 274 | - Account for lines without newline at the end in wxExecute() |
defde6bc | 275 | |
f4854380 VZ |
276 | All (Unix): |
277 | ||
278 | - Handle socket shutdown by the peer correctly in wxSocket (Tim Kosse) | |
defde6bc VZ |
279 | |
280 | All (GUI): | |
281 | ||
282 | - Allow status bar children in XRC (Edmunt Pienkowski) | |
781130bf | 283 | - Fix memory leak in wxWizard when not using sizers for the page layout |
9fcd0bf7 | 284 | - Added wxListCtrl::SetItemPtrData() |
884898a7 | 285 | - wxHTML: Apply table background colour between the cells too (Michael Hieke) |
f4854380 | 286 | |
b40bf35c VZ |
287 | wxMSW: |
288 | ||
289 | - Corrected wxStaticBox label appearance when its foreground colour was set: | |
290 | it didn't respect font size nor background colour then (Juan Antonio Ortega) | |
8145496b VZ |
291 | - Don't lose combobox text when it's opened and closed (Kolya Kosenko) |
292 | - Corrected GetChecked() for events from checkable menu items (smanders) | |
b40bf35c | 293 | - Fixed popup menus under Windows NT 4 |
61053de4 | 294 | - Fixed bug in wxThread::Wait() in console applications introduced in 2.8.3 |
223b7504 | 295 | - Support right-aligned/centered owner drawn items in wxListCtrl (troelsk) |
61053de4 | 296 | - Compilation fixed with WXWIN_COMPATIBILITY_2_6==0 |
721d1838 | 297 | - Fix wxComboCtrl colours under Windows Vista (Kolya Kosenko) |
b40bf35c | 298 | |
378b042b VZ |
299 | wxGTK: |
300 | ||
61053de4 | 301 | - Fix infinite loop when adding a wxStaticText control to a toolbar |
378b042b | 302 | - Fix wxNO_BORDER style for wxRadioBox (David Hart) |
5440a04f | 303 | - Fix wxTextCtrl::GetLineText() for empty lines (Marcin Wojdyr) |
378b042b | 304 | |
4ff9366d VZ |
305 | wxMac: |
306 | ||
307 | - Fix wxComboBox::SetSelection(wxNOT_FOUND) (Adrian Secord) | |
308 | ||
b5a3a81b VZ |
309 | wxUniv: |
310 | ||
311 | - Fix wxTextCtrl::SetSelection(-1, -1) to behave as documented (Anders Larsen) | |
75a788ee | 312 | - Fix wxComboBox::SetSelection(wxNOT_FOUND) |
3b6c95eb | 313 | - Fix setting background colour for controls with transparent background |
b5a3a81b | 314 | |
b40bf35c | 315 | |
6fa2dd0e VZ |
316 | 2.8.3 |
317 | ----- | |
318 | ||
cd632a86 VZ |
319 | All: |
320 | ||
321 | - Shut down the sockets gracefully (Sergio Aguayo) | |
9076e56d | 322 | - Fix extra indentation in wxHTML_ALIGN_JUSTIFY display (Chacal) |
cd632a86 VZ |
323 | |
324 | wxMac: | |
6fa2dd0e VZ |
325 | |
326 | - Corrected top border size for wxStaticBox with empty label (nusi) | |
327 | ||
5ab9534b VZ |
328 | wxMSW: |
329 | ||
330 | - Fixed wxFileName::GetSize() for large files | |
331 | ||
f005ea42 VZ |
332 | wxGTK: |
333 | ||
334 | - Fixed handling of accelerators using PageUp/Down keys | |
335 | ||
5ab9534b | 336 | |
e816f5c7 VZ |
337 | 2.8.2 |
338 | ----- | |
339 | ||
d95527de VZ |
340 | All: |
341 | ||
13dd765c JS |
342 | - Added wxSizerFlags::Shaped() and FixedMinSize() methods. |
343 | - Added wxCSConv::IsOk() (Manuel Martin). | |
344 | - Added wxDateTime::GetDateOnly(). | |
345 | - Made wxTextFile work with unseekable files again (David Hart). | |
346 | - Added wxCONFIG_USE_SUBDIR flag to wxFileConfig (Giuseppe Bilotta). | |
347 | - Added wxSearchCtrl::[Get|Set]DescriptiveText. | |
85bf679a | 348 | - Fixed detection of number of processors under Linux 2.6 |
886f61ca | 349 | - Fixed Base64 computation in wxHTTP (p_michalczyk) |
28bf2f3c | 350 | - Fix handling of wxSOCKET_REUSEADDR in wxDatagramSocket (troelsk) |
d95527de | 351 | |
69c928ef VZ |
352 | Unix Ports: |
353 | ||
354 | - Fixed crash in wxGetUserName() in Unicode build | |
355 | ||
e816f5c7 VZ |
356 | wxMSW |
357 | ||
13dd765c JS |
358 | - Fix lack of spin control update event when control lost focus. |
359 | - Corrected drawing of bitmaps for disabled menu items. | |
0d3997fd | 360 | |
c8db4e15 VZ |
361 | wxGTK |
362 | ||
363 | - Fix hang on startup when using GTK+ options in Unicode build | |
364 | ||
a0232aa5 RD |
365 | wxMac |
366 | ||
0d045709 | 367 | - Fix position of the centered windows (didn't take menu bar size into account) |
13dd765c | 368 | - Added support for the wxFRAME_FLOAT_ON_PARENT style. |
a0232aa5 | 369 | |
3aba082d VZ |
370 | wxX11: |
371 | ||
13dd765c | 372 | - Don't crash in wxWindow dtor if the window hadn't been really Create()d. |
3aba082d | 373 | |
750040fa WS |
374 | wxUniv: |
375 | ||
13dd765c | 376 | - Fixed wxComboBox always sorted. |
750040fa | 377 | |
e816f5c7 | 378 | |
265db88d VZ |
379 | 2.8.1 |
380 | ----- | |
381 | ||
5fe6c02b VZ |
382 | All: |
383 | ||
13dd765c JS |
384 | - Fix compilation with wxUSE_STL=1. |
385 | - wxGrid::GetBestSize() returns same size the grid would have after AutoSize(). | |
386 | - Added wxTreeCtrl::CollapseAll[Children]() and IsEmpty() (Francesco Montorsi). | |
387 | - Several RTL-related positioning fixes (Diaa Sami). | |
388 | - Fix wxConfig::DeleteGroup() for arguments with trailing slash (David Hart). | |
389 | - Fix memory leak in wxGrid::ShowCellEditControl() (Christian Sturmlechner). | |
5fe6c02b | 390 | |
0ec8d8f7 VZ |
391 | wxMSW: |
392 | ||
13dd765c JS |
393 | - Fixed compilation with Borland C++ in Unicode mode but without MSLU. |
394 | - Show taskbar icon menu on right button release, not press. | |
0ec8d8f7 | 395 | |
265db88d VZ |
396 | wxGTK: |
397 | ||
13dd765c | 398 | - Don't crash if command line is not valid UTF-8 (Unicode build only). |
265db88d | 399 | |
9c5fd8a3 VZ |
400 | wxUniv: |
401 | ||
13dd765c | 402 | - It is now possible to set background colour of wxStaticText. |
9c5fd8a3 | 403 | |
265db88d | 404 | |
9129836e VZ |
405 | 2.8.0 |
406 | ----- | |
407 | ||
408 | All: | |
409 | ||
13dd765c JS |
410 | - Added wxSearchCtrl (Vince Harron). |
411 | - wxCSConv("UTF-16/32") now behaves correctly, i.e. same as wxMBConvUTF16/32. | |
412 | - wxArrayString::Alloc() now works as reserve() and doesn't clear array contents. | |
bc2ce7a5 | 413 | - Fixed long standing bug in wxFileConfig groups renaming (Antti Koivisto). |
c20267d8 MW |
414 | - New option wxFS_READ | wxFS_SEEKABLE for wxFileSystem::OpenFile() to return |
415 | a stream that is seekable. | |
13dd765c JS |
416 | - Fixed bug in wxCalendarCtrl::HitTest() when clicking on month change arrows. |
417 | - Added wxWindow::GetWindowBorderSize() and corrected wxTreeCtrl::GetBestSize(). | |
418 | for a control with borders (Tim Kosse). | |
9129836e | 419 | |
077c7880 VZ |
420 | wxMSW: |
421 | ||
bc2ce7a5 | 422 | - Fixed version script problems when using configure with cygwin/mingw32. |
a7734bdf | 423 | - Use system default paper size for printing instead of A4. |
13dd765c | 424 | - Fix (harmless) assert in virtual list control under Vista. |
a7734bdf | 425 | - Fix colours when converting wxBitmap with alpha to wxImage (nusi). |
a7734bdf | 426 | |
927637fd VZ |
427 | wxGTK: |
428 | ||
13dd765c JS |
429 | - Allow dynamically changing most of text control styles. |
430 | - Enable use of libgnomeprintui by default in configure. | |
927637fd | 431 | |
077c7880 | 432 | |
432efcb0 RD |
433 | 2.7.2 |
434 | ----- | |
435 | ||
f8f6c91a MW |
436 | All: |
437 | ||
438 | - Added wxFFile overload to wxFileName::CreateTemporaryFileName(). | |
049e9de7 | 439 | - Added GetTempDir() to wxFileName and wxStandardPaths. |
f068697b MW |
440 | - Added wxTar streams. |
441 | - Added wxFilterFSHandler and wxArchiveFSHandler. | |
bc2ce7a5 | 442 | - Added wxString::ToLongLong() and ToULongLong(). |
f8f6c91a | 443 | |
0ec8d8f7 | 444 | All (GUI): |
432efcb0 RD |
445 | |
446 | - wxMemoryDC constructor now optionally accepts a wxBitmap parameter, | |
447 | calling SelectObject itself if a valid bitmap is passed. | |
19c9f36f RD |
448 | - Reverted wxBuffered[Paint]DC to pre 2.7.1 state, added |
449 | wxAutoBufferedPaintDC and wxAutoBufferedPaintDCFactory. | |
049e9de7 JS |
450 | - Renamed wxProgressDialog::UpdatePulse() to just Pulse(). |
451 | - Added wxCollapsiblePane (Francesco Montorsi). | |
452 | - Added wxSimpleHtmlListBox (Francesco Montorsi). | |
96202eaa JS |
453 | - Printing framework fixes by Robert J. Lang. Bugs fixed, |
454 | wxPrinterDC::GetPaperRect() and other functions added to allow | |
455 | easier printing implementation, and the documentation updated. | |
456 | - Many enhancements to wxRichTextCtrl including URL support, | |
457 | formatting and symbol dialogs, print/preview, and better list | |
458 | formatting. | |
bc2ce7a5 JS |
459 | - Support for loading TGA files added (Seth Jackson). |
460 | - Added wxTB_RIGHT style for right-aligned toolbars (Igor Korot). | |
0f11c233 | 461 | - wxHtmlWindow now generates events on link clicks (Francesco Montorsi). |
bc2ce7a5 | 462 | - wxHtmlWindow now also generates wxEVT_COMMAND_TEXT_COPY event. |
432efcb0 | 463 | |
2baa2b0e VZ |
464 | Unix Ports: |
465 | ||
466 | - Added autopackage for wxGTK and an example of using autopackage for a wx | |
049e9de7 JS |
467 | program (Francesco Montorsi). |
468 | ||
469 | wxGTK: | |
2baa2b0e | 470 | |
4ff4d045 | 471 | - More RTL work. |
049e9de7 JS |
472 | - Support wxALWAYS_SHOW_SB. |
473 | - Speed up MIME types loading. Only the GNOME database should be loaded under | |
474 | GNOME etc. For this, the code queries the X11 session protocol. | |
96202eaa | 475 | - wxCaret redraw problem during scrolling fixed. |
432efcb0 RD |
476 | |
477 | ||
e63f19ba VZ |
478 | 2.7.1 |
479 | ----- | |
480 | ||
d1af8e2d VZ |
481 | All: |
482 | ||
3306aec1 JS |
483 | - Added wxDir::FindFirst() (Francesco Montorsi). |
484 | - Added wxPlatformInfo class (Francesco Montorsi). | |
485 | - Added wxLocale::IsAvailable() (Creighton). | |
bc2ce7a5 JS |
486 | - Added Malay translations (Mahrazi Mohd Kamal). |
487 | - Added reference counting for wxVariant. | |
b7cacb43 | 488 | - For consistency, all classes having Ok() method now also have IsOk() one, use |
049e9de7 JS |
489 | of the latter form is preferred although the former hasn't been deprecated yet. |
490 | - Added wxFileName::Is(Dir|File)(Writ|Read|Execut)able() (Francesco Montorsi). | |
491 | - Added wxFileName::GetSize() and GetHumanReadableSize() (Francesco Montorsi). | |
492 | - Added wxSizer::Replace (Francesco Montorsi). | |
493 | - wxXmlDocument can now optionally preserve whitespace (Francesco Montorsi). | |
78041f2e VZ |
494 | - Added wxBookCtrl::ChangeSelection() and wxTextCtrl::ChangeValue() to provide |
495 | event-free alternatives to SetSelection() and SetValue() functions; see the | |
496 | "Events generated by the user vs programmatically generated events" paragraph | |
049e9de7 | 497 | in the "Event handling overview" topic for more info. |
d1af8e2d | 498 | |
e63f19ba VZ |
499 | All (GUI): |
500 | ||
3306aec1 JS |
501 | - Support for right-to-left text layout (started by Diaa Sami during Google Summer of |
502 | Code, with a lot of help from Tim Kosse and others). | |
049e9de7 JS |
503 | - wxAnimationCtrl added (Francesco Montorsi). |
504 | - Added wxAboutBox() function for displaying the standard about dialog. | |
3306aec1 JS |
505 | - Added wxID_PAGE_SETUP standard id. |
506 | - Added wxSize::IncBy() and DecBy() methods. | |
049e9de7 | 507 | - Added wxTextCtrl::IsEmpty(). |
3306aec1 JS |
508 | - Added file type parameter to wxTextCtrl::LoadFile, wxTextCtrl::SaveFile for |
509 | consistency with wxRichTextCtrl. | |
510 | - wxRichTextCtrl: fixed range out-by-one bug to be consistent with wxTextCtrl API, | |
511 | fixed some attribute bugs and added wxRichTextStyleComboCtrl. | |
049e9de7 JS |
512 | - Added wxWindow::IsDoubleBuffered(). |
513 | - Added wxHL_ALIGN_* flags to wxHyperlinkCtrl (Francesco Montorsi). | |
514 | - Added wxGauge::Pulse() and wxProgressDialog::UpdatePulse() (Francesco Montorsi). | |
e63f19ba | 515 | |
916eecaa VZ |
516 | wxMSW: |
517 | ||
3306aec1 | 518 | - Implemented wxComboBox::SetEditable(). |
a0020fcd | 519 | - wxSemaphore::Post() returns wxSEMA_OVERFLOW as documented (Christian Walther) |
3306aec1 JS |
520 | - Fixed a bug whereby static controls didn't use the correct text colour if the |
521 | parent's background colour had been set (most noticeable when switching to a | |
522 | high-contrast theme). | |
049e9de7 | 523 | - Respect wxBU_EXACTFIT style in wxToggleButton (Alexander Borovsky). |
916eecaa | 524 | |
95768535 MW |
525 | wxMac: |
526 | ||
527 | - Add parameter to the --enable-universal_binary configure option for the path | |
528 | to the SDK. | |
529 | ||
ab73fe8d VZ |
530 | wxGTK: |
531 | ||
3306aec1 JS |
532 | - Automatically use stock items for menu items with standard ids. |
533 | - Setting cursor now works for all controls. | |
049e9de7 | 534 | - Implemented right-to-left support. |
ae6a64b6 | 535 | - Implemented left indentation and tab stops support in wxTextCtrl (Tim Kosse). |
049e9de7 | 536 | - Fixed wxHTML rendering of underlined text of multiple words (Mart Raudsepp). |
ab73fe8d | 537 | |
b48f51ca VZ |
538 | wxUniv: |
539 | ||
049e9de7 | 540 | - Added wxTLW::UseNativeDecorations() and UseNativeDecorationsByDefault(). |
b48f51ca | 541 | |
e63f19ba | 542 | |
254e8e29 VZ |
543 | 2.7.0 |
544 | ----- | |
545 | ||
42d0df00 VZ |
546 | All: |
547 | ||
7f0d9d71 JS |
548 | - Added positional parameters support to wxVsnprintf() (Francesco Montorsi). |
549 | - wx(F)File, wxTextFile and wxInputStreams recognize Unicode BOM now. | |
550 | - Many fixes for UTF-16/32 handling in Unicode builds. | |
b83d533a | 551 | - wxLaunchDefaultBrowser() now supports wxBROWSER_NEW_WINDOW flag. |
3af9f2de | 552 | - Added wxStandardPaths::GetResourcesDir() and GetLocalizedResourcesDir() |
7f0d9d71 | 553 | - Added wxStandardPaths::GetDocumentsDir() (Ken Thomases). |
b83d533a | 554 | - Added wxStringTokenizer::GetLastDelimiter(); improved documentation. |
7f0d9d71 JS |
555 | - Fixed wxTextFile in Unicode build. |
556 | - Added possibility to specify dependencies for a wxModule. | |
c6bb9255 MW |
557 | - Speed improvements to wxRegEx when matching is done in a loop such as |
558 | during a search and replace. | |
559 | - Fix regerror and regfree name conficts when built-in regex and system regex | |
560 | are both used in the same program. | |
a5fa20cb JS |
561 | - Basic authentication supported added to wxHTTP. |
562 | - wxCondition::WaitTimeout() now returns correct value when timeout occurs. | |
563 | - Fixed occasional wxThread cleanup crash. | |
564 | - Bug in wxLogStream::DoLogString in Unicode builds fixed. | |
565 | - Added support for memo fields to wxODBC. | |
566 | - Fixed Unicode builds using SunPro compiler by defining__WCHAR_TYPE__. | |
567 | - wxFileName now also looks for TMPDIR on Unix. | |
568 | - Fixed build error in list.h with VC++ 2005. | |
569 | - Fixed wxODBC buffer overflow problem in Unicode builds. | |
2decc3bd | 570 | - Fixed wxSocketBase::InterruptWait on wxBase. |
b83d533a JS |
571 | - Important code cleanup (Paul Cornett). |
572 | - Added support for wxLongLong in wx stream classes (Mark Junker). | |
24f4fc23 | 573 | - wxSOCKET_REUSEADDR can be used with wxSocketClient. |
480abc8f | 574 | - Overloaded Connect() and SetLocal() methods for binding to local address/port. |
7f0d9d71 JS |
575 | - Albanian translation added (Besnik Bleta). |
576 | - Assert messages now show the function in which assert failed. | |
577 | - wxApp::OnAssertFailure() should now be used instead the old wxApp::OnAssert(). | |
578 | - Fixed several bugs in wxDateTime::ParseDate(). | |
968f291b | 579 | - The WXK*PRIOR and WXK*NEXT constants are now aliases for WXK*PAGEUP |
6fa9383b | 580 | and WXK*PAGEDOWN. If you have switch statements that use both |
968f291b | 581 | constants from a set then you need to remove the PRIOR/NEXT |
6fa9383b | 582 | versions in order to eliminate compiler errors. |
44c930eb JG |
583 | - Fixed bug where wxDateTime::Now() would sometimes return an incorrect value |
584 | the first time it was called. | |
7f0d9d71 JS |
585 | - Added wxString::rbegin() and rend(). |
586 | - Added wxString::EndsWith(). | |
635f2bad KH |
587 | - wxSocket::_Read continues reading from socket after exhausting pushback buffer. |
588 | Previously, only the buffer would be returned, even if more data was requested. | |
7f0d9d71 JS |
589 | - Added wxPowerEvent (currently MSW-only). |
590 | - Make wx-config compatible with Bourne shells. | |
3306aec1 JS |
591 | - Fixed wxDb::Open(wxDbConnectInf) when using connection string (Hellwolf Misty). |
592 | - Fixed crash in wxDb::Open() in Unicode build (Massimiliano Marretta). | |
593 | - Fixed wxTimeSpan::Format() for negative time spans. | |
594 | - Optionally count repeating wxLog messages instead of logging all (Lauri Nurmi). | |
42d0df00 | 595 | |
c6ece595 VZ |
596 | All (GUI): |
597 | ||
3306aec1 | 598 | - New AUI (Advanced User Interface) library for docking windows and much more. |
7f0d9d71 | 599 | - Added wxComboCtrl and wxOwnerDrawnComboBox (Jaakko Salli). |
03a37db9 | 600 | - Added wxTreebook (uses a wxTreeCtrl to control pages). |
7f0d9d71 JS |
601 | - Added wxColour/Dir/File/Font/PickerCtrls (Francesco Montorsi). |
602 | - Added wxDC::GradientFillLinear/Concentric(). | |
603 | - Added wxHyperlinkCtrl (Francesco Montorsi). | |
604 | - Added clipboard events (wxEVT_COMMAND_TEXT_COPY/CUT/PASTE). | |
605 | - Allow to reorder wxGrid columns by drag-and-drop (Santiago Palacios). | |
606 | - Added wxRadioBox::SetItemToolTip(). | |
607 | - Added support for CMYK JPEG images loading (Robert Wruck). | |
608 | - Added wxListCtrl::GetSubItemRect() and subitem hit testing (Agron Selimaj). | |
609 | - Added wxKeyEvent::GetModifiers(). | |
5d7836c4 | 610 | - Added wxDialog::SetEscapeId(). |
f7c40316 | 611 | - wxItemContainerImmutable::FindString unified (affects wxRadioBox, wxListBox, |
5d7836c4 JS |
612 | wxComboBox and wxChoice). |
613 | - wxWindow::Fit() now works correctly for frames and dialogs too. | |
614 | - Added access to the border size between pages and controller in book | |
615 | based controls (wxBookCtrlBase::Get/SetInternalBorder). | |
616 | - Added initial wxRichTextCtrl implementation. | |
d8fd7acb WS |
617 | - All book based controls (notebook, treebook etc.) share now the same |
618 | options for orientation (wxBK_TOP, wxBK_DEFAULT, ...) instead of duplicated | |
619 | wxLB_TOP, wxNB_TOP, wxCHB_TOP, wxTBK_TOP. | |
3db52265 JS |
620 | - Added parent window parameter to wxHelpController constructor |
621 | and added SetParentWindow/GetParentWindow. | |
60104cba | 622 | - wxMultiChoiceDialog uses now wxCheckListBox if possible, wxListBox if not. |
b83d533a | 623 | - Added wxBitmapButton::SetHoverBitmap(). |
60fef964 WS |
624 | - Access to titles through Get/SetTitle is available now only for top level |
625 | windows (wxDialog, wxFrame). | |
b83d533a | 626 | - Fixed memory leak of pending events in wxEvtHandler. |
7f0d9d71 | 627 | - Added wxRadioBox::IsItemEnabled/Shown(). |
3d941982 | 628 | - Added space after list item number in wxHTML. |
3c115835 | 629 | - Implemented <sub> and <sup> handling in wxHTML (based on patch |
b83d533a | 630 | by Sandro Sigala). |
f14d6dd1 | 631 | - Added caption parameter to wxGetFontFromUser and wxGetColourFromUser. |
7dd40b6f | 632 | - Added wxGetMouseState function. |
c3e5d4e2 JS |
633 | - Added wxHtmlHelpWindow, wxHtmlHelpDialog and wxHtmlModalHelp classes, |
634 | allowing HTML help to be embedded in an application. | |
a5fa20cb JS |
635 | - wxCalendarCtrl positioning and hit-testing fixes for dimensions other than |
636 | best size. | |
d9170b47 | 637 | - wxCalendarCtrl colour schema changed and adjusted to system settings. |
7f0d9d71 | 638 | - wxImage::Mirror() and GetSubBitmap() now support alpha (Mickey Rose). |
a5fa20cb JS |
639 | - More checking of image validity before loading into wxImage. |
640 | - Added wxImage::ConvertToGreyscale. | |
641 | - Added ability to use templates with static event tables | |
b83d533a JS |
642 | with BEGIN_EVENT_TABLE_TEMPLATEn() macros. |
643 | - Added play, pause, and state change events to wxMediaCtrl. | |
a5fa20cb | 644 | - Added double-buffering to wxVListBox and fixed a scrolling issue. |
fd0d619f | 645 | - Added wxToolbook (uses a wxToolBar to control pages). |
cc8bc5aa JS |
646 | - Added SetSheetStyle to wxPropertySheetDialog and allowed it to |
647 | behave like a Mac OS X settings dialog. | |
7cc1ad29 JS |
648 | - Added <disabled> XRC tag for wxToolBar elements and <bg> for wxToolBar itself. |
649 | - Fixed centering of top level windows on secondary displays. | |
650 | - Implemented wxDisplay::GetFromWindow() for platforms other than MSW. | |
b83d533a | 651 | - UpdateUI handler can now show/hide the window too (Ronald Weiss). |
0f30d8e3 | 652 | - More than one filter allowed in in wxDocTemplate filter. |
b83d533a JS |
653 | - Added wxListBox::HitTest(). |
654 | - Added wxDisplay::GetClientArea(). | |
894b93d3 | 655 | - Indices and counts in wxControlWithItems derived API are unsigned. |
bc55e31b VS |
656 | - Added support for links to wxHtmlListBox; use code has to override |
657 | wxHtmlListBox::OnLinkClicked() to take advantage of it. | |
7f0d9d71 | 658 | - Added an easier to use wxMenu::AppendSubMenu(). |
40989e46 | 659 | - wxString <-> wxColour conversions in wxColour class (Francesco Montorsi). |
7f0d9d71 JS |
660 | - Fixed bug with ignoring blank lines in multiline wxGrid cell labels. |
661 | - Added wxTextAttr::Merge() (Marcin Simonides). | |
662 | - Added wxTB_NO_TOOLTIPS style (Igor Korot). | |
663 | - Added wxGenericDirCtrl::CollapsePath() (Christian Buhtz). | |
70934138 | 664 | - Added wxTreeCtrl::ExpandAllChildren() (Christian Buhtz) |
6b8f5d30 | 665 | - Fixed 64-bit issue in wxNotebook causing segfaults on Tru64 Unix. |
7f0d9d71 JS |
666 | - Made it possible to associate context help to a region of a window. |
667 | - Added support for tabs in wxRichTextCtrl (Ashish More). | |
d8766675 | 668 | - Fixed problem with zoom setting in print preview. |
3b2cb431 | 669 | - Moved wxRichTextCtrl from the advanced library to its own. |
9804d540 | 670 | - wxNB_HITTEST_* flags renamed to wxBK_HITTEST_* to serve all book controls. |
07880314 | 671 | - Added wxTopLevelWindow::SetTransparent and CanSetTransparent, with |
50f3c41d | 672 | implementations (so far) for wxMSW and wxMac. |
3306aec1 JS |
673 |