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