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