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