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