[Wgui-cvs] wgui CHANGES,1.160,1.161 wGui-VS71.vcproj,1.6,1.7
Status: Beta
Brought to you by:
greenwire
|
From: Rob W. <gre...@us...> - 2006-01-27 16:59:47
|
Update of /cvsroot/wgui/wgui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6271 Modified Files: CHANGES wGui-VS71.vcproj Log Message: Fixed project files to ignore "unreached code" warning in std::lists. Other minor changes. Index: CHANGES =================================================================== RCS file: /cvsroot/wgui/wgui/CHANGES,v retrieving revision 1.160 retrieving revision 1.161 diff -C2 -d -r1.160 -r1.161 *** CHANGES 29 Dec 2005 13:46:18 -0000 1.160 --- CHANGES 27 Jan 2006 16:59:39 -0000 1.161 *************** *** 1,5 **** --- 1,7 ---- 0.4.1 -> 0.4.2 + Added CDropDown: GetFirstSelectedIndex() which returns the index of the first selected item (courtesy of Jurgen De Backer) + + Added CLabel: GetRenderedString() which returns a pointer to the label's rendered string + Added CListBox: GetFirstSelectedIndex() which returns the index of the first selected item (courtesy of Jurgen De Backer) + + Added CMessageBox: FitToText() which causes the message box to resize itself to fit the text + Added CRadioButton class which provides radio buttons (courtesy of Jurgen De Backer) + Added CRenderedString: GetMaxFontWidth() returns the maximum width of all the characters for the current font (courtesy of Jurgen De Backer) *************** *** 8,11 **** --- 10,14 ---- + Changed CFrame: SetModal() turning off modal for a frame will set the keyboard and mouse focus to the frame's parent (courtesy of Jurgen De Backer) + Changed CGroupBox: The sText parameter on the constructor is now optional and will default to an empty string + + Changed CRenderedString: All the parameters for GetMetrics() are now optional + Bugfix CListBox: Adding and removing items now sets the scrollbar correctly so you can't scroll past everything in the window (courtesy of Jurgen De Backer) Index: wGui-VS71.vcproj =================================================================== RCS file: /cvsroot/wgui/wgui/wGui-VS71.vcproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** wGui-VS71.vcproj 29 Dec 2005 13:46:18 -0000 1.6 --- wGui-VS71.vcproj 27 Jan 2006 16:59:39 -0000 1.7 *************** *** 79,83 **** WarnAsError="FALSE" Detect64BitPortabilityProblems="TRUE" ! DebugInformationFormat="3"/> <Tool Name="VCCustomBuildTool"/> --- 79,84 ---- WarnAsError="FALSE" Detect64BitPortabilityProblems="TRUE" ! DebugInformationFormat="3" ! DisableSpecificWarnings="4702"/> <Tool Name="VCCustomBuildTool"/> *************** *** 294,301 **** </File> <File ! RelativePath="includes\wg_range_control.h"> </File> <File ! RelativePath="includes\wg_radiobutton.h"> </File> <File --- 295,302 ---- </File> <File ! RelativePath="includes\wg_radiobutton.h"> </File> <File ! RelativePath="includes\wg_range_control.h"> </File> <File |