source: trunk/src/comctl32/rsrc.rc@ 1036

Last change on this file since 1036 was 501, checked in by cbratschi, 26 years ago

internal toolbar bitmaps

File size: 3.6 KB
Line 
1/* $Id: rsrc.rc,v 1.4 1999-08-15 19:12:49 cbratschi Exp $ */
2#ifndef OS2_INCLUDED
3 #include <os2.h>
4#endif
5/* Property sheet / Wizard */
6#define IDD_PROPSHEET 1006
7#define IDD_WIZARD 1020
8
9#define IDC_TABCONTROL 12320
10#define IDC_APPLY_BUTTON 12321
11
12/* Toolbar customization dialog */
13#define IDD_TBCUSTOMIZE 200
14
15#define IDC_AVAILBTN_LBOX 201
16#define IDC_RESET_BTN 202
17#define IDC_TOOLBARBTN_LBOX 203
18#define IDC_REMOVE_BTN 204
19#define IDC_HELP_BTN 205
20#define IDC_MOVEUP_BTN 206
21#define IDC_MOVEDN_BTN 207
22
23DLGTEMPLATE IDD_TBCUSTOMIZE LOADONCALL MOVEABLE DISCARDABLE
24BEGIN
25 DIALOG "Customize Toolbar", IDD_TBCUSTOMIZE, 10, 20, 357, 125,
26 WS_VISIBLE, FCF_TITLEBAR
27 PRESPARAMS PP_FONTNAMESIZE, "9.WarpSans"
28 BEGIN
29 DEFPUSHBUTTON "~Close", DID_CANCEL, 308, 105, 44, 14
30 PUSHBUTTON "R~eset", IDC_RESET_BTN, 308, 88, 44, 14
31 PUSHBUTTON "~Help", IDC_HELP_BTN, 308, 71, 44, 14
32 PUSHBUTTON "Move ~Up", IDC_MOVEUP_BTN, 308, 37, 44, 14
33 PUSHBUTTON "Move ~Down", IDC_MOVEDN_BTN, 308, 20, 44, 14
34 LTEXT "Available buttons:", -1, 4, 110, 84, 10
35 LISTBOX IDC_AVAILBTN_LBOX, 4, 8, 120, 100, LS_OWNERDRAW |
36 LS_NOADJUSTPOS | LS_HORZSCROLL
37 PUSHBUTTON "~Add ->", DID_OK, 131, 69, 44, 14
38 PUSHBUTTON "<- ~Remove", IDC_REMOVE_BTN, 131, 49, 44, 14
39 LTEXT "Toolbar buttons:", -1, 182, 110, 78, 10
40 LISTBOX IDC_TOOLBARBTN_LBOX, 182, 8, 120, 100, LS_OWNERDRAW |
41 LS_NOADJUSTPOS | LS_HORZSCROLL
42 END
43END
44
45DLGTEMPLATE IDD_PROPSHEET LOADONCALL MOVEABLE DISCARDABLE
46BEGIN
47 DIALOG "Properties for ", IDD_PROPSHEET, 0, 0, 292, 159,
48 WS_VISIBLE, FCF_TITLEBAR
49 PRESPARAMS PP_FONTNAMESIZE, "9.WarpSans"
50 BEGIN
51 DEFPUSHBUTTON "~OK", DID_OK, 72, 7, 50, 14
52 PUSHBUTTON "~Cancel", DID_CANCEL, 127, 7, 50, 14
53 PUSHBUTTON "~Apply", IDC_APPLY_BUTTON, 181, 7, 50, 14
54 PUSHBUTTON "~Help", 9, 235, 7, 50, 14
55 CONTROL "Tab", IDC_TABCONTROL, 7, 27, 278, 125,
56 "SysTabControl32", WS_VISIBLE | WS_CLIPSIBLINGS
57 END
58END
59
60/* Toolbar imagelist bitmaps */
61#define IDB_STD_SMALL 120
62#define IDB_STD_LARGE 121
63#define IDB_VIEW_SMALL 124
64#define IDB_VIEW_LARGE 125
65#define IDB_HIST_SMALL 130
66#define IDB_HIST_LARGE 131
67
68BITMAP IDB_STD_SMALL "120.BMP"
69BITMAP IDB_STD_LARGE "121.BMP"
70BITMAP IDB_VIEW_SMALL "124.BMP"
71BITMAP IDB_VIEW_LARGE "125.BMP"
72BITMAP IDB_HIST_SMALL "130.BMP"
73BITMAP IDB_HIST_LARGE "131.BMP"
74
75/* Month calendar month menu popup */
76#define IDD_MCMONTHMENU 300
77
78#define IDM_JAN 301
79#define IDM_FEB 302
80#define IDM_MAR 303
81#define IDM_APR 304
82#define IDM_MAY 305
83#define IDM_JUN 306
84#define IDM_JUL 307
85#define IDM_AUG 308
86#define IDM_SEP 309
87#define IDM_OCT 310
88#define IDM_NOV 311
89#define IDM_DEC 312
90
91MENU IDD_MCMONTHMENU LOADONCALL DISCARDABLE
92{
93 MENUITEM "&January", IDM_JAN
94 MENUITEM "&February", IDM_FEB
95 MENUITEM "&March", IDM_MAR
96 MENUITEM "&April", IDM_APR
97 MENUITEM "&May", IDM_MAY
98 MENUITEM "J&une", IDM_JUN
99 MENUITEM "Ju&ly", IDM_JUL
100 MENUITEM "Au&gust", IDM_AUG
101 MENUITEM "&September", IDM_SEP
102 MENUITEM "&October", IDM_OCT
103 MENUITEM "&November", IDM_NOV
104 MENUITEM "&December", IDM_DEC
105}
106
Note: See TracBrowser for help on using the repository browser.