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