Re: [GD-Windows] cursor over titlebar
Brought to you by:
vexxed72
|
From: <cas...@ya...> - 2002-02-08 00:18:19
|
Hey, that worked fine!
but with pt.y instead of pt.x ;-)
Ignacio Castaño
ca...@as...
Brian Hook wrote:
Look at WM_NCMOUSEMOVE and if it enters your title area, show the
cursor?
case WM_NCMOUSEMOVE:
{
POINTS pts = MAKEPOINTS( lParam );
ev.evType = HEvent::ET_MOUSEMOVE;
POINT pt = { pts.x, pts.y };
ScreenToClient( hWnd, &pt );
if ( pt.x < 0 ) ShowCursor( TRUE ); file://or something like
that
}
break;
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
|