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