[Wgui-cvs] wgui/includes wg_tooltip.h,1.17,1.18 wg_window.h,1.40,1.41
Status: Beta
Brought to you by:
greenwire
|
From: Rob W. <gre...@us...> - 2004-07-06 05:30:46
|
Update of /cvsroot/wgui/wgui/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19966/includes Modified Files: wg_tooltip.h wg_window.h Log Message: New drawing architecture work. Index: wg_tooltip.h =================================================================== RCS file: /cvsroot/wgui/wgui/includes/wg_tooltip.h,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** wg_tooltip.h 2 Apr 2004 17:26:14 -0000 1.17 --- wg_tooltip.h 6 Jul 2004 05:30:37 -0000 1.18 *************** *** 58,62 **** //! Displays the tooltip ! //! \param DrawPoint Where to poisition the top left corner of the tooltip void ShowTip(const CPoint& DrawPoint); --- 58,62 ---- //! Displays the tooltip ! //! \param DrawPoint Where to poisition the top left corner of the tooltip, in view coordinates void ShowTip(const CPoint& DrawPoint); Index: wg_window.h =================================================================== RCS file: /cvsroot/wgui/wgui/includes/wg_window.h,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** wg_window.h 30 Jun 2004 22:31:01 -0000 1.40 --- wg_window.h 6 Jul 2004 05:30:37 -0000 1.41 *************** *** 69,72 **** --- 69,73 ---- //! Gets the window's rectangle + //! This is represented in the window's parent's client coordinates //! \return A copy of the CRect that the window represents virtual CRect GetWindowRect(void) const { return m_WindowRect; } *************** *** 81,85 **** //! Internally it's represented via the window's coordinates //! \return The client area CRect ! virtual CRect GetClientRect(void) const; //! Set the window's background color --- 82,86 ---- //! Internally it's represented via the window's coordinates //! \return The client area CRect ! virtual CRect GetClientRect(void) const { return m_ClientRect; } //! Set the window's background color |