winhelp.exe: Renamed to winhlp32.exe.
[wine] / dlls / user32 / controls.h
1 /*
2  * User controls definitions
3  *
4  * Copyright 2000 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #ifndef __WINE_CONTROLS_H
22 #define __WINE_CONTROLS_H
23
24 #include "winuser.h"
25 #include "wine/winbase16.h"
26
27 /* Built-in class names (see _Undocumented_Windows_ p.418) */
28 #define POPUPMENU_CLASS_ATOM MAKEINTATOM(32768)  /* PopupMenu */
29 #define DESKTOP_CLASS_ATOM   MAKEINTATOM(32769)  /* Desktop */
30 #define DIALOG_CLASS_ATOM    MAKEINTATOM(32770)  /* Dialog */
31 #define WINSWITCH_CLASS_ATOM MAKEINTATOM(32771)  /* WinSwitch */
32 #define ICONTITLE_CLASS_ATOM MAKEINTATOM(32772)  /* IconTitle */
33
34 /* Built-in class descriptor */
35 struct builtin_class_descr
36 {
37     LPCWSTR   name;    /* class name */
38     UINT      style;   /* class style */
39     WNDPROC   procA;   /* ASCII window procedure */
40     WNDPROC   procW;   /* Unicode window procedure */
41     INT       extra;   /* window extra bytes */
42     ULONG_PTR cursor;  /* cursor id */
43     HBRUSH    brush;   /* brush or system color */
44 };
45
46 extern const struct builtin_class_descr BUTTON_builtin_class DECLSPEC_HIDDEN;
47 extern const struct builtin_class_descr COMBO_builtin_class DECLSPEC_HIDDEN;
48 extern const struct builtin_class_descr COMBOLBOX_builtin_class DECLSPEC_HIDDEN;
49 extern const struct builtin_class_descr DIALOG_builtin_class DECLSPEC_HIDDEN;
50 extern const struct builtin_class_descr DESKTOP_builtin_class DECLSPEC_HIDDEN;
51 extern const struct builtin_class_descr EDIT_builtin_class DECLSPEC_HIDDEN;
52 extern const struct builtin_class_descr ICONTITLE_builtin_class DECLSPEC_HIDDEN;
53 extern const struct builtin_class_descr LISTBOX_builtin_class DECLSPEC_HIDDEN;
54 extern const struct builtin_class_descr MDICLIENT_builtin_class DECLSPEC_HIDDEN;
55 extern const struct builtin_class_descr MENU_builtin_class DECLSPEC_HIDDEN;
56 extern const struct builtin_class_descr SCROLL_builtin_class DECLSPEC_HIDDEN;
57 extern const struct builtin_class_descr STATIC_builtin_class DECLSPEC_HIDDEN;
58
59 extern WNDPROC EDIT_winproc_handle DECLSPEC_HIDDEN;
60
61 /* Class functions */
62 struct tagCLASS;  /* opaque structure */
63 struct tagWND;
64 extern ATOM get_int_atom_value( LPCWSTR name ) DECLSPEC_HIDDEN;
65 extern void CLASS_RegisterBuiltinClasses(void) DECLSPEC_HIDDEN;
66 extern WNDPROC get_class_winproc( struct tagCLASS *class ) DECLSPEC_HIDDEN;
67 extern struct dce *get_class_dce( struct tagCLASS *class ) DECLSPEC_HIDDEN;
68 extern struct dce *set_class_dce( struct tagCLASS *class, struct dce *dce ) DECLSPEC_HIDDEN;
69 extern void CLASS_FreeModuleClasses( HMODULE16 hModule ) DECLSPEC_HIDDEN;
70
71 /* defwnd proc */
72 extern HBRUSH DEFWND_ControlColor( HDC hDC, UINT ctlType ) DECLSPEC_HIDDEN;
73
74 /* desktop */
75 extern BOOL DESKTOP_SetPattern( LPCWSTR pattern ) DECLSPEC_HIDDEN;
76
77 /* icon title */
78 extern HWND ICONTITLE_Create( HWND hwnd ) DECLSPEC_HIDDEN;
79
80 /* menu controls */
81 extern HWND MENU_IsMenuActive(void) DECLSPEC_HIDDEN;
82 extern UINT MENU_GetMenuBarHeight( HWND hwnd, UINT menubarWidth,
83                                      INT orgX, INT orgY ) DECLSPEC_HIDDEN;
84 extern BOOL MENU_SetMenu(HWND, HMENU) DECLSPEC_HIDDEN;
85 extern void MENU_TrackMouseMenuBar( HWND hwnd, INT ht, POINT pt ) DECLSPEC_HIDDEN;
86 extern void MENU_TrackKbdMenuBar( HWND hwnd, UINT wParam, WCHAR wChar ) DECLSPEC_HIDDEN;
87 extern UINT MENU_DrawMenuBar( HDC hDC, LPRECT lprect,
88                                 HWND hwnd, BOOL suppress_draw ) DECLSPEC_HIDDEN;
89 extern UINT MENU_FindSubMenu( HMENU *hmenu, HMENU hSubTarget ) DECLSPEC_HIDDEN;
90
91 /* nonclient area */
92 extern LRESULT NC_HandleNCPaint( HWND hwnd , HRGN clip) DECLSPEC_HIDDEN;
93 extern LRESULT NC_HandleNCActivate( HWND hwnd, WPARAM wParam, LPARAM lParam ) DECLSPEC_HIDDEN;
94 extern LRESULT NC_HandleNCCalcSize( HWND hwnd, RECT *winRect ) DECLSPEC_HIDDEN;
95 extern LRESULT NC_HandleNCHitTest( HWND hwnd, POINT pt ) DECLSPEC_HIDDEN;
96 extern LRESULT NC_HandleNCLButtonDown( HWND hwnd, WPARAM wParam, LPARAM lParam ) DECLSPEC_HIDDEN;
97 extern LRESULT NC_HandleNCLButtonDblClk( HWND hwnd, WPARAM wParam, LPARAM lParam) DECLSPEC_HIDDEN;
98 extern LRESULT NC_HandleSysCommand( HWND hwnd, WPARAM wParam, LPARAM lParam ) DECLSPEC_HIDDEN;
99 extern LRESULT NC_HandleSetCursor( HWND hwnd, WPARAM wParam, LPARAM lParam ) DECLSPEC_HIDDEN;
100 extern BOOL NC_DrawSysButton( HWND hwnd, HDC hdc, BOOL down ) DECLSPEC_HIDDEN;
101 extern void NC_GetSysPopupPos( HWND hwnd, RECT* rect ) DECLSPEC_HIDDEN;
102
103 /* scrollbar */
104 extern void SCROLL_DrawScrollBar( HWND hwnd, HDC hdc, INT nBar, BOOL arrows, BOOL interior ) DECLSPEC_HIDDEN;
105 extern void SCROLL_TrackScrollBar( HWND hwnd, INT scrollbar, POINT pt ) DECLSPEC_HIDDEN;
106 extern INT SCROLL_SetNCSbState( HWND hwnd, int vMin, int vMax, int vPos,
107                                 int hMin, int hMax, int hPos ) DECLSPEC_HIDDEN;
108
109 /* combo box */
110
111 #define ID_CB_LISTBOX           1000
112 #define ID_CB_EDIT              1001
113
114 /* internal flags */
115 #define CBF_DROPPED             0x0001
116 #define CBF_BUTTONDOWN          0x0002
117 #define CBF_NOROLLUP            0x0004
118 #define CBF_MEASUREITEM         0x0008
119 #define CBF_FOCUSED             0x0010
120 #define CBF_CAPTURE             0x0020
121 #define CBF_EDIT                0x0040
122 #define CBF_NORESIZE            0x0080
123 #define CBF_NOTIFY              0x0100
124 #define CBF_NOREDRAW            0x0200
125 #define CBF_SELCHANGE           0x0400
126 #define CBF_NOEDITNOTIFY        0x1000
127 #define CBF_NOLBSELECT          0x2000  /* do not change current selection */
128 #define CBF_EUI                 0x8000
129
130 /* combo state struct */
131 typedef struct
132 {
133    HWND           self;
134    HWND           owner;
135    UINT           dwStyle;
136    HWND           hWndEdit;
137    HWND           hWndLBox;
138    UINT           wState;
139    HFONT          hFont;
140    RECT           textRect;
141    RECT           buttonRect;
142    RECT           droppedRect;
143    INT            droppedIndex;
144    INT            fixedOwnerDrawHeight;
145    INT            droppedWidth;   /* last two are not used unless set */
146    INT            editHeight;     /* explicitly */
147 } HEADCOMBO,*LPHEADCOMBO;
148
149 extern BOOL COMBO_FlipListbox( LPHEADCOMBO, BOOL, BOOL ) DECLSPEC_HIDDEN;
150
151 /* Dialog info structure */
152 typedef struct
153 {
154     HWND      hwndFocus;   /* Current control with focus */
155     HFONT     hUserFont;   /* Dialog font */
156     HMENU     hMenu;       /* Dialog menu */
157     UINT      xBaseUnit;   /* Dialog units (depends on the font) */
158     UINT      yBaseUnit;
159     INT       idResult;    /* EndDialog() result / default pushbutton ID */
160     UINT      flags;       /* EndDialog() called for this dialog */
161     HGLOBAL16 hDialogHeap;
162 } DIALOGINFO;
163
164 #define DF_END  0x0001
165 #define DF_OWNERENABLED 0x0002
166
167 /* offset of DIALOGINFO ptr in dialog extra bytes */
168 #define DWLP_WINE_DIALOGINFO (DWLP_USER+sizeof(ULONG_PTR))
169
170 extern DIALOGINFO *DIALOG_get_info( HWND hwnd, BOOL create ) DECLSPEC_HIDDEN;
171 extern void DIALOG_EnableOwner( HWND hOwner ) DECLSPEC_HIDDEN;
172 extern BOOL DIALOG_DisableOwner( HWND hOwner ) DECLSPEC_HIDDEN;
173 extern INT DIALOG_DoDialogBox( HWND hwnd, HWND owner ) DECLSPEC_HIDDEN;
174
175 #endif  /* __WINE_CONTROLS_H */