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