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