]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/changes.txt
added workaround for GTK+ focus_out bug (and removed Vaclav's mouse capture stack...
[wxWidgets.git] / docs / changes.txt
... / ...
CommitLineData
1wxWindows 2 Change Log
2----------------------
3
42.3.2
5-----
6
7wxBase:
8
9- wxRegEx class added
10- wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
11- more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
12 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
13 capabilities at runtime instead of in the configure script.
14
15All (GUI):
16
17- support for virtual list control added
18- column images in report mode of the list control
19- wxFindReplaceDialog added (based on work of Markus Greither)
20- wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
21- polygon support in wxRegion (Klaas Holwerda)
22
23wxHTML:
24
25- new HTML parser with correct parsing of character entities and fixes
26 to tags parsing
27
282.3.1
29-----
30
31wxBase:
32
33- Fixes for gcc 3.0
34- Fixed new charset detection code
35- ODBC Informix fixes (submitted by Roger Gammans)
36- Added ODBC date support to wxVariant
37- Added wxDir::Traverse
38- Added wxSingleInstanceChecker class
39- Removed redundant wxDebugContext functions using C++ streams,
40 so now standard stream usage should be unnecessary
41
42All (GUI):
43
44- Added wxDbGrid class for displaying ODBC tables
45- Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
46 user code can get access to the edit control when it is created, (to
47 push on a custom event handler for example)
48- Added wxTextAttr class and SetStyle, SetDefaultStyle and
49 GetDefaultStyle methods to wxTextCtrl
50- Added wxSingleInstanceChecker
51- Improvements to Tex2RTF
52- Added Paul and Roger Gammans' grid controls
53- Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
54 first-time saved
55- Fixed memory leak in textcmn.cpp
56- Various wxXML enhancements
57- Removed wxCLIP_CHILDREN style from wxSplitterWindow
58- Fixed memory leak in DoPrint, htmprint.cpp
59- Fixed calendar sample bug with using wxCommandEvent::GetInt()
60 instead of GetId()
61- Added wxDbGrid combining wxODBC classes with wxGrid
62- Added more makefiles and project files for contrib hierarchy
63
64wxMSW:
65
66- Fixed wxApp::ProcessMessage so controls don't lose their
67 accelerators when the accelerators are redefined elsewhere
68- Accelerators consisting of simple keystrokes (without control,
69 alt or shift) now work
70- Compile fixes for Watcom C++ added
71- Compile fixes for Cygwin 1.0 added
72- Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
73- Replaced wxYield() call in PopupMenu() by a much safer
74 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
75- Enter processing in wxSpinCtrl fixed
76- Fixed bug in determining the best listbox size
77- Fix for wxFrame's last focus bug
78- We now send iconize events
79- Fixed wxFrame::SetClientSize() with toolbar bug
80- Added mousewheel processing
81- Added wxSystemSettings::Get/SetOption so we can configure
82 wxWindows at run time; used this to implement no-maskblt option
83 in wxDC
84- Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
85 child frame styles are honoured
86
87wxGTK:
88
89- Fixed slider rounding bug
90- Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
91- We now send iconize events
92- Fix for discrepancies between wxNotebookEvent and wxNotebook
93 GetSelection() results
94
952.3.0
96-----
97
98wxBase:
99
100- fixed problem with wxURL when using static version of the library
101- wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
102- wxMimeTypesManager now can create file associations too (Chris Elliott)
103- wxCopyFile() respects the file permissions (Roland Scholz)
104