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