1 /******************************************************************************
3 * Common definitions (resource ids and global variables)
5 * Copyright 1999 Thuy Nguyen
6 * Copyright 1999 Eric Kohl
7 * Copyright 2002 Dimitrie O. Paun
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #ifndef __WINE_COMCTL32_H
25 #define __WINE_COMCTL32_H
38 extern HMODULE COMCTL32_hModule;
39 extern HBRUSH COMCTL32_hPattern55AABrush;
41 /* Property sheet / Wizard */
42 #define IDD_PROPSHEET 1006
43 #define IDD_WIZARD 1020
45 #define IDC_TABCONTROL 12320
46 #define IDC_APPLY_BUTTON 12321
47 #define IDC_BACK_BUTTON 12323
48 #define IDC_NEXT_BUTTON 12324
49 #define IDC_FINISH_BUTTON 12325
50 #define IDC_SUNKEN_LINE 12326
52 #define IDS_CLOSE 4160
54 /* Toolbar customization dialog */
55 #define IDD_TBCUSTOMIZE 200
57 #define IDC_AVAILBTN_LBOX 201
58 #define IDC_RESET_BTN 202
59 #define IDC_TOOLBARBTN_LBOX 203
60 #define IDC_REMOVE_BTN 204
61 #define IDC_HELP_BTN 205
62 #define IDC_MOVEUP_BTN 206
63 #define IDC_MOVEDN_BTN 207
65 #define IDS_SEPARATOR 1024
67 /* Toolbar imagelist bitmaps */
68 #define IDB_STD_SMALL 120
69 #define IDB_STD_LARGE 121
70 #define IDB_VIEW_SMALL 124
71 #define IDB_VIEW_LARGE 125
72 #define IDB_HIST_SMALL 130
73 #define IDB_HIST_LARGE 131
76 /* Month calendar month menu popup */
77 #define IDD_MCMONTHMENU 300
92 #define IDM_TODAY 4163
93 #define IDM_GOTODAY 4164
95 /* Treeview Checkboxes */
101 #define IDC_DIVIDER 106
102 #define IDC_DIVIDEROPEN 107
106 #define IDI_DRAGARROW 150
109 /* HOTKEY internal strings */
110 #define HKY_NONE 2048
114 COLORREF clrBtnHighlight; /* COLOR_BTNHIGHLIGHT */
115 COLORREF clrBtnShadow; /* COLOR_BTNSHADOW */
116 COLORREF clrBtnText; /* COLOR_BTNTEXT */
117 COLORREF clrBtnFace; /* COLOR_BTNFACE */
118 COLORREF clrHighlight; /* COLOR_HIGHLIGHT */
119 COLORREF clrHighlightText; /* COLOR_HIGHLIGHTTEXT */
120 COLORREF clr3dHilight; /* COLOR_3DHILIGHT */
121 COLORREF clr3dShadow; /* COLOR_3DSHADOW */
122 COLORREF clr3dDkShadow; /* COLOR_3DDKSHADOW */
123 COLORREF clr3dFace; /* COLOR_3DFACE */
124 COLORREF clrWindow; /* COLOR_WINDOW */
125 COLORREF clrWindowText; /* COLOR_WINDOWTEXT */
126 COLORREF clrGrayText; /* COLOR_GREYTEXT */
127 COLORREF clrActiveCaption; /* COLOR_ACTIVECAPTION */
128 COLORREF clrInfoBk; /* COLOR_INFOBK */
129 COLORREF clrInfoText; /* COLOR_INFOTEXT */
132 extern COMCTL32_SysColor comctl32_color;
134 /* Internal function */
135 HWND COMCTL32_CreateToolTip (HWND);
136 VOID COMCTL32_RefreshSysColors(void);
137 INT Str_GetPtrWtoA (LPCWSTR lpSrc, LPSTR lpDest, INT nMaxLen);
138 BOOL Str_SetPtrAtoW (LPWSTR *lppDest, LPCSTR lpSrc);
140 #define COMCTL32_VERSION_MINOR 80
141 #define WINE_FILEVERSION 5, COMCTL32_VERSION_MINOR, 0, 0
142 #define WINE_FILEVERSIONSTR "5.80"
144 /* Our internal stack structure of the window procedures to subclass */
148 SUBCLASSPROC subproc;
156 } SUBCLASS_INFO, *LPSUBCLASS_INFO;
158 #endif /* __WINE_COMCTL32_H */