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