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