home *** CD-ROM | disk | FTP | other *** search
/ CICA 1994 September / CICA_Shareware_for_Windows_Walnut_Creek_September_1994.iso / win3 / programr / atre27.exe / ATREE_27 / LFWIN / LFEDIT.RC < prev    next >
Text File  |  1992-08-01  |  6KB  |  132 lines

  1. // remember to include \atree_27\include\
  2. // in your include path!
  3.  
  4. /*****************************************************************************
  5.  ****                                                                     ****
  6.  **** lfedit.rc                                                           ****
  7.  ****                                                                     ****
  8.  **** atree release 2.7 for Windows                                       ****
  9.  **** Adaptive Logic Network (ALN) simulation program.                    ****
  10.  **** Copyright (C) A. Dwelly, R. Manderscheid, M. Thomas, W.W. Armstrong ****
  11.  ****               1991, 1992                                            ****
  12.  ****                                                                     ****
  13.  **** License:                                                            ****
  14.  **** A royalty-free license is granted for the use of this software for  ****
  15.  **** NON_COMMERCIAL PURPOSES ONLY. The software may be copied and/or     ****
  16.  **** modified provided this notice appears in its entirety and unchanged ****
  17.  **** in all derived source programs.  Persons modifying the code are     ****
  18.  **** requested to state the date, the changes made and who made them     ****
  19.  **** in the modification history.                                        ****
  20.  ****                                                                     ****
  21.  **** Patent License:                                                     ****
  22.  **** The use of a digital circuit which transmits a signal indicating    ****
  23.  **** heuristic responsibility is protected by U. S. Patent 3,934,231     ****
  24.  **** and others assigned to Dendronic Decisions Limited of Edmonton,     ****
  25.  **** W. W. Armstrong, President.  A royalty-free license is granted      ****
  26.  **** by the company to use this patent for NON_COMMERCIAL PURPOSES to    ****
  27.  **** adapt logic trees using this program and its modifications.         ****
  28.  ****                                                                     ****
  29.  **** Limited Warranty:                                                   ****
  30.  **** This software is provided "as is" without warranty of any kind,     ****
  31.  **** either expressed or implied, including, but not limited to, the     ****
  32.  **** implied warrantees of merchantability and fitness for a particular  ****
  33.  **** purpose.  The entire risk as to the quality and performance of the  ****
  34.  **** program is with the user.  Neither the authors, nor the             ****
  35.  **** University of Alberta, its officers, agents, servants or employees  ****
  36.  **** shall be liable or responsible in any way for any damage to         ****
  37.  **** property or direct personal or consequential injury of any nature   ****
  38.  **** whatsoever that may be suffered or sustained by any licensee, user  ****
  39.  **** or any other party as a consequence of the use or disposition of    ****
  40.  **** this software.                                                      ****
  41.  **** Modification history:                                               ****
  42.  ****                                                                     ****
  43.  **** 92.04.27 atree v2.5 for Windows, M. Thomas                          ****
  44.  **** 92.03.07 Release 2.6, Monroe Thomas                                 ****
  45.  **** 92.01.08 Release 2.7, Monroe Thomas                                 ****
  46.  ****                                                                     ****
  47.  *****************************************************************************/
  48.  
  49. #ifndef WORKSHOP_INVOKED
  50.     #include <windows.h>
  51. #endif
  52.  
  53. #include "lfedit.h"
  54. #include "lf.h"
  55. #include "atree.rc"
  56.  
  57. lfEDIT MENU
  58. {
  59.   POPUP "&File"
  60.   {
  61.     MENUITEM "&New",                        IDM_NEW
  62.     MENUITEM "&Open...\tF3",          IDM_OPEN
  63.     MENUITEM "&Save\tF2",               IDM_SAVE
  64.     MENUITEM "Save &As...",               IDM_SAVEAS
  65.     MENUITEM SEPARATOR
  66.     MENUITEM "&Run...",                     IDM_RUN
  67.     MENUITEM SEPARATOR
  68.     MENUITEM "&Print",                      IDM_PRINT
  69.     MENUITEM SEPARATOR
  70.     MENUITEM "E&xit\tAlt+X",           IDM_EXIT
  71.   }
  72.   POPUP "&Edit"
  73.   {
  74.     MENUITEM "&Undo\tAlt+BkSp",     IDM_UNDO
  75.     MENUITEM SEPARATOR
  76.     MENUITEM "Cu&t\tShift+Del",     IDM_CUT
  77.     MENUITEM "&Copy\tCtrl+Ins",     IDM_COPY
  78.     MENUITEM "&Paste\tShift+Ins",   IDM_PASTE
  79.     MENUITEM "C&lear\tDel",         IDM_CLEAR
  80.     MENUITEM SEPARATOR
  81.     MENUITEM "&Select All",         IDM_SELALL
  82.   }
  83.   POPUP "&Help"
  84.   {
  85.       MENUITEM "&About lfEdit...",    IDM_ABOUT
  86.         MENUITEM "&Help...\tF1",                IDM_HELP
  87.   }
  88. }
  89.  
  90. lfEDIT ACCELERATORS
  91. BEGIN
  92.   VK_DELETE, IDM_CUT,   VIRTKEY, SHIFT
  93.   VK_INSERT, IDM_COPY,  VIRTKEY, CONTROL
  94.     VK_INSERT, IDM_PASTE, VIRTKEY, SHIFT
  95.     VK_F1,          IDM_HELP,     VIRTKEY
  96.     VK_F2,          IDM_SAVE,     VIRTKEY
  97.     VK_F3,          IDM_OPEN,     VIRTKEY
  98.     "x",              IDM_EXIT,     ASCII, ALT
  99. END
  100.  
  101. PrintDlgBox DIALOG 20,20,100,76
  102. STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
  103. CAPTION "LfEdit"
  104. BEGIN
  105.   CTEXT         "Sending", -1,           0, 10, 100, 8
  106.   CTEXT                "", IDD_FNAME,    0, 20, 100, 8
  107.   CTEXT         "to print spooler.", -1, 0, 30, 100, 8
  108.   DEFPUSHBUTTON "Cancel",   IDCANCEL,   34, 50, 32, 14, WS_GROUP
  109. END
  110.  
  111. AboutBox DIALOG 23, 28, 169, 147
  112. STYLE WS_POPUP | WS_DLGFRAME
  113. BEGIN
  114.     CONTROL "Just Say '&No' to Backpropagation!", IDOK, "BUTTON", BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, 10, 117, 148, 19
  115.     CONTROL "LF", -1, "STATIC", WS_CHILD | WS_VISIBLE | 0x1L, 66, 10, 37, 8
  116.     CONTROL "Adaptive Logic Network Interpreter", -1, "STATIC", WS_CHILD | WS_VISIBLE | 0x1L, 24, 48, 121, 9
  117.     CONTROL "atreeico", -1, "STATIC", WS_CHILD | WS_VISIBLE | 0x3L, 76, 25, 17, 17
  118.     CONTROL "Windows version by Monroe M. Thomas", -1, "STATIC", WS_CHILD | WS_VISIBLE | 0x1L, 47, 67, 74, 17
  119.     CONTROL "based on code by Andrew Dwelly", -1, "STATIC", WS_CHILD | WS_VISIBLE | 0x1L, 52, 86, 64, 19
  120.     CONTROL "", -1, "BUTTON", WS_CHILD | WS_VISIBLE | 0x7L, 38, 60, 93, 45
  121. END
  122.  
  123. lfStatus DIALOG 18, 29, 122, 64
  124. CAPTION "lf Status"
  125. STYLE WS_POPUP | WS_VISIBLE | WS_CAPTION
  126. BEGIN
  127.     CONTROL "&Cancel", IDCANCEL, "BUTTON", BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 32, 39, 57, 15
  128.     CONTROL "", IDD_TEXT, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE | WS_GROUP, 13, 6, 95, 8
  129.     CONTROL "", IDD_PERCENT, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE | WS_GROUP, 47, 22, 27, 8
  130. END
  131.  
  132.