comctl32.h 2.03 KB
Newer Older
1 2 3 4 5 6 7 8 9
/******************************************************************************
 * 
 * Common definitions (resource ids and global variables)
 *
 * Copyright 1999 Thuy Nguyen
 * Copyright 1999 Eric Kohl
 *
 */

10 11 12
#ifndef __WINE_COMCTL32_H
#define __WINE_COMCTL32_H

13
extern HMODULE COMCTL32_hModule;
14
extern HBRUSH  COMCTL32_hPattern55AABrush;
15 16 17 18 19 20 21

/* Property sheet / Wizard */
#define IDD_PROPSHEET 1006
#define IDD_WIZARD    1020

#define IDC_TABCONTROL   12320
#define IDC_APPLY_BUTTON 12321
22 23 24 25
#define IDC_BACK_BUTTON  12323
#define IDC_NEXT_BUTTON  12324
#define IDC_FINISH_BUTTON 12325
#define IDC_SUNKEN_LINE   12326
26

Alexandre Julliard's avatar
Alexandre Julliard committed
27
#define IDS_CLOSE	  4160
28 29 30 31 32 33 34 35 36 37 38 39

/* 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

40 41
#define IDS_SEPARATOR      1024

42 43 44 45 46 47 48 49 50
/* 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


51 52 53 54 55 56 57 58 59 60 61 62 63 64
/* 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
65
#define IDM_DEC				312
66

67 68 69
#define IDM_TODAY                      4163
#define IDM_GOTODAY                    4164

70 71 72 73
/* Treeview Checboxes */

#define IDT_CHECK        401

74 75 76 77 78 79 80 81 82 83

/* Header cursors */
#define IDC_DIVIDER                     106
#define IDC_DIVIDEROPEN                 107


/* DragList icon */
#define IDI_DRAGARROW                   150


84 85
/* Internal function */
HWND COMCTL32_CreateToolTip (HWND);
86 87 88
INT  Str_GetPtrWtoA (LPCWSTR lpSrc, LPSTR lpDest, INT nMaxLen);
BOOL Str_SetPtrAtoW (LPWSTR *lppDest, LPCSTR lpSrc);

89 90

#endif  /* __WINE_COMCTL32_H */