/* resource header file */

#ifndef INC_RESOURCE_H
#define INC_RESOURCE_H

/* This are the definitions for all symbols used in menus or string. */
#define IDACCEL 10000

/* NOTE: 1000-1999 are reserved for child windows! */
#define IDM_WINDOWCHILD 1000

/* dialogues, 100's */
#define IDD_ABOUT	100
#define IDD_DICE    101
#define IDD_NEW     102

/* IDs for the File menu  - 200's*/
#define IDM_NEW 200
#define IDM_OPEN 201
#define IDM_SAVE 202
#define IDM_SAVEAS 203
#define IDM_CLOSE 204
#define IDM_PRINT 205
#define IDM_PRINTSU 206
#define IDM_PAGESETUP 207
#define IDM_PRINTPRE 208
#define IDM_EXIT 209

/* Ids for the Edit menu 300's */
#define IDM_EDITUNDO	301
#define IDM_EDITCUT	    302
#define IDM_EDITCOPY	303
#define IDM_EDITPASTE	304
#define IDM_EDITCLEAR	305
#define IDM_EDITDELETE	306
#define IDM_EDITREPLACE	307
#define IDM_EDITREDO	308

/* Ids for the Search menu - 400's */
#define IDM_FIND	400

/* Ids for the Generate menu - 500's*/
#define IDM_DICE    500

/* Ids for the Window menu - 600's*/
#define IDM_WINDOWTILEH           600
#define IDM_WINDOWTILEV           601
#define IDM_WINDOWCASCADE         602
#define IDM_WINDOWICONS           603
#define IDM_WINDOWCLOSEALL        604


/* Other Ids*/
#define IDI_ICON 400
#define IDM_PROPERTIES	450
#define IDM_ABOUT 700
#define IDM_HELP	510
#define IDMAINMENU 600
#define IDAPPLICON 710
#define IDAPPLCURSOR 810
#define IDS_FILEMENU 2000
#define IDS_HELPMENU 2010
#define IDS_SYSMENU 2030
#define IDM_STATUSBAR 3000
#define IDI_CHILDICON 800
#define ID_TOOLBAR	5000
#define IDS_UNTITLED 10001

#endif /* INC_RESOURCE_H */