1/* -*-C-*-
2
3Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4    1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5    2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Massachusetts
6    Institute of Technology
7
8This file is part of MIT/GNU Scheme.
9
10MIT/GNU Scheme is free software; you can redistribute it and/or modify
11it under the terms of the GNU General Public License as published by
12the Free Software Foundation; either version 2 of the License, or (at
13your option) any later version.
14
15MIT/GNU Scheme is distributed in the hope that it will be useful, but
16WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18General Public License for more details.
19
20You should have received a copy of the GNU General Public License
21along with MIT/GNU Scheme; if not, write to the Free Software
22Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
23USA.
24
25*/
26
27/* Resource IDs for OS/2 PM Console Window */
28
29#include <os2.h>
30#include "os2pmcon.h"
31
32#ifdef SCHEME
33ICON ID_PMCON_RESOURCES "os2utl\\lambda2.ico"
34#else
35#ifdef BCHSCHEM
36ICON ID_PMCON_RESOURCES "os2utl\\bch.ico"
37#endif
38#endif
39
40ICON IDI_BCH      "os2utl\\bch.ico"
41ICON IDI_COFFEE   "os2utl\\coffee.ico"
42ICON IDI_CONSES   "os2utl\\conses.ico"
43ICON IDI_EDWIN    "os2utl\\edwin.ico"
44ICON IDI_ENVIR1   "os2utl\\envir1.ico"
45ICON IDI_GRAPHICS "os2utl\\graphics.ico"
46ICON IDI_LAMBDA   "os2utl\\lambda.ico"
47ICON IDI_LAMBDA2  "os2utl\\lambda2.ico"
48ICON IDI_LIAR1    "os2utl\\liar1.ico"
49ICON IDI_LIAR2    "os2utl\\liar2.ico"
50ICON IDI_LIAR3    "os2utl\\liar3.ico"
51ICON IDI_MINCER   "os2utl\\mincer.ico"
52ICON IDI_SHIELD1  "os2utl\\shield1.ico"
53ICON IDI_SHIELD2  "os2utl\\shield2.ico"
54ICON IDI_SHIELD3  "os2utl\\shield3.ico"
55ICON IDI_SHIELD4  "os2utl\\shield4.ico"
56
57MENU ID_PMCON_RESOURCES
58{
59  SUBMENU "~File", IDM_FILE
60  {
61    MENUITEM "E~xit", IDM_EXIT
62  }
63  SUBMENU "~Edit", IDM_EDIT
64  {
65    MENUITEM "Cu~t\tShift+Delete", IDM_CUT, 0, MIA_DISABLED
66    MENUITEM "~Copy\tCtrl+Insert", IDM_COPY
67    MENUITEM "~Paste\tShift+Insert", IDM_PASTE
68  }
69  SUBMENU "~Options", IDM_OPTIONS
70  {
71    MENUITEM "Set ~font...", IDM_FONT
72  }
73  SUBMENU "~Help", IDM_HELP
74  {
75    MENUITEM "~About...", IDM_ABOUT
76  }
77}
78
79ACCELTABLE ID_PMCON_RESOURCES
80{
81  VK_DELETE, IDM_CUT, AF_VIRTUALKEY | AF_SHIFT
82  VK_INSERT, IDM_COPY, AF_VIRTUALKEY | AF_CONTROL
83  VK_INSERT, IDM_PASTE, AF_VIRTUALKEY | AF_SHIFT
84}
85