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