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