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