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