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