1999-05-22 12:52:31 +02:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Common definitions (resource ids and global variables)
|
|
|
|
*
|
|
|
|
* Copyright 1999 Thuy Nguyen
|
|
|
|
* Copyright 1999 Eric Kohl
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-09-13 22:27:30 +02:00
|
|
|
#ifndef __WINE_COMCTL32_H
|
|
|
|
#define __WINE_COMCTL32_H
|
|
|
|
|
1999-05-22 12:52:31 +02:00
|
|
|
extern HMODULE COMCTL32_hModule;
|
2000-11-25 02:27:42 +01:00
|
|
|
extern HBRUSH COMCTL32_hPattern55AABrush;
|
1999-05-22 12:52:31 +02:00
|
|
|
|
|
|
|
/* Property sheet / Wizard */
|
|
|
|
#define IDD_PROPSHEET 1006
|
|
|
|
#define IDD_WIZARD 1020
|
|
|
|
|
|
|
|
#define IDC_TABCONTROL 12320
|
|
|
|
#define IDC_APPLY_BUTTON 12321
|
1999-09-19 14:14:38 +02:00
|
|
|
#define IDC_BACK_BUTTON 12323
|
|
|
|
#define IDC_NEXT_BUTTON 12324
|
|
|
|
#define IDC_FINISH_BUTTON 12325
|
|
|
|
#define IDC_SUNKEN_LINE 12326
|
1999-05-22 12:52:31 +02:00
|
|
|
|
1999-11-28 22:01:47 +01:00
|
|
|
#define IDS_CLOSE 4160
|
1999-05-22 12:52:31 +02:00
|
|
|
|
|
|
|
/* Toolbar customization dialog */
|
|
|
|
#define IDD_TBCUSTOMIZE 200
|
|
|
|
|
|
|
|
#define IDC_AVAILBTN_LBOX 201
|
|
|
|
#define IDC_RESET_BTN 202
|
|
|
|
#define IDC_TOOLBARBTN_LBOX 203
|
|
|
|
#define IDC_REMOVE_BTN 204
|
|
|
|
#define IDC_HELP_BTN 205
|
|
|
|
#define IDC_MOVEUP_BTN 206
|
|
|
|
#define IDC_MOVEDN_BTN 207
|
|
|
|
|
2000-11-07 21:30:11 +01:00
|
|
|
#define IDS_SEPARATOR 1024
|
|
|
|
|
1999-07-31 15:10:46 +02:00
|
|
|
/* Toolbar imagelist bitmaps */
|
|
|
|
#define IDB_STD_SMALL 120
|
|
|
|
#define IDB_STD_LARGE 121
|
|
|
|
#define IDB_VIEW_SMALL 124
|
|
|
|
#define IDB_VIEW_LARGE 125
|
|
|
|
#define IDB_HIST_SMALL 130
|
|
|
|
#define IDB_HIST_LARGE 131
|
|
|
|
|
|
|
|
|
1999-07-10 14:00:04 +02:00
|
|
|
/* Month calendar month menu popup */
|
|
|
|
#define IDD_MCMONTHMENU 300
|
|
|
|
|
|
|
|
#define IDM_JAN 301
|
|
|
|
#define IDM_FEB 302
|
|
|
|
#define IDM_MAR 303
|
|
|
|
#define IDM_APR 304
|
|
|
|
#define IDM_MAY 305
|
|
|
|
#define IDM_JUN 306
|
|
|
|
#define IDM_JUL 307
|
|
|
|
#define IDM_AUG 308
|
|
|
|
#define IDM_SEP 309
|
|
|
|
#define IDM_OCT 310
|
|
|
|
#define IDM_NOV 311
|
1999-07-31 15:10:46 +02:00
|
|
|
#define IDM_DEC 312
|
1999-11-28 20:50:01 +01:00
|
|
|
|
2000-10-15 02:24:48 +02:00
|
|
|
#define IDM_TODAY 4163
|
|
|
|
#define IDM_GOTODAY 4164
|
|
|
|
|
1999-11-28 20:50:01 +01:00
|
|
|
/* Treeview Checboxes */
|
|
|
|
|
|
|
|
#define IDT_CHECK 401
|
|
|
|
|
2000-11-09 21:26:34 +01:00
|
|
|
|
|
|
|
/* Header cursors */
|
|
|
|
#define IDC_DIVIDER 106
|
|
|
|
#define IDC_DIVIDEROPEN 107
|
|
|
|
|
|
|
|
|
|
|
|
/* DragList icon */
|
|
|
|
#define IDI_DRAGARROW 150
|
|
|
|
|
|
|
|
|
2000-09-13 22:27:30 +02:00
|
|
|
/* Internal function */
|
|
|
|
HWND COMCTL32_CreateToolTip (HWND);
|
2000-11-15 23:14:43 +01:00
|
|
|
INT Str_GetPtrWtoA (LPCWSTR lpSrc, LPSTR lpDest, INT nMaxLen);
|
|
|
|
BOOL Str_SetPtrAtoW (LPWSTR *lppDest, LPCSTR lpSrc);
|
|
|
|
|
2001-03-16 17:50:24 +01:00
|
|
|
#define COMCTL32_VERSION_MINOR 0
|
|
|
|
#define WINE_FILEVERSION 5, COMCTL32_VERSION_MINOR, 0, 0
|
|
|
|
#define WINE_FILEVERSIONSTR "5.00"
|
2000-09-13 22:27:30 +02:00
|
|
|
|
|
|
|
#endif /* __WINE_COMCTL32_H */
|