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