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