]>
Commit | Line | Data |
---|---|---|
ae4bd80a RN |
1 | ------------------------------------------------------------------- |
2 | wxWidgets 2.5 Change Log - For more verbose changes, see the manual | |
3 | ------------------------------------------------------------------- | |
d643b80e | 4 | |
1a87edf2 WS |
5 | 2.5.5 |
6 | ----- | |
7 | ||
2a138829 JS |
8 | All: |
9 | ||
9f8d3f61 | 10 | - wxURI::GetUser() only returns the user name now, use GetUserInfo() to get |
b554cf63 | 11 | user and password as in 2.5.4; wxURI::GetPassword() added. |
afafd942 JS |
12 | - Added wxDebugReport class. |
13 | - Added wxTempFileOutputStream by Stas Sergeev. | |
14 | - Fixed wxDateTime::SetToWeekDayInSameWeek(Sun, Monday_First). | |
15 | - Added WXK_SPECIAL keycodes for special hardware buttons. | |
265a3864 JS |
16 | |
17 | All (GUI): | |
18 | ||
2a138829 JS |
19 | - Added GetIcon, GetBitmap to wxImageList. wxGenericImageList's original |
20 | GetBitmap is renamed GetBitmapPtr. | |
7ab37822 | 21 | - Added XPM data constructor to wxImage. |
9f8d3f61 VZ |
22 | - Added style parameter to wxBufferedDC to allow buffering just the client, or |
23 | the whole virtual area. | |
8ddd9176 JS |
24 | - Restored ability to set a custom splitter sash size with SetSashSize. |
25 | - Fixed wxScrolledWindow sizer behaviour so that the virtual size | |
26 | isn't used to set the window size. | |
9f8d3f61 | 27 | |
f303447b VZ |
28 | Unix: |
29 | ||
b554cf63 | 30 | - Fixed build on Linux/AMD64 |
f303447b | 31 | |
9b0b5ba7 RR |
32 | wxGTK: |
33 | ||
34 | - Improved wxSystemSettings::GetMetric() to work better with X11. (Mart Raudsepp) | |
b554cf63 JS |
35 | - Corrected wxListBox selection handling. |
36 | - Corrected default button size handling for different themes. | |
37 | - Corrected splitter sash size and look for different themes. | |
38 | - Fixed keyboard input for dead-keys. | |
39 | ||
40 | wxMac: | |
41 | ||
42 | - Added wxFRAME_EX_METAL, wxDIALOG_EX_METAL for metallic-look windows. | |
2a138829 | 43 | |
1a87edf2 WS |
44 | wxPalmOS: |
45 | ||
afafd942 | 46 | - Native wxRadioBox implementation. |
b554cf63 JS |
47 | |
48 | wxWinCE: | |
49 | ||
50 | - Added wxNB_FLAT for flat-look notebooks on Windows CE. | |
9ceeecb9 JS |
51 | - Titlebar OK button on PocketPC now sends command set by SetAffirmativeId. |
52 | You can also override wxDialog::DoOK if you need more flexibility. | |
b554cf63 JS |
53 | - Dialog size now takes into account SIP or menubar. |
54 | - Panels more naturally white on PocketPC. | |
55 | - wxDIALOG_EX_CONTEXTHELP ignored on WinCE since it interferes | |
56 | with correct titlebar style. | |
9ceeecb9 JS |
57 | - Frames have Ctrl+Q accelerator set automatically, as per the |
58 | PocketPC guidelines | |
59 | - Documented issues in manual under wxWinCE topic. | |
afafd942 JS |
60 | - Made (Un)RegisterHotKey WinCE-aware. |
61 | - Sends wxEVT_HIBERNATE event. | |
62 | - Now fakes wxEVT_ACTIVATE_APP to be symmetrical with wxEVT_HIBERNATE. | |
63 | - Added wxTE_CAPITALIZE for CAPEDIT controls. | |
ec5f0c24 JS |
64 | - wxDialog::GetToolBar can be used if you need to add buttons |
65 | to the dialog's toolbar. | |
1a87edf2 | 66 | |
19b65a30 VZ |
67 | 2.5.4 |
68 | ----- | |
69 | ||
a22d4c5c VZ |
70 | All: |
71 | ||
97e490f8 VZ |
72 | - wxEvent and derived classes don't have public members any more, you must |
73 | use accessors methods now (Mart Raudsepp) | |
00375592 | 74 | - new classes for reading and writing ZIP files (M.J.Wetherell) |
70a7bd90 | 75 | - large files support for wxFFile (M.J.Wetherell) |
4116fac0 | 76 |