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