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