]> git.saurik.com Git - wxWidgets.git/blob - docs/changes.txt
moved verbose changes to manual
[wxWidgets.git] / docs / changes.txt
1 -------------------------------------------------------------------
2 wxWidgets 2.5 Change Log - For more verbose changes, see the manual
3 -------------------------------------------------------------------
4
5 2.5.4
6 -----
7
8 All:
9
10 - new classes for reading and writing ZIP files (M.J.Wetherell)
11 - Norwegian (Bokmål) translation added (Hans F. Nordhaug)
12 - wxDynamicLibrary::HasSymbol() added
13 - added wxTextInputStream::operator>>(wchar_t) for compilers which support this
14 - added wxURI, a class for dealing with Uniform Resource Identifiers
15 - changed wxURL to inherit from wxURI and provide assignment and comparison
16 - implemented wxConvUTF7 (modified patch from Fredrik Roubert)
17 - added versions of MB2WC and WC2MB for wxMBConv that for embedded null chars
18 - Unicode support in wxODBC is now fully implemented
19 - A new data type specific to wxWidgets called SQL_C_WXCHAR has been introduced.
20 SQL_C_WXCHAR should be used rather than SQL_C_CHAR to ensure transparent
21 behavior between Unicode and non-unicode builds
22 - BLOB example added to samples/db (thanks to Casey ODonnell)
23 - use wxStream::GetLength() instead of deprecated GetSize()
24 - wxGetOsDescription() is now more precise (Olly Betts)
25 - XRC supports system fonts and colours (Ray Gilbert)
26
27 All (GUI):
28
29 - recursive wxSizer::GetItem returns item of given window, sizer or nth index
30 - wxLayoutConstraints now use best size, not current size, for AsIs() condition
31 - wxSizer::Add/Insert etc. now returns pointer to wxSizerItem just added and this
32 item remembers its wxRect area (Brian A. Vanderburg II)
33
34 Unix:
35
36 - wxPuts() now correctly outputs trailing new line in Unicode build
37
38 wxGTK:
39
40 - fixed wxFileDialog::SetWildcard()
41
42 wxMac:
43
44 - wxDynamicLibrary::GetDllExt() now returns ".bundle", not ".dylib"
45 - wxDynamicLibrary::GetSymbol() now prepends underscore to the symbol name
46
47 wxMSW:
48
49 - fixed enhanced metafiles loading from files (Andreas Goebel)
50 - wxRadioButtons no longer have to be consecutive in a group
51
52 wxUniv:
53
54 - wxBU_... button align flags support
55 - vertical notebook orientation support
56 - 3rd state support for checkboxes
57
58
59 2.5.3
60 -----
61
62 All:
63
64 - support for huge (>2 Gb) files (Tim Kosse)
65 - number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten)
66 - fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem)
67 - fixed bug in wxDateTime::Set(jdn) when DST was in effect
68 - fixed fatal bug in wxString when wxUSE_STL==1 (Kurt Granroth)
69 - support msgids in charsets other than C and languages other than English
70 (based on patch by Stefan Kowski)
71 - added wxMicroSleep() and wxMilliSleep() replacing deprecated wxUsleep()
72 - basic UDP sockets support (Lenny Maiorani)
73 - fixed wxDateTime::GetWeekDayName() for some dates (Daniel Kaps)
74 - deprecated wxDateTime::SetToTheWeek() in favour of SetToWeekOfYear()
75 - active mode support in wxFTP (Randall Fox)
76 - sped up wxHTTP and wxFTP
77 - added wxStringInput/OutputStreams
78 - added wxFileConfig::Save(wxOutputStream)
79 - fixed wxString's behavior with inserted null characters
80
81 All (GUI):
82
83 - added wxWindow::MoveBefore/AfterInTabOrder() to change tab navigation order
84 - added wxTaskBarIcon::CreatePopupMenu which is now the recommended way
85 of showing a popup menu; calling wxTaskBarIcon::PopupMenu directly
86 is discouraged
87 - added ..._CMD_...(id) variants for wxGrid event table entry macros
88 - added wxWindow::Navigate for programmatic navigation to the next control
89 - wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set
90 - added wxKeyEvent::GetUnicodeKey()
91 - added wxKeyEvent::CmdDown() and wxMouseEvent::CmdDown()
92 - implemented wxListCtrl::FindItem() for non-MSW (Robin Stoll)
93 - added status bar fields styles support (Tim Kosse)
94 - added convenience functions wxSizer::AddSpacer() and
95 wxSizer::AddStretchSpacer() (as well as Prepend and Insert variants)
96 - added samples/splash
97 - added support for stock buttons
98 - added wxTopLevelWindow::RequestUserAttention()
99 - support for comma in contrib gizmo wxLEDNumberCtrl (Grant Likely)
100 - recursive wxSizer::Show for subsizer and return value if element was found
101 - added wxChoicebook control
102 - smoother time estimation updates in wxProgressDialog (Christian Sturmlechner)
103 - the XRC contrib library was moved to the core
104 - wx(Choice/List/Note)book controls send CHANG(ED/ING) events in SetSelection
105 - it is now possible to create a wxFont with given size in pixels (d2walter)
106 - added wxTopLevelWindow::IsActive()
107 - wxSystemSettings::GetMetric now returns -1 for metrics that are not
108 supported, instead of zero.
109
110 Unix:
111
112 - wxTaskBarIcon now supports freedesktop.org System Tray protocol
113 - security fixes to wxSingleInstanceChecker
114 - wx-config script was modified to allow choosing from multiple installed
115 builds of wxWidgets and to return flags/libs for selected libraries only
116 - wx-config has new --version-full option
117
118 wxCocoa:
119
120 - added Unicode compatibility layer for OSX 10.2
121 - fixed so that wxCocoa runs in OSX 10.2
122 - Tooltips now supported
123 - wxSound now supported
124 - wxDisplay now supported
125 - Some stock cursors now supported
126
127 wxMac:
128
129 - fixed MLTE text control GetLineText and GetLineLength on OSX
130 - added OSX wxTaskBarIcon implementation for the OSX Dock
131 - added Unicode compatibility layer for OSX 10.2
132 - wxGetKeyState now works with nearly all wx key codes
133
134 wxGTK:
135
136 - wxGTK uses GTK+ 2.x by default now, you have to pass --disable-gtk2 to
137 configure if you want to use GTK+ 1.2
138 - fixed many rendering artifacts and wrong colours with lots of GTK+ themes
139 - implemented wxColourDialog as native dialog
140 - implemented wxTextCtrl::HitTest() (GTK+ >= 2)
141 - implemented wxTextCtrl::ScrollLines() and ScrollPages for GTK+ 2.x
142 - wxTreeCtrl::GetCount() counts root as well now (compatible with MSW)
143 - added support for wxCHK_3STATE style (GTK2 only)
144 - implemented text underlining under GTK2
145 - implemented wxFRAME_NO_TASKBAR style (GTK >= 2.2)
146 - implemented support for wxSYS_DCLICK_?, wxSYS_DRAG_? and wxSYS_CURSOR_?
147 in wxSystemSettings::GetMetric (Mart Raudsepp)
148 - implemented wxTopLevel::IsMaximized() for GTK+2 and WMs that implement
149 freedesktop.org's wm-spec (Mart Raudsepp)
150 - wxEVT_CONTEXT_MENU is now generated for right mouse press, not release
151 - implemented alpha channel support in wxBitmap
152 - added native GTK+2 wxArtProvider implementation with ability to load
153 icons from icon theme in addition to recognized stock art
154 - fixed crash on 64 bit platforms (Paul Cornett)
155
156 wxMotif:
157
158 - added support for wxCHK_3STATE style (3 state checkbox)
159
160 wxMSW:
161
162 - fixed UNC paths handling in wxFileSystem (Daniel Nash)
163 - set wxKeyEvent::m_uniChar in Unicode build
164 - support for alpha channel in toolbar bitmaps (Jurgen Doornik)
165 - wxFileDialog can now be moved and centered (Randall Fox)
166 - restored (and improved) possibility to use wx with MFC broken in 2.5.2
167 - fixed wxTextCtrl::SetMaxLength for rich edit controls
168 - fixed flat style for toolbars under XP, Windows Classic style
169 - fixed truncation of transferred data in wxConnection under unicode build
170 - wxChoice and wxComboBox dropdown background can be set now too (Adrian Lupei)
171 - fixed wxMaximizeEvent generation in wxFrame
172 - don't send duplicate EVT_COMBOBOX events whenever selection changes any more
173 - implemented support for selecting printer bin (Steven Van Ingelgem)
174 - fixed wxListCtrl::SetSingleStyle() which was broken since a few releases
175 - fixed print setup problem (always uses default printer) in Unicode build
176
177 wxUniv/X11:
178
179 - fixed fatal crash when opening a menu
180
181 wxWinCE:
182
183 - added native WinCE driven smartphone wxTextCtrl implementation using spinners
184 - added native WinCE driven smartphone wxChoice implementation using spinners
185 - added automated but customizable handling of native WinCE driven smartphone menus
186 - fixed wxRadioBox and wxStaticBox
187
188 wxHTML:
189
190 - added support for nested index entries and index entries pointing to more
191 than one page to wxHtmlHelpController
192
193
194 2.5.2
195 -----
196
197 All:
198
199 - Hindi translation added (Dhananjaya Sharma)
200 - Brazilian Portuguese translation added (E. A. Tacao)
201 - wxDynamicCast() now uses static_cast<wxObject *> internally and so using it
202 with anything not deriving from wxObject will fail at compile time (instead
203 of run-time) now
204 - when wxUSE_STL == 1 and STL provides quasi-standard hash_map/hash_set,
205 wxHashMap/wxHashSet are just typedefs for them. This makes impossible
206 to forward declare these classes.
207
208 All (GUI):
209
210 - wxHtmlWindow now delays image scaling until rendering,
211 resulting in much better display of scaled images
212 - Added UpdateSize to wxSplitterWindow to allow layout while hidden
213 - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock)
214 - support for KOI8-U encoding added (Yuriy Tkachenko)
215 - The old wxADJUST_MINSIZE behaviour is now the default behaviour for
216 sizer items that are windows. This means that GetAdjustedBestSize
217 will now be called by default to determine the minimum size that a
218 window in a sizer should have. If you want to still use the initial
219 size (and not the BestSize) then use the wxFIXED_MINSIZE flag. When
220 windows are added to a sizer their initial size is made the window's
221 min size using SetSizeHints, and calls to wxSizer::SetItemMinSize
222 are also forwarded to SetSizeHints for window items.
223 - added wxRegEx::GetMatchCount()
224 - it is now possible to display images in wxHtmlListBox
225
226 wxMSW:
227
228 - wxWindow::Freeze()/Thaw() can now be nested
229 - Added wxSP_NO_XP_THEME style to wxSplitterWindow to switch off
230 XP theming (some applications look bad without 3D borders)
231 - wxMenuBar::GetLabelTop() doesn't include '&'s in the label any more
232 - wxRegConf couldn't read global settings without admin privileges and didn't
233 even try to do it by default -- now it does
234 - wxTaskBarIcon must be explicitly destroyed now, otherwise the application
235 won't exit even though there are no top level windows
236 - wxFileName::GetModificationTime() works with opened files too now
237 - wxDC::GetClippingBox() now works even for clipping regions created by Windows
238 - fixed wxFileDataObject in Unicode build (Alex D)
239 - subindented paragraphs support (Tim Kosse)
240
241 wxGTK:
242
243 - added support for wxTE_RIGHT and wxTE_CENTRE styles under GTK2 (Mart Raudsepp)
244
245 wxMotif:
246
247 - removed wxMenuItem::DeleteSubMenu()
248 - wxButtons use Motif default size, which is smaller than it used to be
249 and closer to wxMSW/wxGTK look. This can be disabled by setting
250 motif.largebuttons system option to 1 (see wxSystemOptions).
251
252 wxUniv/X11:
253
254 - implemented DrawRoundedRectangle() (clawghoul)
255
256 wxHTML:
257
258 - improved tables and lists layout algorithms (Tim Kosse)
259 - <div> handling fix (Xavier Nodet)
260
261 Unix:
262
263 - fixed priorities of mailcap entries (David Hart)
264 - added "wx-config --libs=std,<extra>" syntax (i.e. support for "std")
265
266 wxODBC:
267
268 - Full Unicode support is now available
269 - BLOB support is working
270
271
272 2.5.1
273 -----
274
275 All:
276
277 - event table macros now do some minimal type safety checks (Michael Sögtrop)
278 - added wxGzipInput/OutputStream, bug fixes in wxZlibStreams (M.J.Wetherell)
279 - wxDateTime::ParseDateTime() implemented (Linus McCabe)
280 - wxHTTP::GetResponse() added (David Nock)
281 - added conversions to/from UTF 16/32 LE/BE (Andreas Pflug)
282 - added wxTextInputStream::ReadChar() (M.J.Wetherell)
283 - added translation to Afrikaans (Petri Jooste)
284 - Spanish translations updated (Javier San Jose)
285 - added gettext plural forms support to wxLocale (Michael N. Filippov)
286 - wxFileName::Normalize(wxPATH_NORM_ALL) doesn't lower filename case any more
287 - wxFileName::Normalize(wxPATH_NORM_ENV_VARS) now works
288 - check if file exists in wxFileConfig::DeleteFile() (Christian Sturmlechner)
289 - when wxUSE_STL == 1 wxHashTable will not be implemented using wxHashMap
290 (as in 2.5.0).
291 - added some extra convenience functions to wxRect such as
292 GetBottomRight (Hajo Kirchhoff)
293 - changed built-in regex library to a Unicode-compatible version based
294 on TCL sources (Ryan Norton, M. J. Wetherell)
295 - added extra convenience functions to wxPoint for adding a
296 wxSize (Wlodzimierz Skiba)
297 - intermediate wxIPaddress class added to prepare for
298 wxIPV6address (Ray Gilbert)
299 - added overloaded constructors and Create() methods taking wxArrayString
300 for wxChoice, wxComboBox, wxListBox, wxRadioBox, wxCheckListBox,
301 wxSingleChoiceDialog, wxMultipleChoiceDialog
302 - renamed wxWave class to wxSound
303
304 All (GUI):
305
306 - added 3-state checkboxes for MSW/Mac (Dimitri Schoolwerth)
307 - added some support for C++ exceptions in the library (do read the manual!)
308 - added wxListCtrl::GetViewRect()
309 - added wxTextCtrl::MarkDirty()
310 - wxToolBar::ToggleTool() now works for radio buttons (Dag Ågren)
311 - wxListCtrl now sends an END_LABEL event if editing was cancelled, too
312 - bug in wxRect ctor from two [out of order] wxPoints fixed (Steve Cornett)
313 - status text is now restored after wxMenu help is shown in it
314 - bug in wxWindow::RemoveEventHandler() fixed (Yingjun Zhang)
315 - make it possible to use wxRTTI macros with namespaces (Benjamin I. Williams)
316 - wxColourDatabase API now uses objects instead of pointers
317 - added resolution option to JPEG image handler (Jeff Burton)
318 - added wxCalendarEvent::SetDate, wxCalendarEvent::SetWeekDay
319 - wxGenericDirCtrl now accepts multiple wildcards
320 - added focus event forwarding to wxGrid (Peter Laufenberg)
321 - fixed scrollbar problem in wxGrid (not showing scrollbars
322 when sizing smaller) (Shane Harper)
323 - dbbrowse demo fixed for Unicode (Wlodzimierz Skiba)
324 - added wxStatusBar support to XRC (Brian Ravnsgaard Riis)
325 - wxMenu::Append and etc. return a pointer to the wxMenuItem that was
326 added or inserted, or NULL on failure.
327 - using a -1 (wxID_ANY) for menu or toolbar item IDs will now generate new id
328 - added option to generate C++ headers to wxrc utility (Eduardo Marques)
329 - added wxDC::DrawPolyPolygon() for MSW/PS (Carl-Friedrich Braun)
330 - wxBufferedDC now allows to preserve the background and is documented
331 - added wxDC::GetPartialTextExtents
332
333 wxMSW:
334
335 - wxWidgets now builds under Win64
336 - fixed DDE memory leaks
337 - fixed wxTE_*WRAP styles handling
338 - wxTextCtrl::GetValue() works with text in non default encoding
339 - changed wxCrashReport to generate minidumps instead of text files
340 - wxRadioButtons are now checked when they get focus (standard behaviour)
341 - several fixes to owner drawn menu items (Christian Sturmlechner)
342 - wxGauge now supports full 32 bit range (Miroslav Rajcic)
343 - make it possible to give focus to the notebook tabs (Hajo Kirchhoff)
344 - MDI child frames are not always resizeable any more (Andrei Fortuna)
345 - fixed enumerating of entries/groups under '/' in wxRegConfig
346 - added wxSYS_ICONTITLE_FONT (Andreas Pflug)
347 - added wxPATH_NORM_SHORTCUT to wxFileName
348 - wxComboBox::GetValue within a wxEVT_COMMAND_TEXT_UPDATED event
349 should now pass the correct value even if the handler for
350 wxEVT_COMMAND_COMBOBOX_SELECTED changed the selection
351 - wxFileDialog now returns correct filter index for multiple-file dialogs
352 - added wxTextCtrl::HitTest()
353 - experimental wxURL implementation using WinInet functions (Hajo Kirchhoff)
354 - fixed several bugs in wxNotebook with wxNB_MULTILINE style
355 - accelerators are now initially hidden if appropriate (Peter Nielsen)
356 - background colour of a wxComboBox may now be set
357 - fixed wxListCtrl::GetItemText/BackgroundColour()
358 - Esc can now be used to close menus in the dialogs (Hartmut Honisch)
359 - Added msw.remap system option so colourful toolbar buttons
360 aren't mangled if you set it to 0. The default is 1
361 - Toolbar buttons are now centred if the bitmap size is smaller
362 than the specified default size
363 - Fixed a bug in wxSpinCtrl::DoGetBestSize that would make wxSpinCtrl too tall
364
365 wxGTK:
366
367 - fixes to wxTextCtrl scrolling under GTK2 (Nerijus Baliunas)
368 - fix for crash when using user-dashed lines (Chris Borgolte)
369 - fixed wxChoice::Delete() in presence of client data
370 - allow calling wxWindow::SetFont if window not yet created
371 - use same average character width as other ports when calculating dialog units
372 - fixed mouse wheel handling under GTK2 (Hugh Fisher)
373 - wxNotebook::HitTest() implemented (Daniel Lundqvist)
374 - memory leaks fixes in wxFileDialog (John Labenski)
375 - don't drop click events from triple clicks (Frode Solheim)
376
377 wxMac:
378
379 - use same average character width as other ports when calculating dialog units
380 - implemented handling of mouse wheel
381 - fix for long file names (longer than 32 characters) in file dialogs
382 - use Unix sockets for Mach-o builds
383
384 wxMotif:
385
386 - look for Motif 2.1 headers before Motif 1.2 ones in configure
387
388 wxHTML:
389
390 - wxHtmlHelpController now supports compressed MS HTML Help files (*.chm)
391 on Unix (Markus Sinner)
392
393 Unix:
394
395 - added XFree86 resolution changing using xf86vidmode extensions (Ryan Norton)
396 - implemented asynchronous playback in wxSound and added SDL backend in
397 addition to existing OSS one
398 - it is now possible to send PostScript to any output stream (Zoltan Kovacs)
399
400
401 2.5.0
402 -----
403
404 All:
405
406 - It is now possible to build several smaller libraries instead of single
407 huge wxWidgets library; wxBase is now dependency of GUI ports rather then
408 separately compiled library
409 - added wxDateSpan::operator==() and !=() (Lukasz Michalski)
410 - added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth)
411 - use true/false throughout the library instead of TRUE/FALSE
412 - wxStopWatch::Start() resumes the stop watch if paused, as per the docs
413 - added wxDirTraverser::OnOpenError() to customize the error handling
414 - added wxArray::SetCount()
415 - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
416 by default in Unicode mode
417 - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
418 - added wx/math.h (John Labenski)
419 - added Catalan translations (Pau Bosch i Crespo)
420 - added Ukrainian translations (Eugene Manko)
421 - fixed bug with deleting entries at root level in wxFileConfig
422 - chkconf.h now includes platform-specific versions (for MSW
423 and Mac) which contain some tests that were in setup.h
424 - added event sink argument to wxEvtHandler::Connect()
425 - added support for POST method and alt ports to wxHTTP (Roger Chickering)
426 - added wxSocket::IPAddress() (Chris Mellon)
427 - wxDataStreams can read/write many elements at once (Mickael Gilabert)
428 - added wxRecursionGuard class
429 - added wxThreadHelper class (Daniel Howard)
430 - Added STL support (--enable-stl for configure, wxUSE_STL in setup.h).
431 When enabled, wxString will derive from std::string, wxArray from,
432 std::vector, wxList from std::list. In addition wxHashTable will be
433 implemented in terms of wxHashMap.
434 - Added wxList::compatibility_iterator. Can be used like wxNode* (except
435 it can't be delete()d). It permits writing code which will work
436 both with wxUSE_STL==1 and wxUSE_STL==0.
437
438 wxBase:
439
440 - added Watcom makefiles
441 - fixed bug with searching in sorted arrays (Jürgen Palm)
442
443 All GUI ports:
444
445 - added wxVScrolledWindow, wxVListBox and wxHtmlLbox classes
446 - added wxListbook control
447 - added alpha channel support to wxImage
448 - added wxRenderer class allowing to customize the drawing of generic controls
449 - added wxCLOSE_BOX style for dialogs and frames
450 - added wxSplitterWindow and wxWizard handlers to XRC
451 - wxWizard is now sizer-friendly and may be made resizeable (Robert Vazan)
452 - added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski)
453 - added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
454 - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
455 - improved contrib/utils/convertrc parsing (David J. Cooke)
456 - fixed handling of URLs and filenames in wxFileSystem
457 - implemented alignment for wxGrid bool editor and renderer
458 - support wxListCtrl columns alignment for all platforms and not just MSW
459 - added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
460 - added wxTB_HORZ_TEXT style for MSW and GTK (Axel Schlueter)
461 - fixed user dash handling for MSW and GTK (Ken Edwards)
462 - WXR resources can now be used in Unicode builds
463 - it is now possible to use several wxFileHistory objects in the same menu
464 by giving them different base IDs (Dimitri Schoolwerth)
465 - Added wxTLW::SetShape with implementations for wxMSW and wxGTK (so far)
466 - FL: removed const from EnableTool parameters
467 - FL: signal child window when toolbar is closed
468 - In various places, changed tests for pathsep on last char of string to call
469 wxEndsWithPathSeparator(s)
470 - Added to defs.h a couple of macros (wxPtrToULong & wxULongToPtr)
471 - Minor improvements to document/view framework, including
472 delayed deletion of a document (until after the user has chosen
473 a new document), and more intelligent addition of filenames to
474 the file history, including not adding filenames if not using the
475 default extension for the template
476 - sped up wxImage::Scale using fixed point arithmetic (Wade Brainerd)
477 - Added BLOB support to wxDB (John Skiff)
478 - wxWizard now validates when pressing Back or Next
479 - Implemented wxNotebook::DoGetBestSize so Fit now works
480 - Added FindItemByPosition to wxMenu
481 - wxTimer now derives from wxEvtHandler and is its own owner object by default
482 - Extended wxTextAttr and added wxTextCtrl::GetStyle stub
483 to allow better rich text support.
484 - implemented wxFlexGridSizer::Show() (Wade Brainerd)
485 - Added m_ prefix to wxColourData and wxFontData members
486 - Added wxHtmlPrintout::AddFilter so HTML printing can be subject to
487 custom filters as well as HTML viewing.
488 - Moved wxApp::SendIdleEvents and wxApp::ProcessIdle into common code.
489 - wxWindow::OnInternalIdle is now used in all ports, and ensures that
490 user OnIdle events do not interfere with crucial internal processing.
491 - wxWindow::UpdateWindowUI is now a documented function that
492 sends wxUpdateUIEvents, and can be overridden. It has a helper function
493 DoUpdateWindowUI for taking appropriate wxUpdateUIEvent action.
494 - Added functions to wxUpdateUIEvent: Set/GetMode, Set/GetUpdateInterval,
495 CanUpdate, to assist with optimising update event frequency.
496 - Added functions to wxIdleEvent: Set/GetMode, CanSend, to
497 determine whether a window should receive idle events.
498 - Added wxWS_EX_PROCESS_IDLE, wxWS_EX_PROCESS_UI_UPDATES window
499 styles for use with conservative idle and update event modes.
500 - send menu update events only when a menu is about to be used (MSW/GTK)
501 - improved event processing performance (Hans Van Leemputten)
502 - added wxMirrorDC class
503 - printing improvements: GetPageInfo() gets called after the DC has
504 been set and after OnPreparePrinting() has been called so it can
505 report the number of pages accurately; doesn't try to set
506 number of pages in print dialog, in common with other Windows apps;
507 wxHTML easy printing's preview shows number of pages
508 correctly; preview scrollbars are set correctly; keyboard navigation
509 improved
510
511 Unix:
512
513 - fixed compilation on systems with zlib installed but < 1.1.3 version
514 - fixed compilation on Solaris 7 with large files support enabled
515 - added wxTaskBarIcon implementation for X11
516 - added support for GNU/Hurd in configure
517 - wxLocale::Init now tries to set .utf8 locale in Unicode mode (Andreas Pflug)
518
519 Generic controls:
520
521 - implemented wxListCtrl::Refresh() (Norbert Berzen)
522 - support adding/removing columns dynamically (Donald C. Taylor)
523 - wxToolBarSimple, property list classes, wxTreeLayout moved
524 to contrib/src/deprecated
525
526 wxGTK:
527
528 - added support for label mnemonics to GTK+2 build (Michael Moss)
529 - added native wxMessageDialog implementation for GTK+2 build
530 - fixed wxMenu::Remove (John Skiff and Benjamin Williams)
531 - made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace
532 - fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and
533 window managers that support _NET_WM_STATE_FULLSCREEN
534 - added wxEVT_MENU_OPEN event generation
535 - fixed bug in generic file selector causing incomplete file extensions to
536 be appended to filenames with no extension
537 - added wxTextCtrl::SetSelection implementation for GTK+ 2
538 - fixed wxTextCtrl::IsEditable() for GTK+ 2
539 - fixed wxStaticText alignment for GTK+ 2 (Kevin Hock)
540 - don't consume 100% CPU when showing a popup menu
541
542 wxMac:
543
544 - generate wxEVT_SCROLL_THUMBRELEASE and wxEVT_SCROLLWIN_THUMBRELEASE events
545 - generate wxEVT_MENU_OPEN and wxEVT_MENU_CLOSE events
546
547 wxMSW:
548
549 - possibility to use DIBs for wxBitmap implementation (Derry Bryson)
550 - added wxCrashReport
551 - wxStaticBitmap doesn't stretch its bitmap any longer (like other ports)
552 - support for accelerator keys in the owner drawn menus (Derry Bryson)
553 - wxCaret::SetSize() doesn't hide the caret any longer as it used to
554 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
555 - fixed bugs in wxThread::Wait() and IsAlive()
556 - fixed bug with wxTR_EDIT_LABELS not working with wxTR_MULTIPLE
557 - fixes for compilation with OpenWatcom and DigitalMars compilers
558 - fixed wxStaticText best size calculation (was wrong by '&' width)
559 - fixed calling wxFrame::Maximize(FALSE) before the window is shown
560 - added wxNotebook::HitTest() (Otto Wyss)
561 - libraries built with makefile.g95 have a _min or _cyg suffix (MinGW/Cygwin)
562 - when using DLL, wxLocalFSHandler was not being exported
563 - fixed problem with wxEvtHandler object not removed from wxPendingEvents
564 - Windows XP manifest is now included in wx.rc; it is no longer necessary
565 to ship .exe.manifest file with applications to support XP themes
566 - wxLocale::Init no longer reports error if trying to set Unicode-only locale
567 or if user's default locale is Unicode-only
568 - improved border handling under Windows XP
569 - partial fix for wxNotebook pages looking bad under XP: wxUSE_UXTHEME
570 enables XP theme engine code, and wxUSE_UXTHEME_AUTO tells
571 wxWidgets to use the theme tab colour for control backgrounds.
572 - disable wxNB_RIGHT, wxNB_LEFT, wxNB_BOTTOM notebook styles under Windows XP
573 - fixed release mode build with VC 7.x (Martin Ecker)
574 - added support for wxALWAYS_SHOW_SB style
575 - you don't need to add opengl32.lib when using VC++ now (David Falkinder)
576
577 wxMotif:
578
579 - made wxFileDialog behaviour with complex wildcards more sensible (it still
580 does not support all the features other ports do); refer to wxFileDialog
581 documentation for a detailed explanation
582 - implemented wxWakeUpIdle
583 - for Motif 2.0, used the native combobox widget instead of the GPL'd
584 xmcombo; xmcombo is still used for Motif 1.x and Lesstif when compiled
585 with Motif 1.x compatibility
586 - implemented wxToggleButton
587 - wxRadioBox and wxStaticBox now use the default shadow (border) style
588 instead of a sunken border
589 - implemented wxBitmapDataObject
590 - finished wxClipboard implementation
591
592 wxUniv:
593
594 - controls in toolbars now supported
595
596 wxHTML:
597
598 - added text selection to wxHtmlWindow
599 - added SetFonts to HTML printing classes (Adrian Philip Look)
600 - it is now possible to force page break when printing by inserting
601 <div style="page-break-before:always"> into the markup (Greg Chicares)
602 - wxHtmlWindow now uses double buffering to prevent flicker
603
604
605 OLD CHANGES
606 ===========
607
608 INCOMPATIBLE CHANGES SINCE 2.2.x
609 ================================
610
611 Please take a few minutes to read the following list, especially
612 paying attention to the most important changes which are marked
613 with '!' in the first column.
614
615 Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2
616 is defined to 1 if you wish to retain maximal compatibility with 2.2
617 series -- however you are also strongly encouraged to try to compile
618 your code without this define as it won't be default any longer in
619 2.6 release.
620
621 NB: if you want to build your program with different major versions
622 of wxWidgets you will probably find the wxCHECK_VERSION() macro
623 (see the documentation) useful.
624
625
626 wxBase:
627
628 ! wxArray<T>::Remove(size_t) has been removed to fix compilation problems
629 under 64 bit architectures, please replace it with RemoveAt() in your
630 code.
631
632 ! wxArray<T> macros have been changed to fix runtime problems under 64 bit
633 architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
634 used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
635 arrays containing non-pointers.
636
637 - wxObject::CopyObject() and Clone() methods were removed because they
638 simply don't make sense for all objects
639
640 - wxEvent now has a pure virtual Clone() method which must be implemented
641 by all derived classes, if you have user-defined event classes please
642 add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
643
644 - small change to wxStopWatch::Pause() semantics, please see the documentation
645
646 - unlikely but possible incompatibility: the definition of TRUE has changed
647 from "1" to "(bool)1" (and the same thing for FALSE), so the code which
648 could be erroneously compiled previously such as doing "return FALSE" from
649 a function returning a pointer would stop compiling now (but this change
650 is not supposed to have any effects on valid code)
651
652 - another minor change: wxApp::OnAssert() has a new "cond" argument, you
653 must modify YourApp::OnAssert() signature if you were using it to override
654 the default assert handling.
655
656 All (GUI):
657
658 ! the event type constants are not constants any more but are dynamically
659 allocated during run-time which means that they can't be used as case labels
660 in the switch()es, you must rewrite them to use if()s instead
661
662 You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
663 but this is strongly discouraged, please consider changing your code
664 instead!
665
666 ! wxDialog does not derive from wxPanel any longer - if you were using it in
667 your code, please update it. The quick fix for the most cases is to replace
668 the occurrences of wxPanel with wxWindow.
669
670 ! if you handle (and don't skip) EVT_KEY_DOWN, the EVT_CHAR event is not
671 generated at all, so you must call event.Skip() in your OnKeyDown() if
672 you want to get OnChar() as well
673
674 - in general, the key events sent for the various non ASCII key combinations
675 have been changed to make them consistent over all supported platforms,
676 please see the wxKeyEvent documentation for details
677
678 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
679 have changed (to fix some unfortunate clashes), please check your code to
680 ensure that no tests for wxYES or wxNO are broken: for example, the following
681 will *NOT* work any longer:
682
683 if ( flags & wxYES_NO )
684 ... do something ...
685 if ( flags & wxYES )
686 ... do something else ...
687
688 - static wxWizard::Create() doesn't exist any more, the wizards are created
689 in the same way as all the other wxWindow objects, i.e. by directly using
690 the ctor
691
692 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
693
694 - wxGridCellAttrProvider class API changed, you will need to update your code
695 if you derived any classes from it
696
697 - wxImage::ComputeHistogram()'s signature changed to
698 unsigned long ComputeHistogram(wxImageHistogram&) const
699
700 - wxEvtHandler cannot be copied/assigned any longer - this never worked but
701 now it results in compile-time error instead of run-time crashes
702
703 - WXK_NUMLOCK and WXK_SCROLL keys no longer result in EVT_CHAR() events,
704 they only generate EVT_KEY_DOWN/UP() ones
705
706 - the dialogs use wxApp::GetTopWindow() as the parent implicitly if the
707 parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this
708 from happening
709
710 - several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode:
711 for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
712 and GetCount() instead of Number() in many classes
713
714 - wxCmdLineParser does not use wxLog to output messages anymore.
715 to obtain the previous behaviour, add
716 wxMessageOutput::Set(new wxMessageOutputLog); to your program
717 (you will need to #include <wx/msgout.h>)
718
719 wxMSW:
720
721 ! build system changed: setup.h is not a static file in include/wx any more
722 but is created as part of the build process under lib/<toolkit>/wx
723 where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
724 the include path in your make/project files appropriately. Furthermore,
725 xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
726 class. You'll need to remove all references to xpm.lib from your
727 make/project files. Finally, the library names have changed as well and now
728 use the following consistent naming convention: wxmsw[ver][u][d].(lib|dll)
729 where 'u' appears for Unicode version, 'd' -- for the debug one and version
730 is only present for the DLLs builds.
731
732 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
733 style to avoid it
734
735 - all overloads of wxDC::SetClippingRegion() combine the given region with the
736 previously selected one instead of replacing it
737
738 - wxGetHomeDir() uses HOME environment variable and if it is set will not
739 return the programs directory any longer but its value (this function has
740 never been meant to return the programs directory anyhow)
741
742 - wxHTML apps don't need to include wx/html/msw/wxhtml.rc in resources file
743 anymore. The file was removed from wxMSW
744
745
746 Unix ports:
747
748 ! You should use `wx-config --cxxflags` in your makefiles instead of
749 `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
750 and the compiler flags for C++ files only, CFLAGS should still be used
751 to compile pure C files.
752
753
754 wxThread and related classes:
755
756 - The thread-related classes have been heavily changed since 2.2.x versions
757 as the old code had many serious problems. This could have resulted in
758 semantical changes other than those mentioned here, please review use of
759 wxThread, wxMutex and wxCondition classes in your code.
760
761 ! wxCondition now *must* be used with a mutex, please read the (updated) class
762 documentation for details and revise your code accordingly: this change was
763 unfortunately needed as it was impossible to ensure the correct behaviour
764 (i.e. absence of race conditions) using the old API.
765
766 - wxMutex is not recursive any more in POSIX implementation (it hasn't been
767 recursive in 2.2.x but was in 2.3.1 and 2.3.2), please refer to the class
768 documentation for the discussion of the recursive mutexes.
769
770 - wxMutex::IsLocked() doesn't exist any more and should have never existed:
771 this is was unique example of a thread-unsafe-by-design method.
772
773
774 OTHER CHANGES
775 =============
776
777 2.4.0
778 -----
779
780 wxMSW:
781
782 - fixed loss of client data in wxChoice::SetString()
783
784 2.3.4
785 -----
786
787 All:
788
789 - added (partial) Indonesian translations (Bambang Purnomosidi D. P.)
790 - added wxSizer::Show()/Hide() (Carl Godkin)
791 - fixed bugs in wxDateTime::SetToWeekDay()/GetWeek()
792
793 Unix (Base/GUI):
794
795 - minor OpenBSD compilation/linking fixes, now builds OOB under OpenBSD 3.1
796 - don't include -I/usr/include nor -I/usr/local/include in wx-config output
797 - shared library symbols are now versioned on platforms that support it (Linux)
798
799 wxGTK:
800 - Further work for GTK 2.0 and Unicode support.
801 - Addition of native frame site grip.
802
803 wxX11:
804 - Unicode support through Pango library.
805
806 wxMSW:
807
808 - fixed crashes in wxListCtrl under XP
809 - added context menu for rich edit wxTextCtrl
810
811 wxHTML:
812
813 - fixed wxHTML to work in Unicode build
814
815 2.3.3
816 -----
817
818 wxBase:
819
820 - building wxBase with Borland C++ is now supported (Michael Fieldings)
821 - wxSemaphore class added, many fixed to wxCondition and wxThread (K.S. Sreeram)
822 - fixes to the command line parsing error and usage messages
823 - modified wxFileName::CreateTempFileName() to open the file atomically
824 (if possible) and, especially, not to leak the file descriptors under Unix
825 - memory leak in wxHTTP fixed (Dimitri Schoolwerth)
826 - fixes to AM_PATH_WXCONFIG autoconf macro
827 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
828 after (non standard) STL hash_map
829 - wxLocale now works in Unicode mode
830 - wxLocale can now load message catalogs in arbitrary encoding
831 - added wxShutdown() function (Marco Cavallini)
832 - added wxEXPLICIT macro
833 - IPC classes improved and memory leaks fixed (Michael Fielding).
834 Global buffer removed, duplication in docs removed
835 - debug new/free implementations made thread-safe
836
837 Unix (Base/GUI):
838
839 - wxWidgets may be built using BSD and Solaris (and possibly other) make
840 programs and not only GNU make
841 - wxTCP-based IPC classes now support communicating over Unix domain sockets
842 - wxWidgets may be built as a dynamic shared library under Darwin / Mac OS X
843 lazy linking issues have been solved by linking a single module (.o) into
844 the shared library (two step link using distrib/mac/shared-ld-sh)
845 - fixed thread priority setting under Linux
846
847 All (GUI):
848
849 - it is now possible to set the icons of different sizes for frames (e.g. a
850 small and big ones) using the new wxIconBundle class
851 - implemented radio menu items and radio toolbar buttons
852 - added possibility to show text in the toolbar buttons
853 - added wxArtProvider class that can be used to customize the look of standard
854 wxWidgets dialogs
855 - significantly improved native font support
856 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
857 wxHashTable
858 - added IFF image handler
859 - fixed using custom renderers in wxGrid which was broken in 2.3.2
860 - support for multiple images in one file added to wxImage
861 (TIFF, GIF and ICO formats)
862 - support for CUR and ANI files in wxImage added (Chris Elliott)
863 - wxTextCtrl::GetRange() added
864 - added wxGetFontFromUser() convenience function
865 - added EVT_MENU_OPEN and EVT_MENU_CLOSE events
866 - added Hungarian translations (Janos Vegh)
867 - added wxImage::SaveFile(filename) method (Chris Elliott)
868 - added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
869 for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
870 - added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
871 - added wxTextCtrl::EmulateKeyPress()
872 - Added wxMouseCaptureChangedEvent
873 - Added custom character filtering to wxTextValidator
874 - wxTreeCtrl now supports incremental keyboard search
875 - wxMessageOutput class added
876 - wxHelpProvider::RemoveHelp added and called from ~wxWindowBase
877 so that erroneous help strings are no longer found as the hash
878 table fills up
879 - updated libpng from 1.0.3 to 1.2.4
880 - Added wxView::OnClosingDocument so the application can do cleanup.
881 - generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
882 renamed to wxGenericImageList, so they can be used on wxMSW
883 (Rene Rivera).
884 - Added wxTreeEvent::IsEditCancelled so the application can tell
885 whether a label edit was cancelled.
886 - added static wxFontMapper::Get() accessor
887
888 wxMSW:
889
890 - small appearance fixes for native look under Windows XP
891 - fixed the bug related to the redrawing on resize introduced in 2.3.2
892 - fixed multiple bugs in wxExecute() with IO redirection
893 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
894 - huge (40*) speed up in wxMask::Create()
895 - changing wxWidgets styles also changes the underlying Windows window style
896 - wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
897 - fixed flicker in wxTreeCtrl::SetItemXXX()
898 - fixed redraw problems in dynamically resized wxStaticText
899 - improvements to wxWidgets applications behaviour when the system colours
900 are changed
901 - choose implicit parent for the dialog boxes better
902 - fixed wxProgressDialog for ranges > 65535
903 - wxSpinButton and wxSpinCtrl now support full 32 bit range (if the version
904 of comctl32.dll installed on the system supports it)
905 - wxFontEnumerator now returns all fonts, not only TrueType ones
906 - bugs in handling wxFrame styles (border/caption related) fixed
907 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
908 recursion any more
909 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
910 - the separators are not seen behind the controls added to the toolbar any more
911 - wxLB_SORT style can be used with wxCheckListBox
912 - wxWindowDC and wxClientDC::GetSize() works correctly now
913 - Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can be used in FL
914 - Multiline labels in buttons are now supported (simply use "\n" in the label)
915 - Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it
916 has the capture before release it.
917 - fixed bugs in multiple selection wxCheckListBox
918 - default button handling is now closer to expected
919 - setting tooltips for wxSlider now works
920 - disabling a parent window also disables all of its children (as in wxGTK)
921 - multiple events avoided in wxComboBox
922 - tooltip asserts avoided for read-only wxComboBox
923 - fixed a race condition during a thread exit and a join
924 - fixed a condition where a thread can hang during message/event processing
925 - increased space between wxRadioBox label and first radio button
926 - don't fail to register remaining window classes if one fails to register
927 - wxFontDialog effects only turned on if a valid colour was
928 provided in wxFontData
929 - Added wxTE_LEFT, wxTE_CENTRE and wxTE_RIGHT flags for text control alignment.
930 - Bitmap printing uses 24 bits now, not 8.
931
932 wxGTK:
933
934 - wxDirDialog now presents the file system in standard Unix way
935 - wxButton now honours wxBU_EXACTFIT
936 - wxStaticBox now honours wxALIGN_XXX styles
937 - added support for non alphanumeric simple character accelerators ('-', '=')
938 - new behaviour for wxWindow::Refresh() as it now produces a delayed refresh.
939 Call the new wxWindow::Update() to force an immediate update
940 - support for more SGI hardware (12-bit mode among others)
941 - fixed wxDC::Blit() to honour source DC's logical coordinates
942 - implemented wxIdleEvent::RequestMore() for simple background tasks
943 - implemented wxChoice::Delete()
944 - fixed bad memory leak in wxFileDialog (Chris Elliott)
945 - made internal GC pool dynamically growable
946 - added GTK+ 2 and Unicode support
947
948 wxMotif:
949
950 - improved colour settings return values (Ian Brown)
951 - improved border style handling for wxStaticText (Ian Brown)
952 - improved toolbar control alignment
953 - implemented wxSpinButton
954 - implemented wxCheckListBox
955 - fixed wxSpinCtrl and wxStaticLine when used with sizers
956 - wxStaticBitmap now shows transparent icons correctly
957
958 wxX11:
959
960 - added generic MDI implementation (Hans Van Leemputten)
961 - first cut at wxSocket support (not yet working)
962
963 wxMac:
964
965 - Many improvements
966
967 wxOS2:
968
969 - First alpha-quality release
970
971 wxHTML:
972
973 - fixed wxHtmlHelpController's cache files handling on big endian machines
974 - added blocking and redirecting capabilities to wxHtmlWindow via
975 wxHtmlWindow::OnOpeningURL()
976 - fixed alignment handling in tables
977 - fixed <font face="..."> handling to be case insensitive
978
979 2.3.2
980 -----
981
982 New port: wxUniv for Win32/GTK+ is now included in the distribution.
983
984 wxBase:
985
986 - wxRegEx class added
987 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
988 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
989 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
990 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
991 capabilities at runtime instead of in the configure script.
992
993 All (GUI):
994
995 - support for virtual list control added
996 - column images in report mode of the list control
997 - wxFindReplaceDialog added (based on work of Markus Greither)
998 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
999 - polygon support in wxRegion (Klaas Holwerda)
1000 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
1001 - fixed bug with using wxExecute() to capture huge amounts of output
1002 - new wxCalendarCtrl styles added (Søren Erland Vestø)
1003 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
1004 - wxDirSelector() added (Paul A. Thiessen)
1005 - wxGrid cell editing veto support (Roger Gammans)
1006 - wxListCtrl ITEM_FOCUSED event added
1007 - support for ICO files in wxImage added (Chris Elliott)
1008 - improvements to wxDragImage (Chuck Messenger)
1009
1010 wxMSW:
1011
1012 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
1013 - new library naming convention under VC++ -- please change your application
1014 project files
1015
1016 wxGTK:
1017
1018 - fixed popup menu positioning bug
1019 - fixed the edit function for wxListCtrl (Chuck Messenger)
1020 - fixed the key-hitting events for wxListCtrl and wxTreeCtrl, so they
1021 correctly return the key which was pressed (Chuck Messenger)
1022
1023 wxMac:
1024
1025 - support for configuration and build under Mac OS X using the Apple Developer
1026 Tools
1027
1028 wxHTML:
1029
1030 - new HTML parser with correct parsing of character entities and fixes
1031 to tags parsing
1032 - added support for animated GIFs
1033
1034 2.3.1
1035 -----
1036
1037 wxBase:
1038
1039 - Fixes for gcc 3.0
1040 - Fixed new charset detection code
1041 - ODBC Informix fixes (submitted by Roger Gammans)
1042 - Added ODBC date support to wxVariant
1043 - Added wxDir::Traverse
1044 - Added wxSingleInstanceChecker class
1045 - Removed redundant wxDebugContext functions using C++ streams,
1046 so now standard stream usage should be unnecessary
1047
1048 All (GUI):
1049
1050 - Added wxDbGrid class for displaying ODBC tables
1051 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
1052 user code can get access to the edit control when it is created, (to
1053 push on a custom event handler for example)
1054 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
1055 GetDefaultStyle methods to wxTextCtrl
1056 - Added wxSingleInstanceChecker
1057 - Improvements to Tex2RTF
1058 - Added Paul and Roger Gammans' grid controls
1059 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
1060 first-time saved
1061 - Fixed memory leak in textcmn.cpp
1062 - Various wxXML enhancements
1063 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
1064 - Fixed memory leak in DoPrint, htmprint.cpp
1065 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
1066 instead of GetId()
1067 - Added wxDbGrid combining wxODBC classes with wxGrid
1068 - Added more makefiles and project files for contrib hierarchy
1069
1070 wxMSW:
1071
1072 - Fixed wxApp::ProcessMessage so controls don't lose their
1073 accelerators when the accelerators are redefined elsewhere
1074 - Accelerators consisting of simple keystrokes (without control,
1075 alt or shift) now work
1076 - Compile fixes for Watcom C++ added
1077 - Compile fixes for Cygwin 1.0 added
1078 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
1079 - Replaced wxYield() call in PopupMenu() by a much safer
1080 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
1081 - Enter processing in wxSpinCtrl fixed
1082 - Fixed bug in determining the best listbox size
1083 - Fix for wxFrame's last focus bug
1084 - We now send iconize events
1085 - Fixed wxFrame::SetClientSize() with toolbar bug
1086 - Added mousewheel processing
1087 - Added wxSystemSettings::Get/SetOption so we can configure
1088 wxWidgets at run time; used this to implement no-maskblt option
1089 in wxDC
1090 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
1091 child frame styles are honoured
1092
1093 wxGTK:
1094
1095 - Fixed slider rounding bug
1096 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
1097 - We now send iconize events
1098 - Fix for discrepancies between wxNotebookEvent and wxNotebook
1099 GetSelection() results
1100
1101 2.3.0
1102 -----
1103
1104 wxBase:
1105
1106 - fixed problem with wxURL when using static version of the library
1107 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
1108 - wxMimeTypesManager now can create file associations too (Chris Elliott)
1109 - wxCopyFile() respects the file permissions (Roland Scholz)
1110 - wxFTP::GetFileSize() added (Søren Erland Vestø)
1111 - wxDateTime::IsSameDate() bug fixed
1112 - wxTimeSpan::Format() now behaves more as expected, see docs
1113 - wxLocale now provides much more convenient API for setting language and
1114 detecting current system language. New API is more abstracted and truly
1115 cross-platform, independent of underlying C runtime library.
1116
1117 All (GUI):
1118
1119 - new wxToggleButton class (John Norris, Axel Schlueter)
1120 - wxCalendarCtrl not highlighting the date with time part bug fixed
1121 - wxADJUST_MINSIZE sizer flag added
1122 - FindOrCreateBrush/Pen() bug fix for invalid colour values
1123 - new wxXPMHandler for reading and writing XPM images
1124 - added new (now recommended) API for conversion between wxImage and wxBitmap
1125 (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
1126 wxImage methods and ctor)
1127 - ODBC classes now support DB2, Interbase, and Pervasive SQL
1128 - ODBC documentation complete!!
1129 - ODBC classes have much Unicode support added, but not complete
1130 - ODBC experimental BLOB support added, but not completely tested
1131 - ODBC NULL column support completed (Roger/Paul Gammans)
1132 - ODBC All "char *" and char arrays removed and replaced with wxString use
1133
1134 wxMSW:
1135
1136 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
1137 - fixed bug in MDI children flags (mis)handling
1138 - it is possible to compile wxCHMHelpController with compilers
1139 other than Visual C++ now and hhctrl.ocx is loaded at runtime
1140
1141 wxGTK:
1142
1143 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
1144
1145 wxHTML:
1146
1147 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
1148 - visual enhancements to contents panel of wxHtmlHelpController
1149
1150 2.2.0
1151 -----
1152
1153 wxBase:
1154
1155 - Fixed bug with directories with trailing (back)slashes in wxPathExists
1156 - wxString: added wxArrayString::operator==() and !=()
1157 - Fixes for wxCmdLineParser
1158 - Added wxGetLocalTimeMillis
1159 - Completed Czech translations
1160 - Some stream corrections
1161 - added missing consts to wxPoint operators
1162 - wxDateTime ParseFormat fixes
1163 - wxFile::Open(write_append) will create file if it doesn't exist
1164 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
1165
1166 All (GUI):
1167
1168 - wxGenericDragImage now allows virtual image drawing, and
1169 flicker-free dragging is now possible
1170 - Added wxPrinter::GetLastError
1171 - Fixed wxLogGui reentrancy problem
1172 - Paper names now translated
1173 - wxGrid fixes
1174 - Generic validator now caters for more cases (integers in
1175 wxTextCtrl, strings in wxChoice, wxComboBox)
1176 - Fixed crash when docview On... functions return FALSE. Show
1177 error message when an non-existent filename is typed into the Open
1178 File dialog.
1179 - Corrected Baltic font encoding handling
1180 - wxImage: enhanced TIFF code, added new platform-independent BMP
1181 writing code
1182 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
1183 - Fixed wxPropertyForm crashes in sample
1184 - wxWizard now calls TransferDataFromWindow() before calling
1185 wxWizardPage::GetNext() fixing an obvious bug
1186
1187 wxMSW:
1188
1189 - wxWindow::GetCharWidth/Height now calculated accurately.
1190 This will affect all .wxr dialog resources, so for
1191 backward compatibility, please set
1192 wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
1193 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
1194 - wxTextCtrl: implemented setting colours for rich edit controls
1195 - wxColour now accepts both grey and gray
1196 - BC++ DLL compilation fixed
1197 - Watcom C++ makefiles improved for JPEG and TIFF compilation
1198 - Fixed submenu accelerator bug
1199 - Fixed dialog focus bug (crash if the previous window to have
1200 the focus was destroyed before the dialog closed)
1201 - Too-small default wxTextCtrl height fixed
1202 - fixed "missing" initial resize of wxMDIChildFrame
1203 - wxFrame restores focus better
1204 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
1205 frames and dialogs, interferes with other window styles otherwise
1206 (sometimes you'd get a thick frame in a subwindow)
1207 - wxTextCtrl insertion point set to the beginning of the control by SetValue
1208 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
1209 - wxFileDialog: adjusts struct size if there's an error (struct
1210 sizes can be different on different versions of Windows)
1211 - wxImageList::GetSize() documented and added to wxMSW
1212 - fixed default dialog style to make them non resizeable again
1213 - fixed wxFrame::IsShown() which always returned TRUE before
1214
1215 wxGTK:
1216
1217 - Please see docs/gtk/changes.txt.
1218
1219 wxMotif:
1220
1221 - Small compilation fixes
1222
1223 Documentation:
1224
1225 - wxCaret documented
1226
1227 2.1.16
1228 ------
1229
1230 wxBase:
1231
1232 All (GUI):
1233
1234 wxMSW:
1235
1236 - Various bug fixes
1237 - Added wxCHMHelpController, for invoking MS HTML Help
1238 files. This works under VC++ only
1239 - Modal dialog handling improved
1240 - Printer dialog now modal
1241
1242 wxGTK:
1243
1244 - Various bug fixes
1245
1246 wxMotif:
1247
1248 - Various bug fixes
1249
1250 2.1.15
1251 ------
1252
1253 Documentation:
1254
1255 - Added docs/tech for technical notes
1256
1257 File hierarchy:
1258
1259 - Started new contrib hierarchy that mirrors
1260 the main lib structure; moved OGL and MMedia into it
1261
1262 wxBase:
1263
1264 - wxSocket support
1265 - wxDateTime replaces and extends old wxDate and wxTime classes (still
1266 available but strongly deprecated) with many new features
1267 - wxLongLong class provides support for (signed) 64 bit integers
1268 - wxCmdLineParser class for parsing the command line (supporting short and
1269 long options, switches and parameters of different types)
1270 - it is now possible to build wxBase under Win32 (using VC++ only so far)
1271 and BeOS (without thread support yet)
1272 - wxThread class modified to support both detached and joinable threads, also
1273 added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
1274 only so far)
1275 - wxDir class for enumerating files in a directory
1276 - wxLog functions are now (more) MT-safe
1277 - wxStopWatch class, timer functions have more chances to return correct
1278 results for your platform (use ANSI functions where available)
1279 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
1280 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
1281 is available)
1282 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
1283
1284 all (GUI):
1285
1286 - Added wxImage::Rotate.
1287 - new wxCalendarCtrl class for picking a date interactively
1288 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu management
1289 - wxToolBar supports arbitrary controls (not only buttons) and can be
1290 dynamically changed (Delete/Insert functions)
1291 - vertical toolbars supported by MSW and GTK native wxToolBar classes
1292 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
1293 - "file open" dialog allows selecting multiple files at once (contributed by
1294 John Norris)
1295 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
1296 MIME types if available (Unix only)
1297 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
1298 - TIFF support added (libtiff required and included in the distribution)
1299 - PCX files can now be written (256 and 24 bits)
1300 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
1301 - wxScrolledWindow now has keyboard interface
1302 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
1303 - added wxEncodingConverter and improved wxFontMapper
1304 for dealing with conversions between different encodings,
1305 charsets support in wxLocale and wxHTML
1306 - wxDragImage class added
1307 - samples/help improved to show standard and advanced HTML help
1308 controllers, as well as native help
1309 - moved wxTreeLayout class to main lib
1310
1311 wxMSW:
1312
1313 - wxFrame::MakeFullScreen added.
1314 - support for enhanced metafiles added, support for copying/pasting metafiles
1315 (WMF and enhanced ones) fixed/added.
1316 - implemented setting colours for push buttons
1317 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
1318 positioned along the top of the screen and not only at the bottom
1319 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
1320 - loading/saving big (> 32K) files in wxTextCtrl works
1321 - tooltips work with wxRadioBox
1322 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
1323 Unix ports
1324 - returning FALSE from OnPrintPage() aborts printing
1325 - VC++ makefiles and project files made (mostly) consistent
1326 - wxSetCursorEvent added
1327
1328 wxGTK:
1329
1330 - wxFontMapper endless recursion bug (on some systems) fixed
1331 - wxGTK synthesizes wxActivateEvents
1332 - UpdateUI handlers may be used with wxTextCtrl
1333
1334 wxMotif:
1335
1336 - wxMenu::Enable works
1337 - wxToolBar bugs fixed
1338 - OGL samples made to work again
1339
1340 wxHTML:
1341
1342 - almost complete rewrite of wxHtmlHelpController,
1343 including faster search, bookmarks, printing, setup dialog
1344 and cross-platform binary compatible .cached files for faster
1345 loading of large helpbooks, case insensitive search
1346 split into 3 parts: wxHtmlHelpData, Frame and Controller
1347 - added support for charsets and <meta> tag
1348 - added support for font faces and justified paragraphs,
1349 taken some steps to prepare wxHTML for frames
1350 - added dynamic pushing/popping of wxHtmlParser tag handlers
1351 - improved HTML printing
1352 - added extensive table of HTML characters substitutions (&nbsp; etc.)
1353 - fixed wxHtmlWindow flickering, several minor bugfixes
1354 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
1355 fixed handling of relative and absolute font sizes in <font size>
1356
1357
1358 NOTE: for changes after wxWidgets 2.1.0 b4, please see the CVS
1359 change log.
1360
1361 2.1.0, b4, May 9th 1999
1362 -----------------------
1363
1364 wxGTK:
1365
1366 - JPEG support added.
1367 - Many fixes and changes not thought worth mentioning in this file :-)
1368
1369 wxMSW:
1370
1371 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
1372 SetTabSize added.
1373 - JPEG support added.
1374 - Fixes for Cygwin compilation.
1375 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
1376 - Many fixes people didn't tell this file about.
1377
1378 wxMotif:
1379
1380
1381 General:
1382
1383 - Some changes for Unicode support, including wxchar.h/cpp.
1384
1385
1386 2.0.1 (release), March 1st 1999
1387 -------------------------------
1388
1389 wxGTK:
1390
1391 - wxGLCanvas fixes.
1392 - Slider/spinbutton fixes.
1393
1394 wxMSW:
1395
1396 - Fixed problems with <return> in dialogs/panels.
1397 - Fixed window cursor setting.
1398 - Fixed toolbar sizing and edge-clipping problems.
1399 - Some makefile fixes.
1400
1401 wxMotif:
1402
1403 - None.
1404
1405 General:
1406
1407 - Added wxUSE_SOCKETS.
1408 - More topic overviews.
1409 - Put wxPrintPaperType, wxPrintPaperDatabase into
1410 prntbase.h/cpp for use in non-PostScript situations
1411 (e.g. Win16 wxPageSetupDialog).
1412
1413
1414 Beta 5, February 18th 1999
1415 --------------------------
1416
1417 wxGTK:
1418
1419 - wxExecute improved.
1420
1421 wxMSW:
1422
1423 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
1424 expected).
1425 - Changed VC++ makefiles (.vc) so that it's possible to have
1426 debug/release/DLL versions of the library available simultaneously,
1427 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
1428 - Added BC++ 5 IDE files and instructions.
1429 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
1430 - Fixed focus-related crash.
1431
1432 wxMotif:
1433
1434 - Cured asynchronous wxExecute crash.
1435 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
1436
1437 General:
1438
1439 - wxLocale documented.
1440 - Added include filenames to class reference.
1441 - wxHelpController API changed: SetBrowser becomes SetViewer,
1442 DisplaySection works for WinHelp, help sample compiles under Windows
1443 (though doesn't display help yet).
1444
1445 Beta 4, February 12th 1999
1446 --------------------------
1447
1448 wxGTK:
1449
1450 - Miscellaneous fixes.
1451
1452 wxMSW:
1453
1454 - Makefiles for more compilers and samples; Cygwin makefiles
1455 rationalised.
1456 - Added VC++ project file for compiling wxWidgets as DLL.
1457
1458 wxMotif:
1459
1460 - Added OnEraseBackground invocation.
1461 - Added wxRETAINED implementation for wxScrolledWindow.
1462 - Cured scrolling display problem by adding XmUpdateDisplay.
1463 - Tried to make lex-ing in the makefile more generic (command line
1464 syntax should apply to both lex and flex).
1465 - Changed file selector colours for consistency (except for buttons:
1466 crashes for some reason).
1467 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
1468 of malloc, which causes memory problems).
1469
1470 General:
1471
1472 - Further doc improvements.
1473 - wxGenericValidator added.
1474 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
1475 automatically.
1476
1477 Beta 3, January 31st 1999
1478 -------------------------
1479
1480 wxGTK:
1481
1482 - wxClipboard/DnD API changes (still in progress).
1483 - wxToolTip class added.
1484 - Miscellaneous fixes.
1485
1486 wxMSW:
1487
1488 - wxRegConfig DeleteAll bug fixed.
1489 - Makefiles for more compilers.
1490 - TWIN32 support added.
1491 - Renamed VC++ makefiles from .nt to .vc, and
1492 factored out program/library settings.
1493 - Fixed wxIniConfig bug.
1494
1495 wxMotif:
1496
1497 - A few more colour fixes.
1498 - wxGLCanvas and OpenGL samples working.
1499 - Some compiler warnings fixed.
1500 - wxChoice crash fix.
1501 - Dialog Editor starting to work on Motif.
1502
1503 General:
1504
1505 - wxBusyCursor class added.
1506 - Added samples/dde.
1507 - More doc improvements, incl. expanding docs/html/index.htm.
1508
1509 Beta 2, January 1999
1510 --------------------
1511
1512 wxGTK:
1513
1514 wxMSW:
1515
1516 - 16-bit BC++ compilation/linking works albeit without the resource system.
1517
1518 wxMotif:
1519
1520 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
1521 the right place.
1522 - Cured some widget table clashes.
1523 - Added thread support (Robert).
1524 - wxPoem sample now works.
1525
1526 General:
1527
1528 - Rearranged documentation a bit.
1529 - Sash window uses area of first frame/dialog to paint over when drawing
1530 the dragged sash, not just the sash window itself (it clipped to the right
1531 or below).
1532 - Made resource sample use the correct Cancel button id.
1533 - Moved wxProp to main library (generic directory), created proplist
1534 sample.
1535 - Added bombs and fractal samples.
1536
1537 Beta 1, December 24th 1998
1538 --------------------------
1539
1540 wxGTK:
1541
1542 - Various
1543
1544 wxMSW, wxMotif: not in sync with this release.
1545
1546
1547 Alpha 18, December 29th 1998
1548 ----------------------------
1549
1550 wxMSW:
1551
1552 - Win16 support working again (VC++ 1.5)
1553 - Win16 now uses generic wxNotebook, wxListCtrl,
1554 wxTreeCtrl -- more or less working now, although
1555 a little work on wxNotebook is still needed.
1556 Under 16-bit Windows, get assertion when you click
1557 on a tab.
1558 - Wrote 16-bit BC++ makefiles: samples don't yet link.
1559 - Added CodeWarrior support to distribution courtesy
1560 of Stefan Csomor.
1561
1562 wxMotif:
1563
1564 - Cured scrolling problem: scrollbars now show/hide themselves
1565 without (permanently) resizing the window.
1566 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
1567 that disabled scrollbar paging.
1568 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
1569 colours correctly.
1570 - Removed major bug whereby dialogs were unmanaged automatically
1571 when any button was pressed.
1572 - Fixed colours of wxWindow scrollbars, made list and text controls
1573 have a white background.
1574 - Fixed dialog colour setting.
1575 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
1576 they have sensible colours by default.
1577 - Fixed a bug in wxStaticBox.
1578 - Cured wxTreeCtrl bug: now works pretty well!
1579 - Debugged DrawEllipticArc (a ! in the wrong place).
1580 - Added SetClippingRegion( const wxRegion& region ).
1581 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
1582
1583 Alpha 17, November 22nd 1998
1584 ----------------------------
1585
1586 wxMSW:
1587
1588 - More documentation updates, especially for
1589 wxLayoutWindow classes and debugging facilities.
1590 - Changed wxDebugContext to use wxDebugLog instead
1591 of wxTrace.
1592 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
1593 However, DLL support may be broken for BC++ since
1594 VC++ 6 required changing of WXDLLEXPORT keyword
1595 position.
1596 - Numerous miscellaneous changes.
1597
1598 wxMotif:
1599
1600 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
1601 were too buggy (probably not design for dynamic addition/removal of
1602 child frames).
1603 - Some improvements to the wxNotebook implementation.
1604 - wxToolBar now uses a bulletin board instead of a form, in an attempt
1605 to make it possible to add ordinary wxControls to a toolbar.
1606 - Cured problem with not being able to use global memory operators,
1607 by defining two more global operators, so that the delete will match
1608 the debugging implementation.
1609 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
1610 global memory operators (usually OK) and #defining new to be
1611 WXDEBUG_NEW (sometimes it might not be OK).
1612 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
1613 - Added a parent-existence check to popup menu code to make it not crash.
1614 - Added some optimization in wxWindow::SetSize to produce less flicker.
1615 It remains to be seen whether this produces any resize bugs.
1616
1617 It's a long time since I updated this file. Previously done:
1618
1619 - wxFrame, wxDialog done.
1620 - wxScrolledWindow done (but backing pixmap not used at present).
1621 - wxBitmap done though could be tidied it up at some point.
1622 - Most basic controls are there, if not rigorously tested.
1623 - Some MDI support (menus appear on child frames at present).
1624 - wxNotebook almost done.
1625 - wxToolBar done (horizontal only, which would be easy to extend
1626 to vertical toolbars).
1627
1628 More recently:
1629
1630 - Colour and font changing done (question mark over what happens
1631 to scrollbars).
1632 - Accelerators done (for menu items and buttons). Also event loop
1633 tidied up in wxApp so that events are filtered through ProcessXEvent.
1634 - wxWindow::GetUpdateRegion should now work.
1635
1636 Alpha 16, September 8th 1998
1637 ----------------------------
1638
1639 wxMSW:
1640
1641 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
1642 sample.
1643 - Guilhem's socket classes added, plus wxsocket sample.
1644 - A few more makefiles added.
1645 - GnuWin32/BC++ compatibility mods.
1646 - Further doc updates.
1647 - wxProp updates for correct working with wxGTK.
1648
1649 wxMotif:
1650
1651 - First start at Motif port.
1652 - Made makefiles for wxMotif source directory and minimal sample.
1653 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
1654 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
1655 wxMenu, wxMenuItem, wxMenuBar
1656
1657 Alpha 15, August 31st 1998
1658 --------------------------
1659
1660 wxMSW:
1661
1662 - wxBitmap debugged.
1663 - wxDC::GetDepth added.
1664 - Contribution added whereby wxBitmap will be
1665 converted to DC depth if they don't match.
1666 - wxConfig API improved, documentation updated.
1667 - Printing classes name conventions cleaned up.
1668 - wxUpdateUIEvent now derives from wxCommandEvent
1669 so event can travel up the window hierarchy.
1670
1671 Alpha 14, July 31st 1998
1672 ------------------------
1673
1674 wxMSW:
1675
1676 - Toolbar API has been simplified, and now
1677 wxFrame::GetClientArea returns the available client
1678 area when toolbar, status bar etc. have been accounted for.
1679 wxFrame::CreateToolBar added in line with CreateStatusBar.
1680 - Documentation updates, incl. for wxToolBar.
1681 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
1682 - Various additions from other folk, e.g. streams, wxConfig
1683 changes, wxNotebook.
1684 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
1685
1686 Alpha 13, July 8th 1998
1687 -----------------------
1688
1689 wxMSW:
1690
1691 - Implemented wxPoint as identical to POINT on Windows, and
1692 altered wxDC wxPoint functions to use wxPoint directly in
1693 Windows functions, for efficiency.
1694 - Cured wxASSERT bug in wxStatusBar95.
1695 - #ifdefed out some bits in oleutils.cpp for compilers that
1696 don't support it.
1697 - Added some operators to wxPoint, wxSize.
1698 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
1699
1700 Alpha 12, July 7th 1998
1701 -----------------------
1702
1703 wxMSW:
1704
1705 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
1706 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
1707
1708 Alpha 11, July 3rd 1998
1709 -----------------------
1710
1711 wxMSW:
1712
1713 - Added thread.h, thread.cpp.
1714 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
1715 wxMenuBar.
1716 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
1717 SetTextColor to SetTextColour, and added or made public several
1718 wxMenuItem accessors.
1719 - Added two overloads to wxRegion::Contains. Added
1720 wxRegion::IsEmpty for a more consistent naming convention.
1721 - Added Vadim's wxDataObject and wxDropSource.
1722 - ENTER/LEAVE events now work.
1723 - Cured wxMemoryDC bug where the DC wasn't being deleted.
1724 - Cured wxGauge SetSize major bugginess.
1725 - Cured problem where if a GDI object was created on the stack,
1726 then went out of scope, then another object was selected into
1727 the DC, GDI objects would leak. This is because the assignment
1728 to e.g. wxDC::m_pen would delete the GDI object without it first
1729 being selected out of the DC. Cured by selecting the old DC object
1730 first, then doing the assignment.
1731 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
1732 - Various other bug fixes and additions.
1733
1734 Generic:
1735
1736 - Major work on Dialog Editor (still plenty to go).
1737 - Expanded documentation a bit more.
1738
1739 Alpha 10, May 7th 1998
1740 ----------------------
1741
1742 wxMSW:
1743
1744 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
1745 and wxIcon functions so that you can specify what size of
1746 icon should be loaded. Probably will remain a Windows-specific thing.
1747 - wxStatusBar95 now works for MDI frames.
1748 - Toolbars in MDI frames now behave normally. They still
1749 require application-supplied positioning code though.
1750 - Changed installation instructions, makefiles and batch files
1751 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
1752 change to support Mingw32/EGCS. Bison now used by default.
1753
1754 Alpha 9, April 27th 1998
1755 ------------------------
1756
1757 wxMSW:
1758
1759 - Cured bug in wxStatusBar95 that caused a crash if multiple
1760 fields were used.
1761 - Added Gnu-Win32 b19/Mingw32 support by changing resource
1762 compilation and pragmas.
1763 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
1764 commands because VZ changed the id setting in wxMenu::MSWCommand.
1765
1766 Generic:
1767
1768 - Corrected some bugs, such as the wxModule compilation problem.
1769 - Added Gnu-Win32 b19/Mingw32 support by changing resource
1770 compilation and pragmas.
1771 - Changed SIZEOF to WXSIZEOF.
1772
1773 Alpha 8, April 17th 1998
1774 ------------------------
1775
1776 wxMSW:
1777
1778 - Added IsNull to wxGDIObject to check if the ref data is present or not.
1779 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
1780 some reason :-(
1781 - Added wxJoystick class and event handling, and simple demo.
1782 - Added simple wxWave class. Needs Stop() function.
1783 - Added wxModule (module.h/module.cpp) to allow definition
1784 of modules to be initialized and cleaned up on wxWidgets
1785 startup/exit.
1786 - Start of Mingw32 compatibility (see minimal and dialogs samples
1787 makefile.m95 files, and install.txt).
1788 - Note: Windows printing has stopped working... will investigate.
1789 VADIM'S CHANGES:
1790 - Updated wxString: bug fixes, added wxArrayString, some
1791 compatibility functions.
1792 - Updated log.h/cpp, added wxApp::CreateLogTarget.
1793 - file.h: new wxTempFile class.
1794 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
1795 - statbr95: wxStatusBar95 control.
1796 - registry.h/cpp: wxRegKey class for Win95 registry.
1797 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
1798 - wxConfig and wxFileConfig classes.
1799
1800 Generic:
1801
1802 - Added src/other/png, src/other/zlib directories.
1803 - Added samples/png.
1804 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
1805 Porters, please check particularly your wxTreeCtrl and wxListCtrl
1806 header files.
1807 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
1808
1809 Alpha 7, March 30th 1998
1810 ------------------------
1811
1812 wxMSW:
1813
1814 - Added tab classes, tab sample.
1815 - Now can return FALSE from OnInit and windows will be
1816 cleaned up properly before exit.
1817 - Improved border handling so panels don't get borders
1818 automatically.
1819 - Debugged MDI activation from Window menu.
1820 - Changes to memory debug handling, including checking for
1821 memory leaks on application exit - but see issues.txt for
1822 unresolved issues.
1823 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
1824 to allow maintenance of an icon in the Windows 95 taskbar
1825 tray area.
1826 - Got MFC sample working (MFC and wxWidgets in the same
1827 application), partly by tweaking ntwxwin.mak settings.
1828 - Got DLL compilation working again (VC++).
1829 - Changed wxProp/Dialog Editor filenames.
1830
1831 Generic:
1832
1833 - Added tab classes, tab sample.
1834 - Revised memory.cpp, memory.h slightly; memory.h now #defines
1835 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
1836 now checks for leaks on exit. Added memcheck sample.
1837 See src/msw/issues.txt for more details.
1838 - resource.h, resource.cpp changed to make wxDefaultResourceTable
1839 a pointer. Now initialize resource system with
1840 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
1841 allow better control of memory.
1842 - wxString now derives from wxObject, to enable memory leak
1843 checking.
1844 - Added some #include fixes in various files, plus changed
1845 float to long in wxToolBar files.
1846
1847 Alpha 6, March 10th 1998
1848 ------------------------
1849
1850 wxMSW:
1851
1852 - Found stack error bug - stopped unwanted OnIdle recursion.
1853 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
1854 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
1855 check if the number of top-level windows is zero before
1856 exiting. Also, wxApp::GetTopWindow will return either
1857 m_topWindow or the first member of wxTopLevelWindows, so you
1858 don't have to call wxApp::SetTopWindow.
1859 - Added dynarray.h/dynarray.cpp (from Vadim).
1860 - Added first cut at OLE drag and drop (from Vadim). dnd sample
1861 added. Drop target only at this stage. See src/msw/ole/*.cpp,
1862 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
1863 Doesn't work with GnuWin32 - no appropriate headers e.g. for
1864 IUnknown.
1865 Doesn't work with BC++ either - crashes on program startup.
1866 - Added Vadim's owner-draw modifications - will probably remain
1867 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
1868 - Added wxLB_OWNERDRAW for owner-draw listboxes.
1869 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
1870 Doesn't entirely work for WIN16.
1871 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
1872 can also be used as an argument to wxMenu::Append, not just for
1873 internal implementation.
1874 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
1875 in makeg95.env, together with mingw32.bat). However, resource
1876 binding is not working yet so most apps with dialogs crash.
1877
1878 Generic:
1879
1880 - Added Vadim's dynarray.h, dynarray.cpp.
1881 - Added Vadim's menuitem.cpp.
1882 - Added Windows-specific wxCheckListBox,
1883 owner-draw wxListBox, and drag-and-drop
1884 (see docs/msw/changes.txt).
1885
1886 Alpha 5, 14th February 1998
1887 --------------------------
1888
1889 wxMSW:
1890
1891 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1892 DISTRIBUTIONS. This change log will therefore now refer to
1893 the Windows-specific code only. See docs/changes.txt for generic
1894 changes.
1895 - Removed Windows-specific reference counting system (GDI
1896 resources were cleaned up in idle time) - minimal
1897 advantages now we have a wxWin reference counting system.
1898 - Added missing WXDLLEXPORT keywords so DLL compilation works
1899 again.
1900 - Removed most warnings for GnuWin32 compilation.
1901 - Added wxRegion/wxRegionIterator, but haven't yet used it in
1902 e.g. wxDC.
1903
1904 Generic:
1905
1906 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1907 DISTRIBUTIONS. This change log will therefore now refer to
1908 the generic code only. See docs/msw/changes.txt for Windows-specific
1909 changes.
1910 - Readmes, change logs and installation files now go in
1911 platform-specific directories under docs, e.g. docs/msw,
1912 docs/gtk.
1913 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
1914 created dynamically, not as a global object.
1915 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
1916 - Changed names of some include/wx/generic headers to be
1917 consistent and to conform to gcc pragma conventions. Also
1918 changed choicesg.cpp to choicdgg.cpp.
1919 - Added gcc pragmas.
1920 - Added gtk inclusion in include/wx headers.
1921 - Added consistent file headings to source and headers.
1922 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
1923 added a few references to wxTransString.
1924 - Added operator to wxTransString that converts automatically
1925 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
1926 - samples/internat now works (minimally).
1927 - Added wxMouseEvent::GetPosition and
1928 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
1929 - Made wxSize and wxRect contain longs not ints.
1930 - Cured some memory leaks (thanks Vadim).
1931 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
1932 will only keep processing OnIdle if it returns TRUE from
1933 MoreRequested.
1934
1935 Alpha 4, 31st January 1998
1936 --------------------------
1937
1938 All:
1939
1940 - Changed wxDC functions to take longs instead of floats. GetSize now takes
1941 integer pointers, plus a version that returns a wxSize.
1942 - const keyword added to various wxDC functions.
1943 - Under Windows, wxDC no longer has any knowledge of whether
1944 an associated window is scrolled or not. Instead, the device
1945 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
1946 - wxScrolledWindow applications can optionally override the virtual OnDraw
1947 function instead of using the OnPaint event handler. The wxDC passed to
1948 OnDraw will be translated by PrepareDC to reflect scrolling.
1949 When drawing outside of OnDraw, must call PrepareDC explicitly.
1950 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
1951 scrolling toolbars.
1952 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
1953 to help printing with multiple pages.
1954 - IPC classes given base classes (wxConnectionBase etc.) which
1955 define the API used by different implementations. DDE
1956 implementation updated to use these base classes.
1957 - wxHelpInstance now separated into wxHelpControllerBase (base
1958 for all implementations), wxWinHelpController (uses standard
1959 WinHelp), wxXLPHelpController (talks to wxHelp by DDE or
1960 TCP/IP). There will be others eventually, such as
1961 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
1962 - Added Vadim Zeitlin's wxString class plus
1963 internationalization code (gettext simulation, wxLocale, etc.).
1964 New files from Vadim:
1965 include\wx\string.h
1966 include\wx\debug.h
1967 include\wx\file.h
1968 include\wx\log.h
1969 include\wx\intl.h
1970 src\common\string.cpp
1971 src\common\log.cpp
1972 src\common\intl.cpp
1973 src\common\file.cpp
1974 No longer use GNU wxString files.
1975 - Split off file-related functions into include\wx\filefn.h and
1976 src\common\filefn.cpp.
1977 - Borland C++ support (WIN32) for main library and
1978 samples, using makefile.b32 files.
1979 - Preparation done for allowing BC++ to compile wxWin as a DLL,
1980 including changes to defs.h.
1981 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
1982 introduced.
1983 - Added wxShowEvent (generated when window is being shown or
1984 hidden).
1985 - Got minimal, docview, mdi samples working for 16-bit VC++ and
1986 cured 16-bit problem with wxTextCtrl (removed global memory
1987 trick).
1988 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
1989
1990 Alpha 3, September 1997
1991 -----------------------
1992
1993 All:
1994
1995 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
1996 - Instigated new file hierarchy, split files and classes up more logically.
1997 - PrologIO and some other utils now put into core library.
1998 - Revamped print/preview classes, added wxPageSetupDialog.
1999 - Started documentation.
2000
2001 Alpha 2, 30th April 1997
2002 ------------------------
2003
2004 All:
2005
2006 - EVT_... macros now have at least one argument, for conformance
2007 with MetroWerks compiler.
2008 - Added ids to .wxr file format.
2009 - Got Dialog Editor compiled and running again but need
2010 to extend functionality to be in line with new controls.
2011 Added dialoged\test app to allow dynamic loading of .wxr files
2012 for testing purposes.
2013 - Rewrote wxBitmap to allow installable file type
2014 handlers.
2015 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
2016 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
2017 fully).
2018 - Added back wxRadioBox.
2019 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
2020 a separate file.
2021
2022 Alpha 1, 5th April 1997
2023 -----------------------
2024
2025 Generic:
2026
2027 At this point, the following has been achieved:
2028
2029 - A lot, but not all, of the code has been revamped for better
2030 naming conventions, protection of data members, and use of
2031 wxString instead of char *.
2032 - Obsolete functionality deleted (e.g. default wxPanel layout,
2033 old system event system) and code size reduced.
2034 - Class hierarchy changed (see design doc) - base classes such
2035 as wxbWindow now removed.
2036 - No longer includes windows.h in wxWin headers, by using stand-in
2037 Windows types where needed e.g. WXHWND.
2038 - PrologIO revised.
2039 - wxScrolledWindow, wxStatusBar and new MDI classes added.
2040 MDI is now achieved using separate classes, not window styles.
2041 - wxSystemSettings added, and made use of to reflect standard
2042 Windows settings.
2043 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
2044 settings mucho rationalised.
2045 - All windows are now subclassed with the same window proc to make
2046 event handling far more consistent. Old internal wxWnd and derived
2047 classes removed.
2048 - API for controls revised, in particular addition of
2049 wxValidator parameters and removal of labels for some controls.
2050 - 1 validator written: see examples/validate.
2051 - Event table system introduced (see most samples and
2052 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
2053 made more flexible, with Push/PopEventHandler allowing a chain
2054 of event handlers.
2055 - wxRadioBox removed - will be added back soon.
2056 - Toolbar class hierarchy revised:
2057 wxToolBarBase
2058 wxToolBarSimple (= old wxToolBar)
2059 wxToolBar95 (= old wxButtonBar under Win95)
2060 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
2061 - Constraint system debugged somewhat (sizers now work properly).
2062 - wxFileDialog, wxDirDialog added; other common dialogs now
2063 have class equivalents. Generic colour and font dialogs
2064 rewritten to not need obsolete panel layout.
2065 - .wxr resource system partially reinstated, though needs
2066 an integer ID for controls. Hopefully the resource system
2067 will be replaced by something better and more efficient
2068 in the future.
2069 - Device contexts no longer stored with window and accessed
2070 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
2071 variables instead.
2072 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
2073 determines whether labels are shown. Other Win95-specific flags
2074 introduced, e.g. for showing ticks.
2075 - Styles introduced for dealing with 3D effects per window, for
2076 any window: all Win95 3D effects supported, plus transparent windows.
2077 - Major change to allow 3D effect support without CTL3D, under
2078 Win95.
2079 - Bitmap versions of button and checkbox separated out into new
2080 classes, but unimplemented as yet because I intend to remove
2081 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
2082 - utils/wxprop classes working (except maybe wxPropertyFormView)
2083 in preparation for use in Dialog Editor.
2084 - GNU-WIN32 compilation verified (a month or so ago).
2085
2086