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