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