[Wgui-cvs] wgui/includes wg_dropdown.h,1.15,1.16 wg_rect.h,1.31,1.32
Status: Beta
Brought to you by:
greenwire
|
From: Rob W. <gre...@us...> - 2004-07-15 18:26:41
|
Update of /cvsroot/wgui/wgui/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25778/includes Modified Files: wg_dropdown.h wg_rect.h Log Message: Draw architecture changes. Index: wg_rect.h =================================================================== RCS file: /cvsroot/wgui/wgui/includes/wg_rect.h,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** wg_rect.h 25 Jun 2004 13:34:15 -0000 1.31 --- wg_rect.h 15 Jul 2004 18:26:14 -0000 1.32 *************** *** 193,196 **** --- 193,197 ---- enum ERelativePosition { + RELPOS_INVALID = 0, //!< This usually indicates some form of error RELPOS_ABOVE = 1, //!< The point is above the top of the CRect RELPOS_BELOW = 2, //!< The point is below the bottom of the CRect Index: wg_dropdown.h =================================================================== RCS file: /cvsroot/wgui/wgui/includes/wg_dropdown.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** wg_dropdown.h 1 Jul 2004 17:00:34 -0000 1.15 --- wg_dropdown.h 15 Jul 2004 18:26:14 -0000 1.16 *************** *** 89,92 **** --- 89,96 ---- void SetAllSelections(bool bSelected) { m_pListBox->SetAllSelections(bSelected); } + //! Sets the height of the drop list + //! \param iItemCount The height of the listbox in number of items shown (this is set to 5 by default) + void SetListboxHeight(int iItemCount); + // CWindow overrides |