Release 970720
[wine/multimedia.git] / include / win.h
blob139e919b4b7fd76c40d2814257d54b684a24fb66
1 /*
2 * Window definitions
4 * Copyright 1993 Alexandre Julliard
5 */
7 #ifndef __WINE_WIN_H
8 #define __WINE_WIN_H
10 #include <X11/Xlib.h>
12 #include "ldt.h"
13 #include "class.h"
14 #include "winproc.h"
16 #define WND_MAGIC 0x444e4957 /* 'WIND' */
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 */
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 */
31 /* Built-in 32-bit classes */
32 typedef enum
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_DESKTOP,
43 BIC32_DIALOG,
44 BIC32_ICONTITLE,
45 BIC32_NB_CLASSES
46 } BUILTIN_CLASS32;
48 /* PAINT_RedrawWindow() control flags */
49 #define RDW_C_USEHRGN 0x0001
50 #define RDW_C_DELETEHRGN 0x0002
52 struct tagDCE;
54 typedef struct tagWND
56 struct tagWND *next; /* Next sibling */
57 struct tagWND *child; /* First child */
58 struct tagWND *parent; /* Window parent (from CreateWindow) */
59 struct tagWND *owner; /* Window owner */
60 CLASS *class; /* Window class */
61 HWINDOWPROC winproc; /* Window procedure */
62 DWORD dwMagic; /* Magic number (must be WND_MAGIC) */
63 HWND32 hwndSelf; /* Handle of this window */
64 HINSTANCE16 hInstance; /* Window hInstance (from CreateWindow) */
65 RECT32 rectClient; /* Client area rel. to parent client area */
66 RECT32 rectWindow; /* Whole window rel. to parent client area */
67 LPSTR text; /* Window text */
68 void *pVScroll; /* Vertical scroll-bar info */
69 void *pHScroll; /* Horizontal scroll-bar info */
70 void *pProp; /* Pointer to properties list */
71 struct tagDCE *dce; /* Window DCE (if CS_OWNDC or CS_CLASSDC) */
72 HGLOBAL16 hmemTaskQ; /* Task queue global memory handle */
73 HRGN16 hrgnUpdate; /* Update region */
74 HWND32 hwndLastActive;/* Last active popup hwnd */
75 DWORD dwStyle; /* Window style (from CreateWindow) */
76 DWORD dwExStyle; /* Extended style (from CreateWindowEx) */
77 UINT16 wIDmenu; /* ID or hmenu (from CreateWindow) */
78 WORD flags; /* Misc. flags (see below) */
79 Window window; /* X window (only for top-level windows) */
80 HMENU16 hSysMenu; /* window's copy of System Menu */
81 DWORD userdata; /* User private data */
82 DWORD wExtra[1]; /* Window extra bytes */
83 } WND;
85 typedef struct
87 RECT16 rectNormal;
88 POINT16 ptIconPos;
89 POINT16 ptMaxPos;
90 HWND16 hwndIconTitle;
91 } INTERNALPOS, *LPINTERNALPOS;
93 /* WND flags values */
94 #define WIN_NEEDS_BEGINPAINT 0x0001 /* WM_PAINT sent to window */
95 #define WIN_NEEDS_ERASEBKGND 0x0002 /* WM_ERASEBKGND must be sent to window*/
96 #define WIN_NEEDS_NCPAINT 0x0004 /* WM_NCPAINT must be sent to window */
97 #define WIN_RESTORE_MAX 0x0008 /* Maximize when restoring */
98 #define WIN_INTERNAL_PAINT 0x0010 /* Internal WM_PAINT message pending */
99 #define WIN_NO_REDRAW 0x0020 /* WM_SETREDRAW called for this window */
100 #define WIN_NEED_SIZE 0x0040 /* Internal WM_SIZE is needed */
101 #define WIN_NCACTIVATED 0x0080 /* last WM_NCACTIVATE was positive */
102 #define WIN_MANAGED 0x0100 /* Window managed by the X wm */
103 #define WIN_ISDIALOG 0x0200 /* Window is a dialog */
104 #define WIN_ISWIN32 0x0400 /* Understands Win32 messages */
105 #define WIN_SAVEUNDER_OVERRIDE 0x0800
107 /* BuildWinArray() flags */
108 #define BWA_SKIPDISABLED 0x0001
109 #define BWA_SKIPHIDDEN 0x0002
110 #define BWA_SKIPOWNED 0x0004
111 #define BWA_SKIPICONIC 0x0008
113 /* Window functions */
114 extern WND* WIN_FindWndPtr( HWND32 hwnd );
115 extern WND* WIN_GetDesktop(void);
116 extern void WIN_DumpWindow( HWND32 hwnd );
117 extern void WIN_WalkWindows( HWND32 hwnd, int indent );
118 extern Window WIN_GetXWindow( HWND32 hwnd );
119 extern BOOL32 WIN_UnlinkWindow( HWND32 hwnd );
120 extern BOOL32 WIN_LinkWindow( HWND32 hwnd, HWND32 hwndInsertAfter );
121 extern HWND32 WIN_FindWinToRepaint( HWND32 hwnd, HQUEUE16 hQueue );
122 extern void WIN_SendParentNotify( HWND32 hwnd, WORD event,
123 WORD idChild, LPARAM lValue );
124 extern void WIN_ResetQueueWindows( WND* wnd, HQUEUE16 hQueue, HQUEUE16 hNew );
125 extern BOOL32 WIN_CreateDesktopWindow(void);
126 extern HWND32 WIN_GetTopParent( HWND32 hwnd );
127 extern BOOL32 WIN_IsWindowDrawable(WND*, BOOL32 );
128 extern HINSTANCE16 WIN_GetWindowInstance( HWND32 hwnd );
129 extern WND** WIN_BuildWinArray( WND *wndPtr, UINT32 bwa, UINT32* pnum );
131 extern void DEFWND_SetText( WND *wndPtr, LPCSTR text ); /* windows/defwnd.c */
133 extern void PROPERTY_RemoveWindowProps( WND *pWnd ); /* windows/property.c */
135 extern BOOL32 PAINT_RedrawWindow( HWND32 hwnd, const RECT32 *rectUpdate,
136 HRGN32 hrgnUpdate, UINT32 flags,
137 UINT32 control ); /* windows/painting.c */
139 extern BOOL32 WIDGETS_IsControl32( WND* pWnd, BUILTIN_CLASS32 cls ); /* controls/widgets.c */
141 extern HWND32 ICONTITLE_Create( WND* ); /* controls/icontitle.c */
143 extern Display * display;
144 extern Screen * screen;
145 extern Window rootWindow;
147 #endif /* __WINE_WIN_H */