Release 970720
[wine/multimedia.git] / controls / widgets.c
blob20fe5a5ecd893dcfb5cc82bc5018ef2535b4d570
1 /*
2 * Windows widgets (built-in window classes)
4 * Copyright 1993 Alexandre Julliard
5 */
7 #include <assert.h>
9 #include "win.h"
10 #include "commctrl.h"
11 #include "button.h"
12 #include "static.h"
13 #include "status.h"
14 #include "scroll.h"
15 #include "desktop.h"
16 #include "mdi.h"
17 #include "gdi.h"
18 #include "module.h"
19 #include "heap.h"
21 /* Window procedures */
23 extern LRESULT EditWndProc( HWND32 hwnd, UINT32 msg, WPARAM32 wParam,
24 LPARAM lParam );
25 extern LRESULT ComboWndProc( HWND32 hwnd, UINT32 msg, WPARAM32 wParam,
26 LPARAM lParam );
27 extern LRESULT ComboLBWndProc( HWND32 hwnd, UINT32 msg, WPARAM32 wParam,
28 LPARAM lParam );
29 extern LRESULT ListBoxWndProc( HWND32 hwnd, UINT32 msg, WPARAM32 wParam,
30 LPARAM lParam );
31 extern LRESULT PopupMenuWndProc( HWND32 hwnd, UINT32 msg, WPARAM32 wParam,
32 LPARAM lParam );
33 extern LRESULT IconTitleWndProc( HWND32 hwnd, UINT32 msg, WPARAM32 wParam,
34 LPARAM lParam );
36 /* Win16 class info */
38 typedef struct
40 UINT16 style;
41 INT16 wndExtra;
42 HBRUSH16 background;
43 LPCSTR procName;
44 LPCSTR className;
45 } BUILTIN_CLASS_INFO16;
47 /* Win16 built-in classes */
49 static const BUILTIN_CLASS_INFO16 WIDGETS_BuiltinClasses16[] =
51 { CS_GLOBALCLASS, sizeof(MDICLIENTINFO),
52 STOCK_LTGRAY_BRUSH, "MDIClientWndProc", "MDIClient" }
55 #define NB_BUILTIN_CLASSES16 \
56 (sizeof(WIDGETS_BuiltinClasses16)/sizeof(WIDGETS_BuiltinClasses16[0]))
58 /* Win32 built-in classes */
60 static WNDCLASS32A WIDGETS_BuiltinClasses32[BIC32_NB_CLASSES] =
62 /* BIC32_BUTTON */
63 { CS_GLOBALCLASS | CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC,
64 ButtonWndProc, 0, sizeof(BUTTONINFO), 0, 0, IDC_ARROW, 0, 0, "Button" },
65 /* BIC32_EDIT */
66 { CS_GLOBALCLASS | CS_DBLCLKS /*| CS_PARENTDC*/,
67 EditWndProc, 0, sizeof(void *), 0, 0, IDC_IBEAM, 0, 0, "Edit" },
68 /* BIC32_LISTBOX */
69 { CS_GLOBALCLASS | CS_DBLCLKS /*| CS_PARENTDC*/,
70 ListBoxWndProc, 0, sizeof(void *), 0, 0, IDC_ARROW, 0, 0, "ListBox" },
71 /* BIC32_COMBO */
72 { CS_GLOBALCLASS | CS_PARENTDC | CS_DBLCLKS,
73 ComboWndProc, 0, sizeof(void *), 0, 0, IDC_ARROW, 0, 0, "ComboBox" },
74 /* BIC32_COMBOLB */
75 { CS_GLOBALCLASS | CS_DBLCLKS | CS_SAVEBITS,
76 ComboLBWndProc, 0, sizeof(void *), 0, 0, IDC_ARROW, 0, 0, "ComboLBox" },
77 /* BIC32_POPUPMENU */
78 { CS_GLOBALCLASS | CS_SAVEBITS, PopupMenuWndProc, 0,
79 sizeof(HMENU32), 0, 0, IDC_ARROW, NULL_BRUSH, 0, POPUPMENU_CLASS_NAME },
80 /* BIC32_STATIC */
81 { CS_GLOBALCLASS | CS_PARENTDC, StaticWndProc,
82 0, sizeof(STATICINFO), 0, 0, IDC_ARROW, 0, 0, "Static" },
83 /* BIC32_SCROLL */
84 { CS_GLOBALCLASS | CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC,
85 ScrollBarWndProc, 0, sizeof(SCROLLBAR_INFO), 0, 0, IDC_ARROW, 0, 0, "ScrollBar"},
86 /* BIC32_DESKTOP */
87 { CS_GLOBALCLASS, DesktopWndProc, 0, sizeof(DESKTOPINFO),
88 0, 0, IDC_ARROW, 0, 0, DESKTOP_CLASS_NAME },
89 /* BIC32_DIALOG */
90 { CS_GLOBALCLASS | CS_SAVEBITS, DefDlgProc32A, 0, DLGWINDOWEXTRA,
91 0, 0, IDC_ARROW, 0, 0, DIALOG_CLASS_NAME },
92 /* BIC32_ICONTITLE */
93 { CS_GLOBALCLASS, IconTitleWndProc, 0, 0,
94 0, 0, IDC_ARROW, 0, 0, ICONTITLE_CLASS_NAME }
97 static ATOM bicAtomTable[BIC32_NB_CLASSES];
99 /* Win32 common controls */
101 static WNDCLASS32A WIDGETS_CommonControls32[] =
103 { CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW, StatusWindowProc, 0,
104 sizeof(STATUSWINDOWINFO), 0, 0, 0, 0, 0, STATUSCLASSNAME32A },
107 #define NB_COMMON_CONTROLS32 \
108 (sizeof(WIDGETS_CommonControls32)/sizeof(WIDGETS_CommonControls32[0]))
111 /***********************************************************************
112 * WIDGETS_Init
114 * Initialize the built-in window classes.
116 BOOL32 WIDGETS_Init(void)
118 int i;
119 char *name;
120 const BUILTIN_CLASS_INFO16 *info16 = WIDGETS_BuiltinClasses16;
121 WNDCLASS16 class16;
122 WNDCLASS32A *class32 = WIDGETS_BuiltinClasses32;
124 if (!(name = SEGPTR_ALLOC( 20 * sizeof(char) ))) return FALSE;
126 /* Create 16-bit classes */
128 class16.cbClsExtra = 0;
129 class16.hInstance = 0;
130 class16.hIcon = 0;
131 class16.hCursor = LoadCursor16( 0, IDC_ARROW );
132 class16.lpszMenuName = (SEGPTR)0;
133 class16.lpszClassName = SEGPTR_GET(name);
134 for (i = 0; i < NB_BUILTIN_CLASSES16; i++, info16++)
136 class16.style = info16->style;
137 class16.lpfnWndProc = (WNDPROC16)MODULE_GetWndProcEntry16( info16->procName );
138 class16.cbWndExtra = info16->wndExtra;
139 class16.hbrBackground = info16->background;
140 strcpy( name, info16->className );
141 if (!RegisterClass16( &class16 )) return FALSE;
144 /* Create 32-bit classes */
146 for (i = 0; i < BIC32_NB_CLASSES; i++, class32++)
148 /* Just to make sure the string is > 0x10000 */
149 strcpy( name, (char *)class32->lpszClassName );
150 class32->lpszClassName = name;
151 class32->hCursor = LoadCursor16( 0, class32->hCursor );
152 if (!(bicAtomTable[i] = RegisterClass32A( class32 ))) return FALSE;
155 SEGPTR_FREE(name);
156 return TRUE;
160 /***********************************************************************
161 * InitCommonControls (COMCTL32.15)
163 void InitCommonControls(void)
165 int i;
166 char name[30];
167 WNDCLASS32A *class32 = WIDGETS_CommonControls32;
169 for (i = 0; i < NB_COMMON_CONTROLS32; i++, class32++)
171 /* Just to make sure the string is > 0x10000 */
172 strcpy( name, (char *)class32->lpszClassName );
173 class32->lpszClassName = name;
174 class32->hCursor = LoadCursor16( 0, IDC_ARROW );
175 RegisterClass32A( class32 );
180 /***********************************************************************
181 * WIDGETS_IsControl32
183 * Check whether pWnd is a built-in control or not.
185 BOOL32 WIDGETS_IsControl32( WND* pWnd, BUILTIN_CLASS32 cls )
187 assert( cls < BIC32_NB_CLASSES );
188 return (pWnd->class->atomName == bicAtomTable[cls]);