/* * *DeferWindowPos() structure and definitions * * Copyright 1994 Alexandre Julliard */ #ifndef __WINE_WINPOS_H #define __WINE_WINPOS_H #include "windef.h" #include "winbase.h" #include "wingdi.h" #include "winuser.h" struct tagWND; /* undocumented SWP flags - from SDK 3.1 */ #define SWP_NOCLIENTSIZE 0x0800 #define SWP_NOCLIENTMOVE 0x1000 /* Wine extra SWP flag */ #define SWP_WINE_NOHOSTMOVE 0x80000000 struct tagWINDOWPOS16; extern BOOL WINPOS_RedrawIconTitle( HWND hWnd ); extern BOOL WINPOS_ShowIconTitle( struct tagWND* pWnd, BOOL bShow ); extern void WINPOS_GetMinMaxInfo( struct tagWND* pWnd, POINT *maxSize, POINT *maxPos, POINT *minTrack, POINT *maxTrack ); extern BOOL WINPOS_SetActiveWindow( HWND hWnd, BOOL fMouse, BOOL fChangeFocus ); extern BOOL WINPOS_ChangeActiveWindow( HWND hwnd, BOOL mouseMsg ); extern LONG WINPOS_SendNCCalcSize(HWND hwnd, BOOL calcValidRect, RECT *newWindowRect, RECT *oldWindowRect, RECT *oldClientRect, WINDOWPOS *winpos, RECT *newClientRect ); extern LONG WINPOS_HandleWindowPosChanging16(struct tagWND *wndPtr, struct tagWINDOWPOS16 *winpos); extern LONG WINPOS_HandleWindowPosChanging(struct tagWND *wndPtr, WINDOWPOS *winpos); extern HWND WINPOS_WindowFromPoint( HWND hwndScope, POINT pt, INT *hittest ); extern void WINPOS_CheckInternalPos( struct tagWND* wndPtr ); extern BOOL WINPOS_ActivateOtherWindow(struct tagWND* pWnd); extern BOOL WINPOS_CreateInternalPosAtom(void); #endif /* __WINE_WINPOS_H */