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