]>
Commit | Line | Data |
---|---|---|
ae4bd80a RN |
1 | ------------------------------------------------------------------- |
2 | wxWidgets 2.5 Change Log - For more verbose changes, see the manual | |
3 | ------------------------------------------------------------------- | |
d643b80e | 4 | |
da865fdd WS |
5 | 2.6 |
6 | ----- | |
7 | ||
8 | All: | |
9 | ||
10 | - wxPathExists deprecated, use wxDirExists instead. | |
11 | ||
6ecfb2c8 VZ |
12 | wxMSW: |
13 | ||
14 | - fixed static box border when the label is empty | |
f05f427f | 15 | - fixed SetBackgroundColour() to change only label background, not entire box |
6ecfb2c8 | 16 | |
1a87edf2 WS |
17 | 2.5.5 |
18 | ----- | |
19 | ||
2a138829 JS |
20 | All: |
21 | ||
9f8d3f61 | 22 | - wxURI::GetUser() only returns the user name now, use GetUserInfo() to get |
b554cf63 | 23 | user and password as in 2.5.4; wxURI::GetPassword() added. |
afafd942 JS |
24 | - Added wxDebugReport class. |
25 | - Added wxTempFileOutputStream by Stas Sergeev. | |
26 | - Fixed wxDateTime::SetToWeekDayInSameWeek(Sun, Monday_First). | |
27 | - Added WXK_SPECIAL keycodes for special hardware buttons. | |
eba99da4 JS |
28 | - Fixed bug with wxFile::Seek(-1, wxFromCurrent). |
29 | - Added wxString/C array constructors to wxArrayString. | |
96461cc2 | 30 | - Added wxMemoryInputStream(wxMemoryOutputStream&) constructor (Stas Sergeev) |
265a3864 JS |
31 | |
32 | All (GUI): | |
33 | ||
2a138829 JS |
34 | - Added GetIcon, GetBitmap to wxImageList. wxGenericImageList's original |
35 | GetBitmap is renamed GetBitmapPtr. | |
7ab37822 | 36 | - Added XPM data constructor to wxImage. |
9f8d3f61 VZ |
37 | - Added style parameter to wxBufferedDC to allow buffering just the client, or |
38 | the whole virtual area. | |
8ddd9176 JS |
39 | - Restored ability to set a custom splitter sash size with SetSashSize. |
40 | - Fixed wxScrolledWindow sizer behaviour so that the virtual size | |
41 | isn't used to set the window size. | |
eba99da4 | 42 | - Added wxTE_BESTWRAP (based on patch by Mart Raudsepp). |
9ec0e7da | 43 | - wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED is now only sent once at the end of |
eba99da4 | 44 | splitter dragging and not after each CHANGING event (Jacobo Vilella Vilahur). |
21dc4be5 | 45 | - Added wxImage::IsTransparent() |
9f8d3f61 | 46 | |
f303447b VZ |
47 | Unix: |
48 | ||
eba99da4 | 49 | - Fixed build on Linux/AMD64. |
f303447b | 50 | |
0d97c090 VZ |
51 | wxMSW: |
52 | ||
eba99da4 JS |
53 | - Added "orient" parameter to wxMDIParentFrame::Tile(). |
54 | - wxTextCtrl with wxTE_RICH2 style now uses RichEdit 4.1 if available. | |
55 | - fix handling Alt-key events in wxComboBox (reported by Joakim Roubert). | |
56 | - wxWindow::Refresh() refreshes the window children as well. | |
57 | - Improved static box and radio box refresh and background colour | |
58 | handling (Jamie Gadd). | |
0d97c090 | 59 | |
9b0b5ba7 RR |
60 | wxGTK: |
61 | ||
eba99da4 | 62 | - Improved wxSystemSettings::GetMetric() to work better with X11 (Mart Raudsepp). |
b554cf63 JS |
63 | - Corrected wxListBox selection handling. |
64 | - Corrected default button size handling for different themes. | |
65 | - Corrected splitter sash size and look for different themes. | |
66 | - Fixed keyboard input for dead-keys. | |
eba99da4 | 67 | - Added support for more wrapping styles (Mart Raudsepp). |
f8bc53eb JS |
68 | - GTK2.4+ wxFileDialog reimplemented to support non-modal usage better, |
69 | and fix all known bugs (Mart Raudsepp). | |
b554cf63 JS |
70 | |
71 | wxMac: | |
72 | ||
73 | - Added wxFRAME_EX_METAL, wxDIALOG_EX_METAL for metallic-look windows. | |
2a138829 | 74 | |
1a87edf2 WS |
75 | wxPalmOS: |
76 | ||
afafd942 | 77 | - Native wxRadioBox implementation. |
b554cf63 JS |
78 | |
79 | wxWinCE: | |
80 | ||
81 | - Added wxNB_FLAT for flat-look notebooks on Windows CE. | |
9ceeecb9 JS |
82 | - Titlebar OK button on PocketPC now sends command set by SetAffirmativeId. |
83 | You can also override wxDialog::DoOK if you need more flexibility. | |
b554cf63 JS |
84 | - Dialog size now takes into account SIP or menubar. |
85 | - Panels more naturally white on PocketPC. | |
86 | - wxDIALOG_EX_CONTEXTHELP ignored on WinCE since it interferes | |
87 | with correct titlebar style. | |
9ceeecb9 JS |
88 | - Frames have Ctrl+Q accelerator set automatically, as per the |
89 | PocketPC guidelines | |
90 | - Documented issues in manual under wxWinCE topic. | |
afafd942 JS |
91 | - Made (Un)RegisterHotKey WinCE-aware. |
92 | - Sends wxEVT_HIBERNATE event. | |
93 | - Now fakes wxEVT_ACTIVATE_APP to be symmetrical with wxEVT_HIBERNATE. | |
94 | - Added wxTE_CAPITALIZE for CAPEDIT controls. | |
ec5f0c24 JS |
95 | - wxDialog::GetToolBar can be used if you need to add buttons |
96 | to the dialog's toolbar. | |
1a87edf2 | 97 | |
19b65a30 VZ |
98 | 2.5.4 |
99 | ----- | |
100 | ||
a22d4c5c VZ |
101 | All: |
102 | ||
97e490f8 VZ |
103 | - wxEvent and derived classes don't have public members any more, you must |
104 | use accessors methods now (Mart Raudsepp) | |
00375592 | 105 | - new classes for reading and writing ZIP files (M.J.Wetherell) |
70a7bd90 | 106 | - large files support for wxFFile (M.J.Wetherell) |
4116fac0 | 107 |