Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2002-08-20 13:21 VZ, revision 16615

removed extra semi colon which provoked CW warnings (replaces patch 596658)

2002-08-20 13:19 VZ, revision 16614

removed extra semi colon which provoked CW warnings (part of patch 596658)

2002-08-20 11:51 JS, revision 16613

Incremented version number

2002-08-20 10:01 JS, revision 16612

-enable-mdi for X11 now works

2002-08-20 09:27 JS, revision 16611

Added generic MDI files

2002-08-20 09:09 JS, revision 16610

Applied patch [ 597398 ] Generic MDI, wxNotebook based. By Hans Van Leemputten (hansvl) - This patch implements a generic notebook based mdi, due to that wxMDIChildFrame could not derive from wxFrame some things in the samples and in the docmdi classes needed to be adjusted... basically this comes down to not do (wxFrame *) but instead do (wxMDIChildFrame *), or store a pointer to the frame in a wxWindow* instead of a wxFrame variable... - The main reason wxMDIChildFrame cannot derive from wxFrame is that it would take to much platform specific functions to be overwritten (= lot of ifdef's). This then couldn't be called generic anymore, so that's why we need to derive from wxPanel... - Tested on/with: 1. wxMSW (I disabled the MSW MDI implementation to be able to test it), tested it with the MDI sample, docvwmdi sample and docview sample and also tested it with wxWorkshop. (test = compile and run) 2. wxX11, tested with the same set wxWin samples as the wxMSW test. I also compiled wxWorkshop with it, but could not run wxWorkshop due to some issue not related to the MDI implementation. - How to apply: * Apply the patch * move mdig.cpp into wxWindows/src/generic/ * move mdig.h into wxWindows/include/wx/generic/ - Some extra things that still need to be done: * File lists, project files should be updated to include mdig.cpp (the patch only change this on wxX11) * The configuration script should be updated. * Maybe wxUSE_GENERIC_MDI_ARCHITECTURE also should be added so it is only included when wanted...

2002-08-20 08:34 JS, revision 16609

Applied patch [ 597320 ] Return wxNotebook::SetSelection value By Hans Van Leemputten (hansvl) According to the documentation wxNotebook::SetSelection() should return the previous selection... (Like wxMSW does) but the wxUniv version returns the currently selected selection. Patch was tested with wxX11. Applied patch [ 597313 ] Popup menu still used after deletion By Hans Van Leemputten (hansvl) - This patch exists out of 2 parts; Part 1 is a patch to show the problem with the menu sample (this part is just to show the problem and should not be put into CVS!). Part 2 is the fix and should be put in CVS. (src/univ/menu.cpp) - Instructions to reproduce the problem with the menu sample: 1. Apply part 1 of the patch only. 2. Run the sample after recompiling it. 3. Press "Close Test" -> "Close", this will basically remove the current menu bar and recreate it again and re-use the menu item "Close test" from the old menu bar... 4. Again press "Close Test", doing this will already crash the sample. - The cause of the problem is that the m_popupMenu in wxMenu is deleted because it is a child of the old menu bar (Note: it does not get destroyed by the wxMenu destructor, but by DestroyChildren()) and m_popupMenu is not put back to NULL when this happens... - This patch was tested only with wxX11.

2002-08-20 08:13 JS, revision 16608

Reordered ClearCache calls as per Roger Chickering's suggestion.

2002-08-20 05:00 DW, revision 16607

FileDlg updates.

2002-08-19 23:09 VS, revision 16606

reverted Robert's preference for tables-driven EC_CharSet

2002-08-19 22:22 DW, revision 16605

Weekly updates and file dialog implementation

2002-08-19 19:40 SC, revision 16604

corrected button modifier state in carbon, cursor setup corrected

2002-08-19 19:36 SC, revision 16603

wxMac needs same cursor setup for cursor as GTK and MSW

2002-08-19 19:34 SC, revision 16602

const char correction for mac

2002-08-19 17:02 RR, revision 16601

Lots more Unicode fixes. wxClipboard fixes for GTK2 and UTF8. wxFileConfig now uses wxConvLocal to convert text and doesn't crash anymore..

2002-08-19 17:00 RR, revision 16600

Extra check for GTK2.

2002-08-19 16:59 RR, revision 16599

Make wxTELETYPE and wxMODERN map to monospaced fonts.

2002-08-19 16:09 JS, revision 16598

Added EVT_JOY_BUTTON_... macros as per the manual, retained the old names for compatibility. Changed 2.3.2 to 2.3.3 in a couple of files.

2002-08-19 10:03 JS, revision 16597

Removed an old email address

2002-08-19 09:59 JS, revision 16596

Set the selection under Motif in wxChoiceDialog

2002-08-19 02:28 DW, revision 16595

Weekly catchup as well as better font and fontdlg support

2002-08-19 02:24 DW, revision 16594

updates mostly for better font support and some weekly catch-up work

2002-08-19 02:23 DW, revision 16593

some OS/2 updates

2002-08-19 02:22 DW, revision 16592

need for VisualAge to include wchar.h

2002-08-18 22:50 VZ, revision 16591

fixed wxBase compilation (what was msgdlg.h doing in wxchar.cpp?)