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