]> git.saurik.com Git - wxWidgets.git/blob - docs/changes.txt
Windows XP appearance fixes for status and tool bars (bug 501585)
[wxWidgets.git] / docs / changes.txt
1 wxWindows 2 Change Log
2 ----------------------
3
4 INCOMPATIBLE CHANGES SINCE 2.2.x
5 ================================
6
7 wxBase:
8
9 - wxArray<T>::Remove(size_t) has been removed to fix compilation problems
10 under 64 bit architectures, please replace it with RemoveAt() in your
11 code.
12
13 - wxObject::CopyObject() and Clone() methods were removed because they
14 simply don't make sense for all objects
15
16 - wxEvent now has a pure virtual Clone() method which must be implemented
17 by all derived classes, if you have user-defined event classes please
18 add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
19
20 All (GUI):
21
22 - the event type constants are not constants any more but are dynamically
23 allocated during run-time which means that they can't be used as case labels
24 in the switch()es, you must rewrite them to use if()s instead
25
26 You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
27 but this is strongly discouraged, please consider changing your codei
28 instead!
29
30 - wxDialog does not derive from wxPanel any longer - if you were using it in
31 your code, please update it. The quick fix for the most cases is to replace
32 the occurences of wxPanel with wxWindow.
33
34 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
35 have changed (to fix some unfortunate clashes), please check your code to
36 ensure that no tests for wxYES or wxNO are broken: for example, the following
37 will *NOT* work any longer:
38
39 if ( flags & wxYES_NO )
40 ... do something ...
41 if ( flags & wxYES )
42 ... do something else ...
43
44 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
45
46 - wxGridCellAttrProvider class API changed, you will need to update your code
47 if you derived any classes from it
48
49 wxMSW:
50
51 - build system changed: setup.h is not a static file in include/wx any more
52 but is created as part of the build process under lib/<toolkit>/wx/include
53 where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
54 the include path in your make/project files appropriately.
55
56 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
57 style to avoid it, wxFRAME_FLOAT_ON_PARENT style is now obsolete and has no
58 effect
59
60 Unix ports:
61
62 - You should use `wx-config --cxxflags` in your makefiles instead of
63 `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
64 and the compiler flags for C++ files only, CFLAGS should still be used
65 to compile pure C files.
66
67 2.3.3
68 -----
69
70 wxBase:
71
72 - fixes to the command line parsing error and usage messages
73 - modified wxFileName::CreateTempFileName() to open the file atomically
74 (if possible) and, especially, not to leak the file descriptors under Unix
75 - memory leak in wxHTTP fixed (Dimitri)
76 - fixes to AM_PATH_WXCONFIG autoconf macro
77
78 All (GUI):
79
80 - significantly improved native font support
81 - added IFF image handler
82 - fixed using custom renderers in wxGrid which was broken in 2.3.2
83 - support for multiple images in one file added to wxImage (TIFF and ICO formats)
84 - support for CUR and ANI files in wxImage added (Chris Elliott)
85 - wxTextCtrl::GetRange() added
86 - added wxGetFontFromUser() convenience function
87
88 wxMSW:
89
90 - small appearance fixes for native look under Windows XP
91 - huge (40*) speed up in wxMask::Create() (=> much faster toolbar creation)
92 - fixed flicker in wxTreeCtrl::SetItemXXX()
93 - fixed redraw problems in dynamically resized wxStaticText
94 - improvements to wxWindows applications behaviour when the system colours
95 are changed
96 - fixed wxProgressDialog for ranges > 65535
97 - wxFontEnumerator now returns all fonts, not only TrueType ones
98 - bugs in handling wxFrame styles (border/caption related) fixed
99 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
100 recursion any more
101 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
102
103 wxGTK:
104
105 - wxDirDialog now presents the file system in standard Unix way
106 - wxButton now honours wxBU_EXACTFIT
107 - wxStaticBox now honours wxALIGN_XXX styles
108
109 wxHTML:
110
111 - fixed wxHtmlHelpController's cache files handling on big endian machines
112 - added blocking and redirecting capabilities to wxHtmlWindow via
113 wxHtmlWindow::OnOpeningURL()
114
115 2.3.2
116 -----
117
118 New port: wxUniv for Win32/GTK+ is now included in the distribution.
119
120 wxBase:
121
122 - wxRegEx class added
123 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
124 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
125 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
126 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
127 capabilities at runtime instead of in the configure script.
128
129 All (GUI):
130
131 - support for virtual list control added
132 - column images in report mode of the list control
133 - wxFindReplaceDialog added (based on work of Markus Greither)
134 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
135 - polygon support in wxRegion (Klaas Holwerda)
136 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
137 - fixed bug with using wxExecute() to capture huge amounts of output
138 - new wxCalendarCtrl styles added (Søren Erland Vestø)
139 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
140 - wxDirSelector() added (Paul A. Thiessen)
141 - wxGrid cell editing veto support (Roger Gammans)
142 - wxListCtrl ITEM_FOCUSED event added
143 - support for ICO files in wxImage added (Chris Elliott)
144
145 wxMSW:
146
147 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
148 - new library naming convention under VC++ -- please change your application
149 project files
150
151 wxGTK:
152
153 - fixed popup menu positioning bug
154
155 wxHTML:
156
157 - new HTML parser with correct parsing of character entities and fixes
158 to tags parsing
159 - added support for animated GIFs
160
161 2.3.1
162 -----
163
164 wxBase:
165
166 - Fixes for gcc 3.0
167 - Fixed new charset detection code
168 - ODBC Informix fixes (submitted by Roger Gammans)
169 - Added ODBC date support to wxVariant
170 - Added wxDir::Traverse
171 - Added wxSingleInstanceChecker class
172 - Removed redundant wxDebugContext functions using C++ streams,
173 so now standard stream usage should be unnecessary
174
175 All (GUI):
176
177 - Added wxDbGrid class for displaying ODBC tables
178 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
179 user code can get access to the edit control when it is created, (to
180 push on a custom event handler for example)
181 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
182 GetDefaultStyle methods to wxTextCtrl
183 - Added wxSingleInstanceChecker
184 - Improvements to Tex2RTF
185 - Added Paul and Roger Gammans' grid controls
186 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
187 first-time saved
188 - Fixed memory leak in textcmn.cpp
189 - Various wxXML enhancements
190 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
191 - Fixed memory leak in DoPrint, htmprint.cpp
192 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
193 instead of GetId()
194 - Added wxDbGrid combining wxODBC classes with wxGrid
195 - Added more makefiles and project files for contrib hierarchy
196
197 wxMSW:
198
199 - Fixed wxApp::ProcessMessage so controls don't lose their
200 accelerators when the accelerators are redefined elsewhere
201 - Accelerators consisting of simple keystrokes (without control,
202 alt or shift) now work
203 - Compile fixes for Watcom C++ added
204 - Compile fixes for Cygwin 1.0 added
205 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
206 - Replaced wxYield() call in PopupMenu() by a much safer
207 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
208 - Enter processing in wxSpinCtrl fixed
209 - Fixed bug in determining the best listbox size
210 - Fix for wxFrame's last focus bug
211 - We now send iconize events
212 - Fixed wxFrame::SetClientSize() with toolbar bug
213 - Added mousewheel processing
214 - Added wxSystemSettings::Get/SetOption so we can configure
215 wxWindows at run time; used this to implement no-maskblt option
216 in wxDC
217 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
218 child frame styles are honoured
219
220 wxGTK:
221
222 - Fixed slider rounding bug
223 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
224 - We now send iconize events
225 - Fix for discrepancies between wxNotebookEvent and wxNotebook
226 GetSelection() results
227
228 2.3.0
229 -----
230
231 wxBase:
232
233 - fixed problem with wxURL when using static version of the library
234 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
235 - wxMimeTypesManager now can create file associations too (Chris Elliott)
236 - wxCopyFile() respects the file permissions (Roland Scholz)
237 - wxFTP::GetFileSize() added (Søren Erland Vestø)
238 - wxDateTime::IsSameDate() bug fixed
239 - wxTimeSpan::Format() now behaves more as expected, see docs
240 - wxLocale now provides much more convenient API for setting language and
241 detecting current system language. New API is more abstracted and truly
242 cross-platform, independent of underlying C runtime library.
243
244 All (GUI):
245
246 - new wxToggleButton class (John Norris, Axel Schlueter)
247 - wxCalendarCtrl not highlighting the date with time part bug fixed
248 - wxADJUST_MINSIZE sizer flag added
249 - FindOrCreateBrush/Pen() bug fix for invalid colour values
250 - new wxXPMHandler for reading and writing XPM images
251 - added new (now recommended) API for conversion between wxImage and wxBitmap
252 (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
253 wxImage methods and ctor)
254 - ODBC classes now support DB2, Interbase, and Pervasive SQL
255 - ODBC documentation complete!!
256 - ODBC classes have much Unicode support added, but not complete
257 - ODBC experimental BLOB support added, but not completely tested
258 - ODBC NULL column support completed (Roger/Paul Gammans)
259 - ODBC All "char *" and char arrays removed and replaced with wxString use
260
261 wxMSW:
262
263 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
264 - fixed bug in MDI children flags (mis)handling
265 - it is possible to compile wxCHMHelpController with compilers
266 other than Visual C++ now and hhctrl.ocx is loaded at runtime
267
268 wxGTK:
269
270 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
271
272 wxHTML:
273
274 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
275 - visual enhancements to contents panel of wxHtmlHelpController
276
277 2.2.0
278 -----
279
280 wxBase:
281
282 - Fixed bug with directories with trailing (back)slashes in wxPathExists
283 - wxString: added wxArrayString::operator==() and !=()
284 - Fixes for wxCmdLineParser
285 - Added wxGetLocalTimeMillis
286 - Completed Czech translations
287 - Some stream corrections
288 - added missing consts to wxPoint operators
289 - wxDateTime ParseFormat fixes
290 - wxFile::Open(write_append) will create file if it doesn't exist
291 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
292
293 All (GUI):
294
295 - wxGenericDragImage now allows virtual image drawing, and
296 flicker-free dragging is now possible
297 - Added wxPrinter::GetLastError
298 - Fixed wxLogGui reentrancy problem
299 - Paper names now translated
300 - wxGrid fixes
301 - Generic validator now caters for more cases (integers in
302 wxTextCtrl, strings in wxChoice, wxComboBox)
303 - Fixed crash when docview On... functions return FALSE. Show
304 error message when an non-existent filename is typed into the Open
305 File dialog.
306 - Corrected Baltic font encoding handling
307 - wxImage: enhanced TIFF code, added new platform-independent BMP
308 writing code
309 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
310 - Fixed wxPropertyForm crashes in sample
311 - wxWizard now calls TransferDataFromWindow() before calling
312 wxWizardPage::GetNext() fixing an obvious bug
313
314 wxMSW:
315
316 - wxWindow::GetCharWidth/Height now calculated accurately.
317 This will affect all .wxr dialog resources, so for
318 backward compatibility, please set
319 wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
320 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
321 - wxTextCtrl: implemented setting colours for rich edit controls
322 - wxColour now accepts both grey and gray
323 - BC++ DLL compilation fixed
324 - Watcom C++ makefiles improved for JPEG and TIFF compilation
325 - Fixed submenu accelerator bug
326 - Fixed dialog focus bug (crash if the previous window to have
327 the focus was destroyed before the dialog closed)
328 - Too-small default wxTextCtrl height fixed
329 - fixed "missing" initial resize of wxMDIChildFrame
330 - wxFrame restores focus better
331 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
332 frames anddialogs, interferes with other window styles otherwise
333 (sometimes you'd get a thick frame in a subwindow)
334 - wxTextCtrl insertion point set to the beginning of the control by SetValue
335 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
336 - wxFileDialog: adjusts struct size if there's an error (struct
337 sizes can be different on different versions of Windows)
338 - wxImageList::GetSize() documented and added to wxMSW
339 - fixed default dialog style to make them non resizeable again
340 - fixed wxFrame::IsShown() which always returned TRUE before
341
342 wxGTK:
343
344 - Please see docs/gtk/changes.txt.
345
346 wxMotif:
347
348 - Small compilation fixes
349
350 Documentation:
351
352 - wxCaret documented
353
354 2.1.16
355 ------
356
357 wxBase:
358
359 All (GUI):
360
361 wxMSW:
362
363 - Various bug fixes
364 - Added wxCHMHelpController, for invoking MS HTML Help
365 files. This works under VC++ only
366 - Modal dialog handling improved
367 - Printer dialog now modal
368
369 wxGTK:
370
371 - Various bug fixes
372
373 wxMotif:
374
375 - Various bug fixes
376
377 2.1.15
378 ------
379
380 Documentation:
381
382 - Added docs/tech for technical notes
383
384 File hierarchy:
385
386 - Started new contrib hierarchy that mirrors
387 the main lib structure; moved OGL and MMedia into it
388
389 wxBase:
390
391 - wxSocket support
392 - wxDateTime replaces and extends old wxDate and wxTime classes (still
393 available but strongly deprecated) with many new features
394 - wxLongLong class provides support for (signed) 64 bit integers
395 - wxCmdLineParser class for parsing the command line (supporting short and
396 long options, switches and parameters of different types)
397 - it is now possible to build wxBase under Win32 (using VC++ only so far)
398 and BeOS (without thread support yet)
399 - wxThread class modified to support both detached and joinable threads, also
400 added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
401 only so far)
402 - wxDir class for enumerating files in a directory
403 - wxLog functions are now (more) MT-safe
404 - wxStopWatch class, timer functions have more chances to return correct
405 results for your platform (use ANSI functions where available)
406 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
407 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
408 is available)
409 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
410
411 all (GUI):
412
413 - Added wxImage::Rotate.
414 - new wxCalendarCtrl class for picking a date interactively
415 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu menagament
416 - wxToolBar supports arbitrary controls (not only buttons) and can be
417 dynamically changed (Delete/Insert functions)
418 - vertical toolbars supported by MSW and GTK native wxToolBar classes
419 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
420 - "file open" dialog allows selecting multiple files at once (contributed by
421 John Norris)
422 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
423 MIME types if available (Unix only)
424 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
425 - TIFF support added (libtiff required and included in the distribution)
426 - PCX files can now be written (256 and 24 bits)
427 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
428 - wxScrolledWindow now has keyboard interface
429 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
430 - added wxEncodingConverter and improved wxFontMapper
431 for dealing with convertions between different encodings,
432 charsets support in wxLocale and wxHTML
433 - wxDragImage class added
434 - samples/help improved to show standard and advanced HTML help
435 controllers, as well as native help
436 - moved wxTreeLayout class to main lib
437
438 wxMSW:
439
440 - wxFrame::MakeFullScreen added.
441 - support for enhanced metafiles added, support for copying/pasting metafiles
442 (WMF and enhanced ones) fixed/added.
443 - implemented setting colours for push buttons
444 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
445 positioned along the top of the screen and not only at the bottom
446 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
447 - loading/saving big (> 32K) files in wxTextCtrl works
448 - tooltips work with wxRadioBox
449 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
450 Unix ports
451 - returning FALSE from OnPrintPage() aborts printing
452 - VC++ makefiles and project files made (mostly) consistent
453 - wxSetCursorEvent added
454
455 wxGTK:
456
457 - wxFontMapper endless recursion bug (on some systems) fixed
458 - wxGTK synthesizes wxActivateEvents
459 - UpdateUI handlers may be used with wxTextCtrl
460
461 wxMotif:
462
463 - wxMenu::Enable works
464 - wxToolBar bugs fixed
465 - OGL samples made to work again
466
467 wxHTML:
468
469 - almost complete rewrite of wxHtmlHelpController,
470 including faster search, bookmarks, printing, setup dialog
471 and cross-platform binary compatible .cached files for faster
472 loading of large helpbooks, case insensitive search
473 splitted into 3 parts: wxHtmlHelpData, Frame and Controller
474 - added support for charsets and <meta> tag
475 - added support for font faces and justified paragraphs,
476 taken some steps to prepare wxHTML for frames
477 - added dynamic pushing/poping of wxHtmlParser tag handlers
478 - improved HTML printing
479 - added extensive table of HTML characters substitutions (&nbsp; etc.)
480 - fixed wxHtmlWindow flickering, several minor bugfixes
481 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
482 fixed handling of relative and absolute font sizes in <font size>
483
484
485 NOTE: for changes after wxWindows 2.1.0 b4, please see the CVS
486 change log.
487
488 2.1.0, b4, May 9th 1999
489 -----------------------
490
491 wxGTK:
492
493 - JPEG support added.
494 - Many fixes and changes not thought worth mentioning in this file :-)
495
496 wxMSW:
497
498 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
499 SetTabSize added.
500 - JPEG support added.
501 - Fixes for Cygwin compilation.
502 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
503 - Many fixes people didn't tell this file about.
504
505 wxMotif:
506
507
508 General:
509
510 - Some changes for Unicode support, including wxchar.h/cpp.
511
512
513 2.0.1 (release), March 1st 1999
514 -------------------------------
515
516 wxGTK:
517
518 - wxGLCanvas fixes.
519 - Slider/spinbutton fixes.
520
521 wxMSW:
522
523 - Fixed problems with <return> in dialogs/panels.
524 - Fixed window cursor setting.
525 - Fixed toolbar sizing and edge-clipping problems.
526 - Some makefile fixes.
527
528 wxMotif:
529
530 - None.
531
532 General:
533
534 - Added wxUSE_SOCKETS.
535 - More topic overviews.
536 - Put wxPrintPaperType, wxPrintPaperDatabase into
537 prntbase.h/cpp for use in non-PostScript situations
538 (e.g. Win16 wxPageSetupDialog).
539
540
541 Beta 5, February 18th 1999
542 --------------------------
543
544 wxGTK:
545
546 - wxExecute improved.
547
548 wxMSW:
549
550 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
551 expected).
552 - Changed VC++ makefiles (.vc) so that it's possible to have
553 debug/release/DLL versions of the library available simultaneously,
554 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
555 - Added BC++ 5 IDE files and instructions.
556 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
557 - Fixed focus-related crash.
558
559 wxMotif:
560
561 - Cured asynchronous wxExecute crash.
562 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
563
564 General:
565
566 - wxLocale documented.
567 - Added include filenames to class reference.
568 - wxHelpController API changed: SetBrowser becomes SetViewer,
569 DisplaySection works for WinHelp, help sample compiles under Windows
570 (though doesn't display help yet).
571
572 Beta 4, February 12th 1999
573 --------------------------
574
575 wxGTK:
576
577 - Miscellaneous fixes.
578
579 wxMSW:
580
581 - Makefiles for more compilers and samples; Cygwin makefiles
582 rationalised.
583 - Added VC++ project file for compiling wxWindows as DLL.
584
585 wxMotif:
586
587 - Added OnEraseBackground invocation.
588 - Added wxRETAINED implementation for wxScrolledWindow.
589 - Cured scrolling display problem by adding XmUpdateDisplay.
590 - Tried to make lex-ing in the makefile more generic (command line
591 syntax should apply to both lex and flex).
592 - Changed file selector colours for consistency (except for buttons:
593 crashes for some reason).
594 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
595 of malloc, which causes memory problems).
596
597 General:
598
599 - Further doc improvements.
600 - wxGenericValidator added.
601 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
602 automatically.
603
604 Beta 3, January 31st 1999
605 -------------------------
606
607 wxGTK:
608
609 - wxClipboard/DnD API changes (still in progress).
610 - wxToolTip class added.
611 - Miscellaneous fixes.
612
613 wxMSW:
614
615 - wxRegConfig DeleteAll bug fixed.
616 - Makefiles for more compilers.
617 - TWIN32 support added.
618 - Renamed VC++ makefiles from .nt to .vc, and
619 factored out program/library settings.
620 - Fixed wxIniConfig bug.
621
622 wxMotif:
623
624 - A few more colour fixes.
625 - wxGLCanvas and OpenGL samples working.
626 - Some compiler warnings fixed.
627 - wxChoice crash fix.
628 - Dialog Editor starting to work on Motif.
629
630 General:
631
632 - wxBusyCursor class added.
633 - Added samples/dde.
634 - More doc improvements, incl. expanding docs/html/index.htm.
635
636 Beta 2, January 1999
637 --------------------
638
639 wxGTK:
640
641 wxMSW:
642
643 - 16-bit BC++ compilation/linking works albeit without the resource system.
644
645 wxMotif:
646
647 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
648 the right place.
649 - Cured some widget table clashes.
650 - Added thread support (Robert).
651 - wxPoem sample now works.
652
653 General:
654
655 - Rearranged documentation a bit.
656 - Sash window uses area of first frame/dialog to paint over when drawing
657 the dragged sash, not just the sash window itself (it clipped to the right
658 or below).
659 - Made resource sample use the correct Cancel button id.
660 - Moved wxProp to main library (generic directory), created proplist
661 sample.
662 - Added bombs and fractal samples.
663
664 Beta 1, December 24th 1998
665 --------------------------
666
667 wxGTK:
668
669 - Various
670
671 wxMSW, wxMotif: not in sync with this release.
672
673
674 Alpha 18, December 29th 1998
675 ----------------------------
676
677 wxMSW:
678
679 - Win16 support working again (VC++ 1.5)
680 - Win16 now uses generic wxNotebook, wxListCtrl,
681 wxTreeCtrl -- more or less working now, although
682 a little work on wxNotebook is still needed.
683 Under 16-bit Windows, get assertion when you click
684 on a tab.
685 - Wrote 16-bit BC++ makefiles: samples don't yet link.
686 - Added CodeWarrior support to distribution courtesy
687 of Stefan Csomor.
688
689 wxMotif:
690
691 - Cured scrolling problem: scrollbars now show/hide themselves
692 without (permanently) resizing the window.
693 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
694 that disabled scrollbar paging.
695 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
696 colours correctly.
697 - Removed major bug whereby dialogs were unmanaged automatically
698 when any button was pressed.
699 - Fixed colours of wxWindow scrollbars, made list and text controls
700 have a white background.
701 - Fixed dialog colour setting.
702 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
703 they have sensible colours by default.
704 - Fixed a bug in wxStaticBox.
705 - Cured wxTreeCtrl bug: now works pretty well!
706 - Debugged DrawEllipticArc (a ! in the wrong place).
707 - Added SetClippingRegion( const wxRegion& region ).
708 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
709
710 Alpha 17, November 22nd 1998
711 ----------------------------
712
713 wxMSW:
714
715 - More documentation updates, especially for
716 wxLayoutWindow classes and debugging facilities.
717 - Changed wxDebugContext to use wxDebugLog instead
718 of wxTrace.
719 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
720 However, DLL support may be broken for BC++ since
721 VC++ 6 required changing of WXDLLEXPORT keyword
722 position.
723 - Numerous miscellaneous changes.
724
725 wxMotif:
726
727 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
728 were too buggy (probably not design for dynamic addition/removal of
729 child frames).
730 - Some improvements to the wxNotebook implementation.
731 - wxToolBar now uses a bulletin board instead of a form, in an attempt
732 to make it possible to add ordinary wxControls to a toolbar.
733 - Cured problem with not being able to use global memory operators,
734 by defining two more global operators, so that the delete will match
735 the debugging implementation.
736 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
737 global memory operators (usually OK) and #defining new to be
738 WXDEBUG_NEW (sometimes it might not be OK).
739 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
740 - Added a parent-existance check to popup menu code to make it not crash.
741 - Added some optimization in wxWindow::SetSize to produce less flicker.
742 It remains to be seen whether this produces any resize bugs.
743
744 It's a long time since I updated this file. Previously done:
745
746 - wxFrame, wxDialog done.
747 - wxScrolledWindow done (but backing pixmap not used at present).
748 - wxBitmap done though could be tidied it up at some point.
749 - Most basic controls are there, if not rigorously tested.
750 - Some MDI support (menus appear on child frames at present).
751 - wxNotebook almost done.
752 - wxToolBar done (horizontal only, which would be easy to extend
753 to vertical toolbars).
754
755 More recently:
756
757 - Colour and font changing done (question mark over what happens
758 to scrollbars).
759 - Accelerators done (for menu items and buttons). Also event loop
760 tidied up in wxApp so that events are filtered through ProcessXEvent.
761 - wxWindow::GetUpdateRegion should now work.
762
763 Alpha 16, September 8th 1998
764 ----------------------------
765
766 wxMSW:
767
768 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
769 sample.
770 - Guilhem's socket classes added, plus wxsocket sample.
771 - A few more makefiles added.
772 - GnuWin32/BC++ compatibility mods.
773 - Further doc updates.
774 - wxProp updates for correct working with wxGTK.
775
776 wxMotif:
777
778 - First start at Motif port.
779 - Made makefiles for wxMotif source directory and minimal sample.
780 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
781 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
782 wxMenu, wxMenuItem, wxMenuBar
783
784 Alpha 15, August 31st 1998
785 --------------------------
786
787 wxMSW:
788
789 - wxBitmap debugged.
790 - wxDC::GetDepth added.
791 - Contribution added whereby wxBitmap will be
792 converted to DC depth if they don't match.
793 - wxConfig API improved, documentation updated.
794 - Printing classes name conventions cleaned up.
795 - wxUpdateUIEvent now derives from wxCommandEvent
796 so event can travel up the window hierachy.
797
798 Alpha 14, July 31st 1998
799 ------------------------
800
801 wxMSW:
802
803 - Toolbar API has been simplified, and now
804 wxFrame::GetClientArea returns the available client
805 area when toolbar, status bar etc. have been accounted for.
806 wxFrame::CreateToolBar added in line with CreateStatusBar.
807 - Documentation updates, incl. for wxToolBar.
808 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
809 - Various additions from other folk, e.g. streams, wxConfig
810 changes, wxNotebook.
811 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
812
813 Alpha 13, July 8th 1998
814 -----------------------
815
816 wxMSW:
817
818 - Implemented wxPoint as identical to POINT on Windows, and
819 altered wxDC wxPoint functions to use wxPoint directly in
820 Windows functions, for efficiency.
821 - Cured wxASSERT bug in wxStatusBar95.
822 - #ifdefed out some bits in oleutils.cpp for compilers that
823 don't support it.
824 - Added some operators to wxPoint, wxSize.
825 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
826
827 Alpha 12, July 7th 1998
828 -----------------------
829
830 wxMSW:
831
832 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
833 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
834
835 Alpha 11, July 3rd 1998
836 -----------------------
837
838 wxMSW:
839
840 - Added thread.h, thread.cpp.
841 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
842 wxMenuBar.
843 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
844 SetTextColor to SetTextColour, and added or made public several
845 wxMenuItem accessors.
846 - Added two overloads to wxRegion::Contains. Added
847 wxRegion::IsEmpty for a more consistent naming convention.
848 - Added Vadim's wxDataObject and wxDropSource.
849 - ENTER/LEAVE events now work.
850 - Cured wxMemoryDC bug where the DC wasn't being deleted.
851 - Cured wxGauge SetSize major bugginess.
852 - Cured problem where if a GDI object was created on the stack,
853 then went out of scope, then another object was selected into
854 the DC, GDI objects would leak. This is because the assignment
855 to e.g. wxDC::m_pen would delete the GDI object without it first
856 being selected out of the DC. Cured by selecting the old DC object
857 first, then doing the assignment.
858 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
859 - Various other bug fixes and additions.
860
861 Generic:
862
863 - Major work on Dialog Editor (still plenty to go).
864 - Expanded documentation a bit more.
865
866 Alpha 10, May 7th 1998
867 ----------------------
868
869 wxMSW:
870
871 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
872 and wxIcon functions so that you can specify what size of
873 icon should be loaded. Probably will remain a Windows-specific thing.
874 - wxStatusBar95 now works for MDI frames.
875 - Toolbars in MDI frames now behave normally. They still
876 require application-supplied positioning code though.
877 - Changed installation instructions, makefiles and batch files
878 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
879 change to support Mingw32/EGCS. Bison now used by default.
880
881 Alpha 9, April 27th 1998
882 ------------------------
883
884 wxMSW:
885
886 - Cured bug in wxStatusBar95 that caused a crash if multiple
887 fields were used.
888 - Added Gnu-Win32 b19/Mingw32 support by changing resource
889 compilation and pragmas.
890 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
891 commands because VZ changed the id setting in wxMenu::MSWCommand.
892
893 Generic:
894
895 - Corrected some bugs, such as the wxModule compilation problem.
896 - Added Gnu-Win32 b19/Mingw32 support by changing resource
897 compilation and pragmas.
898 - Changed SIZEOF to WXSIZEOF.
899
900 Alpha 8, April 17th 1998
901 ------------------------
902
903 wxMSW:
904
905 - Added IsNull to wxGDIObject to check if the ref data is present or not.
906 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
907 some reason :-(
908 - Added wxJoystick class and event handling, and simple demo.
909 - Added simple wxWave class. Needs Stop() function.
910 - Added wxModule (module.h/module.cpp) to allow definition
911 of modules to be initialized and cleaned up on wxWindows
912 startup/exit.
913 - Start of Mingw32 compatibility (see minimal and dialogs samples
914 makefile.m95 files, and install.txt).
915 - Note: Windows printing has stopped working... will investigate.
916 VADIM'S CHANGES:
917 - Updated wxString: bug fixes, added wxArrayString, some
918 compatibility functions.
919 - Updated log.h/cpp, added wxApp::CreateLogTarget.
920 - file.h: new wxTempFile class.
921 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
922 - statbr95: wxStatusBar95 control.
923 - registry.h/cpp: wxRegKey class for Win95 registry.
924 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
925 - wxConfig and wxFileConfig classes.
926
927 Generic:
928
929 - Added src/other/png, src/other/zlib directories.
930 - Added samples/png.
931 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
932 Porters, please check particularly your wxTreeCtrl and wxListCtrl
933 header files.
934 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
935
936 Alpha 7, March 30th 1998
937 ------------------------
938
939 wxMSW:
940
941 - Added tab classes, tab sample.
942 - Now can return FALSE from OnInit and windows will be
943 cleaned up properly before exit.
944 - Improved border handling so panels don't get borders
945 automatically.
946 - Debugged MDI activation from Window menu.
947 - Changes to memory debug handling, including checking for
948 memory leaks on application exit - but see issues.txt for
949 unresolved issues.
950 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
951 to allow maintenance of an icon in the Windows 95 taskbar
952 tray area.
953 - Got MFC sample working (MFC and wxWindows in the same
954 application), partly by tweaking ntwxwin.mak settings.
955 - Got DLL compilation working again (VC++).
956 - Changed wxProp/Dialog Editor filenames.
957
958 Generic:
959
960 - Added tab classes, tab sample.
961 - Revised memory.cpp, memory.h slightly; memory.h now #defines
962 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
963 now checks for leaks on exit. Added memcheck sample.
964 See src/msw/issues.txt for more details.
965 - resource.h, resource.cpp changed to make wxDefaultResourceTable
966 a pointer. Now initialize resource system with
967 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
968 allow better control of memory.
969 - wxString now derives from wxObject, to enable memory leak
970 checking.
971 - Added some #include fixes in various files, plus changed
972 float to long in wxToolBar files.
973
974 Alpha 6, March 10th 1998
975 ------------------------
976
977 wxMSW:
978
979 - Found stack error bug - stopped unwanted OnIdle recursion.
980 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
981 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
982 check if the number of top-level windows is zero before
983 exiting. Also, wxApp::GetTopWindow will return either
984 m_topWindow or the first member of wxTopLevelWindows, so you
985 don't have to call wxApp::SetTopWindow.
986 - Added dynarray.h/dynarray.cpp (from Vadim).
987 - Added first cut at OLE drag and drop (from Vadim). dnd sample
988 added. Drop target only at this stage. See src/msw/ole/*.cpp,
989 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
990 Doesn't work with GnuWin32 - no appropriate headers e.g. for
991 IUnknown.
992 Doesn't work with BC++ either - crashes on program startup.
993 - Added Vadim's owner-draw modifications - will probably remain
994 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
995 - Added wxLB_OWNERDRAW for owner-draw listboxes.
996 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
997 Doesn't entirely work for WIN16.
998 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
999 can also be used as an argument to wxMenu::Append, not just for
1000 internal implementation.
1001 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
1002 in makeg95.env, together with mingw32.bat). However, resource
1003 binding is not working yet so most apps with dialogs crash.
1004
1005 Generic:
1006
1007 - Added Vadim's dynarray.h, dynarray.cpp.
1008 - Added Vadim's menuitem.cpp.
1009 - Added Windows-specific wxCheckListBox,
1010 owner-draw wxListBox, and drag-and-drop
1011 (see docs/msw/changes.txt).
1012
1013 Alpha 5, 14th February 1998
1014 --------------------------
1015
1016 wxMSW:
1017
1018 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1019 DISTRIBUTIONS. This change log will therefore now refer to
1020 the Windows-specific code only. See docs/changes.txt for generic
1021 changes.
1022 - Removed Windows-specific reference counting system (GDI
1023 resources were cleaned up in idle time) - minimal
1024 advantages now we have a wxWin reference counting system.
1025 - Added missing WXDLLEXPORT keywords so DLL compilation works
1026 again.
1027 - Removed most warnings for GnuWin32 compilation.
1028 - Added wxRegion/wxRegionIterator, but haven't yet used it in
1029 e.g. wxDC.
1030
1031 Generic:
1032
1033 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1034 DISTRIBUTIONS. This change log will therefore now refer to
1035 the generic code only. See docs/msw/changes.txt for Windows-specific
1036 changes.
1037 - Readmes, change logs and installation files now go in
1038 platform-specific directories under docs, e.g. docs/msw,
1039 docs/gtk.
1040 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
1041 created dynamically, not as a global object.
1042 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
1043 - Changed names of some include/wx/generic headers to be
1044 consistent and to conform to gcc pragma conventions. Also
1045 changed choicesg.cpp to choicdgg.cpp.
1046 - Added gcc pragmas.
1047 - Added gtk inclusion in include/wx headers.
1048 - Added consistent file headings to source and headers.
1049 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
1050 added a few references to wxTransString.
1051 - Added operator to wxTransString that converts automatically
1052 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
1053 - samples/internat now works (minimally).
1054 - Added wxMouseEvent::GetPosition and
1055 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
1056 - Made wxSize and wxRect contain longs not ints.
1057 - Cured some lemory leaks (thanks Vadim).
1058 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
1059 will only keep processing OnIdle if it returns TRUE from
1060 MoreRequested.
1061
1062 Alpha 4, 31st January 1998
1063 --------------------------
1064
1065 All:
1066
1067 - Changed wxDC functions to take longs instead of floats. GetSize now takes
1068 integer pointers, plus a version that returns a wxSize.
1069 - const keyword added to various wxDC functions.
1070 - Under Windows, wxDC no longer has any knowledge of whether
1071 an associated window is scrolled or not. Instead, the device
1072 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
1073 - wxScrolledWindow applications can optionally override the virtual OnDraw
1074 function instead of using the OnPaint event handler. The wxDC passed to
1075 OnDraw will be translated by PrepareDC to reflect scrolling.
1076 When drawing outside of OnDraw, must call PrepareDC explicitly.
1077 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
1078 scrolling toolbars.
1079 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
1080 to help printing with multiple pages.
1081 - IPC classes given base classes (wxConnectionBase etc.) which
1082 define the API used by different implementations. DDE
1083 implementation updated to use these base classes.
1084 - wxHelpInstance now separated into wxHelpControllerBase (base
1085 for all implementations), wxWinHelpController (uses standard
1086 WinHelp), wxXLPHelPController (talks to wxHelp by DDE or
1087 TCP/IP). There will be others eventually, such as
1088 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
1089 - Added Vadim Zeitlin's wxString class plus
1090 internationalization code (gettext simulation, wxLocale, etc.).
1091 New files from Vadim:
1092 include\wx\string.h
1093 include\wx\debug.h
1094 include\wx\file.h
1095 include\wx\log.h
1096 include\wx\intl.h
1097 src\common\string.cpp
1098 src\common\log.cpp
1099 src\common\intl.cpp
1100 src\common\file.cpp
1101 No longer use GNU wxString files.
1102 - Split off file-related functions into include\wx\filefn.h and
1103 src\common\filefn.cpp.
1104 - Borland C++ support (WIN32) for main library and
1105 samples, using makefile.b32 files.
1106 - Preparation done for allowing BC++ to compile wxWin as a DLL,
1107 including changes to defs.h.
1108 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
1109 introduced.
1110 - Added wxShowEvent (generated when window is being shown or
1111 hidden).
1112 - Got minimal, docview, mdi samples working for 16-bit VC++ and
1113 cured 16-bit problem with wxTextCtrl (removed global memory
1114 trick).
1115 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
1116
1117 Alpha 3, September 1997
1118 -----------------------
1119
1120 All:
1121
1122 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
1123 - Instigated new file hierarchy, split files and classes up more logically.
1124 - PrologIO and some other utils now put into core library.
1125 - Revamped print/preview classes, added wxPageSetupDialog.
1126 - Started documentation.
1127
1128 Alpha 2, 30th April 1997
1129 ------------------------
1130
1131 All:
1132
1133 - EVT_... macros now have at least one argument, for conformance
1134 with MetroWerks compiler.
1135 - Added ids to .wxr file format.
1136 - Got Dialog Editor compiled and running again but need
1137 to extend functionality to be in line with new controls.
1138 Added dialoged\test app to allow dynamic loading of .wxr files
1139 for testing purposes.
1140 - Rewrote wxBitmap to allow installable file type
1141 handlers.
1142 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
1143 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
1144 fully).
1145 - Added back wxRadioBox.
1146 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
1147 a separate file.
1148
1149 Alpha 1, 5th April 1997
1150 -----------------------
1151
1152 Generic:
1153
1154 At this point, the following has been achieved:
1155
1156 - A lot, but not all, of the code has been revamped for better
1157 naming conventions, protection of data members, and use of
1158 wxString instead of char *.
1159 - Obsolete functionality deleted (e.g. default wxPanel layout,
1160 old system event system) and code size reduced.
1161 - Class hierarchy changed (see design doc) - base classes such
1162 as wxbWindow now removed.
1163 - No longer includes windows.h in wxWin headers, by using stand-in
1164 Windows types where needed e.g. WXHWND.
1165 - PrologIO revised.
1166 - wxScrolledWindow, wxStatusBar and new MDI classes added.
1167 MDI is now achived using separate classes, not window styles.
1168 - wxSystemSettings added, and made use of to reflect standard
1169 Windows settings.
1170 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
1171 settings mucho rationalised.
1172 - All windows are now subclassed with the same window proc to make
1173 event handling far more consistent. Old internal wxWnd and derived
1174 classes removed.
1175 - API for controls revised, in particular addition of
1176 wxValidator parameters and removal of labels for some controls.
1177 - 1 validator written: see examples/validate.
1178 - Event table system introduced (see most samples and
1179 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
1180 made more flexible, with Push/PopEventHandler allowing a chain
1181 of event handlers.
1182 - wxRadioBox removed - will be added back soon.
1183 - Toolbar class hierarchy revised:
1184 wxToolBarBase
1185 wxToolBarSimple (= old wxToolBar)
1186 wxToolBar95 (= old wxButtonBar under Win95
1187 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
1188 - Constraint system debugged somewhat (sizers now work properly).
1189 - wxFileDialog, wxDirDialog added; other common dialogs now
1190 have class equivalents. Generic colour and font dialogs
1191 rewritten to not need obsolete panel layout.
1192 - .wxr resource system partially reinstated, though needs
1193 an integer ID for controls. Hopefully the resource system
1194 will be replaced by something better and more efficient
1195 in the future.
1196 - Device contexts no longer stored with window and accessed
1197 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
1198 variables instead.
1199 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
1200 determines whether labels are shown. Other Win95-specific flags
1201 introduced, e.g. for showing ticks.
1202 - Styles introduced for dealing with 3D effects per window, for
1203 any window: all Win95 3D effects supported, plus transparent windows.
1204 - Major change to allow 3D effect support without CTL3D, under
1205 Win95.
1206 - Bitmap versions of button and checkbox separated out into new
1207 classes, but unimplemented as yet because I intend to remove
1208 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
1209 - utils/wxprop classes working (except maybe wxPropertyFormView)
1210 in preparation for use in Dialog Editor.
1211 - GNU-WIN32 compilation verified (a month or so ago).
1212
1213