1995-01-24 17:21:01 +01:00
|
|
|
/*
|
|
|
|
* Window non-client functions definitions
|
|
|
|
*
|
|
|
|
* Copyright 1995 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1995-01-24 17:21:01 +01:00
|
|
|
*/
|
|
|
|
|
1994-12-10 14:02:28 +01:00
|
|
|
#ifndef __WINE_NONCLIENT_H
|
|
|
|
#define __WINE_NONCLIENT_H
|
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <windef.h>
|
2000-03-08 19:26:56 +01:00
|
|
|
|
2001-08-11 00:51:42 +02:00
|
|
|
extern LONG NC_HandleNCPaint( HWND hwnd , HRGN clip);
|
|
|
|
extern LONG NC_HandleNCActivate( HWND hwnd, WPARAM wParam );
|
|
|
|
extern LONG NC_HandleNCCalcSize( HWND hwnd, RECT *winRect );
|
|
|
|
extern LONG NC_HandleNCHitTest( HWND hwnd, POINT pt );
|
|
|
|
extern LONG NC_HandleNCLButtonDown( HWND hwnd, WPARAM wParam, LPARAM lParam );
|
|
|
|
extern LONG NC_HandleNCLButtonDblClk( HWND hwnd, WPARAM wParam, LPARAM lParam);
|
2001-10-16 23:52:26 +02:00
|
|
|
extern LONG NC_HandleSysCommand( HWND hwnd, WPARAM wParam, LPARAM lParam );
|
2001-08-11 00:51:42 +02:00
|
|
|
extern LONG NC_HandleSetCursor( HWND hwnd, WPARAM wParam, LPARAM lParam );
|
|
|
|
extern void NC_DrawSysButton( HWND hwnd, HDC hdc, BOOL down );
|
1999-02-26 12:11:13 +01:00
|
|
|
extern BOOL NC_DrawSysButton95( HWND hwnd, HDC hdc, BOOL down );
|
2001-08-11 00:51:42 +02:00
|
|
|
extern void NC_GetSysPopupPos( HWND hwnd, RECT* rect );
|
2001-05-09 19:21:04 +02:00
|
|
|
extern void NC_GetInsideRect( HWND hwnd, RECT *rect );
|
1994-12-10 14:02:28 +01:00
|
|
|
|
|
|
|
#endif /* __WINE_NONCLIENT_H */
|