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