home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mitsch75.zip / scheme-7_5_17-src.zip / scheme-7.5.17 / src / microcode / os2pmcon.rc < prev    next >
Text File  |  1999-01-02  |  2KB  |  80 lines

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