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