2 * Windows widgets (built-in window classes)
4 * Copyright 1993 Alexandre Julliard
20 /* Window procedures */
22 extern LRESULT WINAPI EditWndProc( HWND32 hwnd, UINT32 msg,
23 WPARAM32 wParam, LPARAM lParam );
24 extern LRESULT WINAPI ComboWndProc( HWND32 hwnd, UINT32 msg,
25 WPARAM32 wParam, LPARAM lParam );
26 extern LRESULT WINAPI ComboLBWndProc( HWND32 hwnd, UINT32 msg,
27 WPARAM32 wParam, LPARAM lParam );
28 extern LRESULT WINAPI ListBoxWndProc( HWND32 hwnd, UINT32 msg,
29 WPARAM32 wParam, LPARAM lParam );
30 extern LRESULT WINAPI PopupMenuWndProc( HWND32 hwnd, UINT32 msg,
31 WPARAM32 wParam, LPARAM lParam );
32 extern LRESULT WINAPI IconTitleWndProc( HWND32 hwnd, UINT32 msg,
33 WPARAM32 wParam, LPARAM lParam );
35 /* Built-in classes */
37 static WNDCLASS32A WIDGETS_BuiltinClasses[BIC32_NB_CLASSES] =
40 { CS_GLOBALCLASS | CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC,
41 ButtonWndProc, 0, sizeof(BUTTONINFO), 0, 0,
42 (HCURSOR32)IDC_ARROW32A, 0, 0, "Button" },
44 { CS_GLOBALCLASS | CS_DBLCLKS /*| CS_PARENTDC*/,
45 EditWndProc, 0, sizeof(void *), 0, 0,
46 (HCURSOR32)IDC_IBEAM32A, 0, 0, "Edit" },
48 { CS_GLOBALCLASS | CS_DBLCLKS /*| CS_PARENTDC*/,
49 ListBoxWndProc, 0, sizeof(void *), 0, 0,
50 (HCURSOR32)IDC_ARROW32A, 0, 0, "ListBox" },
52 { CS_GLOBALCLASS | CS_PARENTDC | CS_DBLCLKS,
53 ComboWndProc, 0, sizeof(void *), 0, 0,
54 (HCURSOR32)IDC_ARROW32A, 0, 0, "ComboBox" },
56 { CS_GLOBALCLASS | CS_DBLCLKS | CS_SAVEBITS, ComboLBWndProc,
57 0, sizeof(void *), 0, 0, (HCURSOR32)IDC_ARROW32A, 0, 0, "ComboLBox" },
59 { CS_GLOBALCLASS | CS_SAVEBITS, PopupMenuWndProc, 0, sizeof(HMENU32),
60 0, 0, (HCURSOR32)IDC_ARROW32A, NULL_BRUSH, 0, POPUPMENU_CLASS_NAME },
62 { CS_GLOBALCLASS | CS_PARENTDC, StaticWndProc,
63 0, sizeof(STATICINFO), 0, 0, (HCURSOR32)IDC_ARROW32A, 0, 0, "Static" },
65 { CS_GLOBALCLASS | CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC,
66 ScrollBarWndProc, 0, sizeof(SCROLLBAR_INFO), 0, 0,
67 (HCURSOR32)IDC_ARROW32A, 0, 0, "ScrollBar"},
69 { CS_GLOBALCLASS, MDIClientWndProc,
70 0, sizeof(MDICLIENTINFO), 0, 0, 0, STOCK_LTGRAY_BRUSH, 0, "MDIClient" },
72 { CS_GLOBALCLASS, DesktopWndProc, 0, sizeof(DESKTOP),
73 0, 0, (HCURSOR32)IDC_ARROW32A, 0, 0, DESKTOP_CLASS_NAME },
75 { CS_GLOBALCLASS | CS_SAVEBITS, DefDlgProc32A, 0, DLGWINDOWEXTRA,
76 0, 0, (HCURSOR32)IDC_ARROW32A, 0, 0, DIALOG_CLASS_NAME },
78 { CS_GLOBALCLASS, IconTitleWndProc, 0, 0,
79 0, 0, (HCURSOR32)IDC_ARROW32A, 0, 0, ICONTITLE_CLASS_NAME }
82 static ATOM bicAtomTable[BIC32_NB_CLASSES];
84 /***********************************************************************
87 * Initialize the built-in window classes.
89 BOOL32 WIDGETS_Init(void)
92 WNDCLASS32A *cls = WIDGETS_BuiltinClasses;
94 /* Create builtin classes */
96 for (i = 0; i < BIC32_NB_CLASSES; i++, cls++)
99 /* Just to make sure the string is > 0x10000 */
100 strcpy( name, (char *)cls->lpszClassName );
101 cls->lpszClassName = name;
102 cls->hCursor = LoadCursor32A( 0, (LPCSTR)cls->hCursor );
103 if (!(bicAtomTable[i] = RegisterClass32A( cls ))) return FALSE;
110 /***********************************************************************
111 * WIDGETS_IsControl32
113 * Check whether pWnd is a built-in control or not.
115 BOOL32 WIDGETS_IsControl32( WND* pWnd, BUILTIN_CLASS32 cls )
117 assert( cls < BIC32_NB_CLASSES );
118 return (pWnd->class->atomName == bicAtomTable[cls]);