Fixed typo in macro ICOM_METHOD11 parameter list.
[wine] / include / win.h
1 /*
2  * Window definitions
3  *
4  * Copyright 1993 Alexandre Julliard
5  */
6
7 #ifndef __WINE_WIN_H
8 #define __WINE_WIN_H
9
10 #include "windef.h"
11 #include "wingdi.h"
12 #include "winproc.h"
13 #include "winuser.h"
14 #include "wine/windef16.h"
15
16 #define WND_MAGIC     0x444e4957  /* 'WIND' */
17
18   /* Built-in class names (see _Undocumented_Windows_ p.418) */
19 #define POPUPMENU_CLASS_NAME "#32768"  /* PopupMenu */
20 #define DESKTOP_CLASS_NAME   "#32769"  /* Desktop */
21 #define DIALOG_CLASS_NAME    "#32770"  /* Dialog */
22 #define WINSWITCH_CLASS_NAME "#32771"  /* WinSwitch */
23 #define ICONTITLE_CLASS_NAME "#32772"  /* IconTitle */
24
25 #define POPUPMENU_CLASS_ATOM MAKEINTATOM(32768)  /* PopupMenu */
26 #define DESKTOP_CLASS_ATOM   ((ATOM)32769)       /* Desktop */
27 #define DIALOG_CLASS_ATOM    MAKEINTATOM(32770)  /* Dialog */
28 #define WINSWITCH_CLASS_ATOM MAKEINTATOM(32771)  /* WinSwitch */
29 #define ICONTITLE_CLASS_ATOM MAKEINTATOM(32772)  /* IconTitle */
30
31 /* Built-in 32-bit classes */
32 typedef enum
33 {
34     BIC32_BUTTON,
35     BIC32_EDIT,
36     BIC32_LISTBOX,
37     BIC32_COMBO,
38     BIC32_COMBOLB,
39     BIC32_POPUPMENU,
40     BIC32_STATIC,
41     BIC32_SCROLL,
42     BIC32_MDICLIENT,
43     BIC32_DESKTOP,
44     BIC32_DIALOG,
45     BIC32_ICONTITLE,
46     BIC32_NB_CLASSES
47 } BUILTIN_CLASS32;
48
49   /* PAINT_RedrawWindow() control flags */
50 #define RDW_EX_USEHRGN          0x0001
51 #define RDW_EX_DELETEHRGN       0x0002
52 #define RDW_EX_XYWINDOW         0x0004
53 #define RDW_EX_TOPFRAME         0x0010
54 #define RDW_EX_DELAY_NCPAINT    0x0020
55
56 struct tagCLASS;
57 struct tagDCE;
58 struct tagMESSAGEQUEUE;
59 struct tagWND_DRIVER;
60
61 typedef struct tagWND
62 {
63     struct tagWND *next;          /* Next sibling */
64     struct tagWND *child;         /* First child */
65     struct tagWND *parent;        /* Window parent (from CreateWindow) */
66     struct tagWND *owner;         /* Window owner */
67     struct tagCLASS *class;       /* Window class */
68     HWINDOWPROC    winproc;       /* Window procedure */
69     DWORD          dwMagic;       /* Magic number (must be WND_MAGIC) */
70     HWND         hwndSelf;      /* Handle of this window */
71     HINSTANCE    hInstance;     /* Window hInstance (from CreateWindow) */
72     RECT         rectClient;    /* Client area rel. to parent client area */
73     RECT         rectWindow;    /* Whole window rel. to parent client area */
74     LPWSTR        text;           /* Window text */
75     void          *pVScroll;      /* Vertical scroll-bar info */
76     void          *pHScroll;      /* Horizontal scroll-bar info */
77     void          *pProp;         /* Pointer to properties list */
78     struct tagDCE *dce;           /* Window DCE (if CS_OWNDC or CS_CLASSDC) */
79     HGLOBAL16      hmemTaskQ;     /* Task queue global memory handle */
80     HRGN16         hrgnUpdate;    /* Update region */
81     HRGN           hrgnWnd;       /* window's region */
82     HWND         hwndLastActive;/* Last active popup hwnd */
83     DWORD          dwStyle;       /* Window style (from CreateWindow) */
84     DWORD          dwExStyle;     /* Extended style (from CreateWindowEx) */
85     UINT         wIDmenu;       /* ID or hmenu (from CreateWindow) */
86     DWORD          helpContext;   /* Help context ID */
87     WORD           flags;         /* Misc. flags (see below) */
88     HMENU16        hSysMenu;      /* window's copy of System Menu */
89     int            irefCount;     /* window's reference count*/
90     DWORD          userdata;      /* User private data */
91     struct tagWND_DRIVER *pDriver;  /* Window driver */
92     void          *pDriverData;   /* Window driver data */
93     DWORD          wExtra[1];     /* Window extra bytes */
94 } WND;
95
96 /* Host attributes */
97
98 #define HAK_BITGRAVITY     1
99 #define HAK_ACCEPTFOCUS    2
100 #define HAK_ICONICSTATE    3
101 #define HAK_ICONS          4
102
103 /* Bit Gravity */
104
105 #define BGForget           0
106 #define BGNorthWest        1
107 #define BGNorth            2
108 #define BGNorthEast        3
109 #define BGWest             4
110 #define BGCenter           5
111 #define BGEast             6
112 #define BGSouthWest        7
113 #define BGSouth            8
114 #define BGSouthEast        9
115 #define BGStatic           10
116
117 typedef struct tagWND_DRIVER
118 {
119     void   (*pInitialize)(WND *);
120     void   (*pFinalize)(WND *);
121     BOOL (*pCreateDesktopWindow)(WND *, struct tagCLASS *, BOOL);
122     BOOL (*pCreateWindow)(WND *, struct tagCLASS *, CREATESTRUCTA *, BOOL);
123     BOOL (*pDestroyWindow)(WND *);
124     WND*   (*pSetParent)(WND *, WND *);
125     void   (*pForceWindowRaise)(WND *);
126     void   (*pSetWindowPos)(WND *, const WINDOWPOS *, BOOL);
127     void   (*pSetText)(WND *, LPCWSTR);
128     void   (*pSetFocus)(WND *);
129     void   (*pPreSizeMove)(WND *);
130     void   (*pPostSizeMove)(WND *);
131     void   (*pSurfaceCopy)(WND *, HDC, INT, INT, const RECT *, BOOL);
132     void   (*pSetDrawable)(WND *, HDC, WORD, BOOL);
133     BOOL   (*pSetHostAttr)(WND *, INT haKey, INT value);
134     BOOL (*pIsSelfClipping)(WND *);
135     void   (*pSetWindowRgn)(WND *, const HRGN);
136 } WND_DRIVER;
137
138 extern WND_DRIVER *WND_Driver;
139
140 typedef struct
141 {
142     RECT16         rectNormal;
143     POINT16        ptIconPos;
144     POINT16        ptMaxPos;
145     HWND16         hwndIconTitle;
146 } INTERNALPOS, *LPINTERNALPOS;
147
148   /* WND flags values */
149 #define WIN_NEEDS_BEGINPAINT   0x0001 /* WM_PAINT sent to window */
150 #define WIN_NEEDS_ERASEBKGND   0x0002 /* WM_ERASEBKGND must be sent to window*/
151 #define WIN_NEEDS_NCPAINT      0x0004 /* WM_NCPAINT must be sent to window */
152 #define WIN_RESTORE_MAX        0x0008 /* Maximize when restoring */
153 #define WIN_INTERNAL_PAINT     0x0010 /* Internal WM_PAINT message pending */
154 #define WIN_NATIVE             0x0020 /* Directly mapped to the window provided by the driver */
155 #define WIN_NEED_SIZE          0x0040 /* Internal WM_SIZE is needed */
156 #define WIN_NCACTIVATED        0x0080 /* last WM_NCACTIVATE was positive */
157 #define WIN_ISDIALOG           0x0200 /* Window is a dialog */
158 #define WIN_ISWIN32            0x0400 /* Understands Win32 messages */
159 #define WIN_NEEDS_SHOW_OWNEDPOPUP 0x0800 /* WM_SHOWWINDOW:SC_SHOW must be sent in the next ShowOwnedPopup call */
160 #define WIN_NEEDS_INTERNALSOP  0x1000 /* Window was hidden by WIN_InternalShowOwnedPopups */
161
162   /* BuildWinArray() flags */
163 #define BWA_SKIPDISABLED        0x0001
164 #define BWA_SKIPHIDDEN          0x0002
165 #define BWA_SKIPOWNED           0x0004
166 #define BWA_SKIPICONIC          0x0008
167
168   /* WIN_UpdateNCRgn() flags */
169 #define UNC_CHECK               0x0001
170 #define UNC_ENTIRE              0x0002
171 #define UNC_REGION              0x0004
172 #define UNC_UPDATE              0x0008
173 #define UNC_DELAY_NCPAINT       0x0010
174 #define UNC_IN_BEGINPAINT       0x0020
175
176   /* Window functions */
177 extern void   WIN_LockWnds( void );
178 extern void   WIN_UnlockWnds( void );
179 extern int    WIN_SuspendWndsLock( void );
180 extern void   WIN_RestoreWndsLock(int ipreviousLock);
181 extern WND*   WIN_FindWndPtr( HWND hwnd );
182 extern WND*   WIN_LockWndPtr(WND *wndPtr);
183 extern void   WIN_ReleaseWndPtr(WND *wndPtr);
184 extern void   WIN_UpdateWndPtr(WND **oldPtr,WND *newPtr);
185 extern WND*   WIN_GetDesktop(void);
186 extern void   WIN_ReleaseDesktop(void);
187 extern void   WIN_DumpWindow( HWND hwnd );
188 extern void   WIN_WalkWindows( HWND hwnd, int indent );
189 extern BOOL WIN_UnlinkWindow( HWND hwnd );
190 extern BOOL WIN_LinkWindow( HWND hwnd, HWND hwndInsertAfter );
191 extern HWND WIN_FindWinToRepaint( HWND hwnd, HQUEUE16 hQueue );
192 extern BOOL WIN_ResetQueueWindows( WND* wnd, HQUEUE16 hQueue, HQUEUE16 hNew);
193 extern BOOL WIN_CreateDesktopWindow(void);
194 extern HWND WIN_GetTopParent( HWND hwnd );
195 extern WND*   WIN_GetTopParentPtr( WND* pWnd );
196 extern BOOL WIN_IsWindowDrawable(WND*, BOOL );
197 extern WND**  WIN_BuildWinArray( WND *wndPtr, UINT bwa, UINT* pnum );
198 extern void   WIN_ReleaseWinArray(WND **wndArray);
199 extern BOOL WIN_InternalShowOwnedPopups( HWND owner, BOOL fShow, BOOL unmanagedOnly );
200
201 extern HICON16 NC_IconForWindow( WND *wndPtr );
202
203 extern HWND CARET_GetHwnd(void);
204 extern void CARET_GetRect(LPRECT lprc);  /* windows/caret.c */
205
206 extern BOOL16 DRAG_QueryUpdate( HWND, SEGPTR, BOOL );
207 extern void DEFWND_SetTextA( WND *wndPtr, LPCSTR text );
208 extern void DEFWND_SetTextW( WND *wndPtr, LPCWSTR text );
209 extern HBRUSH DEFWND_ControlColor( HDC hDC, UINT16 ctlType );     /* windows/defwnd.c */
210
211 extern void PROPERTY_RemoveWindowProps( WND *pWnd );                  /* windows/property.c */
212
213 extern BOOL PAINT_RedrawWindow( HWND hwnd, const RECT *rectUpdate,
214                                   HRGN hrgnUpdate, UINT flags,
215                                   UINT control );                     /* windows/painting.c */
216 extern HRGN WIN_UpdateNCRgn(WND* wnd, HRGN hRgn, UINT flags);     /* windows/painting.c */
217
218 /* controls/widgets.c */
219 extern BOOL WIDGETS_Init( void );
220 extern BOOL WIDGETS_IsControl( WND* pWnd, BUILTIN_CLASS32 cls );  
221
222 /* controls/icontitle.c */
223 extern LRESULT WINAPI IconTitleWndProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam );
224
225 extern HWND ICONTITLE_Create( WND* );
226 extern BOOL ICONTITLE_Init( void );
227
228 /* windows/focus.c */
229 extern void FOCUS_SwitchFocus( struct tagMESSAGEQUEUE *pMsgQ, HWND , HWND );
230
231 /* windows/edit.c */
232 extern LRESULT WINAPI EditWndProc( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam );
233
234 /* windows/listbox.c */
235 extern LRESULT WINAPI ListBoxWndProc( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam );
236 extern LRESULT WINAPI ComboLBWndProc( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam );
237
238 /* generic method that returns TRUE if the window properties ask for a 
239    window manager type of border */
240 extern BOOL WIN_WindowNeedsWMBorder( DWORD style, DWORD exStyle );
241
242 #endif  /* __WINE_WIN_H */