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