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