[Wgui-cvs] wgui/includes wg_listbox.h,1.25,1.26
Status: Beta
Brought to you by:
greenwire
|
From: Rob W. <gre...@us...> - 2004-07-07 21:04:04
|
Update of /cvsroot/wgui/wgui/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30602/includes Modified Files: wg_listbox.h Log Message: Draw architecture changes. Index: wg_listbox.h =================================================================== RCS file: /cvsroot/wgui/wgui/includes/wg_listbox.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** wg_listbox.h 3 Jun 2004 19:10:52 -0000 1.25 --- wg_listbox.h 7 Jul 2004 21:03:55 -0000 1.26 *************** *** 127,130 **** --- 127,136 ---- virtual void SetWindowRect(const CRect& WindowRect); + //! Blit the window to the given surface, using m_WindowRect as the offset into the surface + //! \param ScreenSurface A reference to the surface that the window will be copied to + //! \param FloatingSurface A reference to the floating surface which is overlayed at the very end (used for tooltips, menus and such) + //! \param Offset This is the current offset into the Surface that should be used as reference + virtual void PaintToSurface(SDL_Surface& ScreenSurface, SDL_Surface& FloatingSurface, const CPoint& Offset) const; + //! This is called whenever the listbox is clicked on by the mouse //! Only the topmost window that bounds the point will be called by the system |