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