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