home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / AUROR21A.ZIP / BRMENU.AML < prev    next >
Text File  |  1995-09-01  |  18KB  |  440 lines

  1.  
  2. // -------------------------------------------------------------------
  3. // The Aurora Editor v2.1
  4. // Copyright 1993-1995 nuText Systems. All Rights Reserved Worldwide.
  5. //
  6. // Brief Menu definitions (included by MAIN.AML)
  7. //
  8. // If you have made any changes, save this file and select 'Recompile
  9. // the Editor' from the Set menu. Exit and re-enter the editor for
  10. // your changes to take effect.
  11. // -------------------------------------------------------------------
  12.  
  13. // -------------------------------------------------------------------
  14. //  Edit Window menu bar and tool bar
  15. // -------------------------------------------------------------------
  16.  
  17.   function  EditMen
  18.  
  19.     // menu bar
  20.     menubar "" 1
  21.       item "&File"     "editFile"
  22.       item "&Window"   "editWindow"
  23.       item "&Block"    "editBlock"
  24.       item "&Search"   "editSearch"
  25.       item "F&old"     "editFold"
  26.       item "&Edit"     "editEdit"
  27.       item "&Clip"     "editClip"
  28.       item "&Print"    "editPrint"
  29.       item "Se&t"      "editSet"
  30.       item "M&acro"    "editMacro"
  31.       item "&Help"     "editHelp"
  32.     end
  33.  
  34.     // tool bar
  35.     menubar "" 2
  36.       item "<&&≡>"     toolbar                 // close tool bar
  37.       item "<&&?>"     quickref 'u' 'f'        // users guide
  38.       item "<&&*>"     open "*.*"              // display file manager
  39.       item "<&&/>"     copywin                 // copy window
  40.       item "<&&─>"     splitwin 'h'            // split window horz
  41.       item "<&&|>"     splitwin 'v'            // split window vert
  42.       item "<&&o>"     askopen                 // open prompt
  43.       item "<&&s>"     save                    // save file
  44.       item "<&&F>"     askfind                 // find prompt
  45.       item "<&&f>"     findlast                // do last find/replace
  46.       item "<&&r>"     formatblock2            // reformat block
  47.       item "<&&«>"     undo                    // undo last change
  48.       item "<&&»>"     redo                    // redo last change
  49.       item "<&&>>"     foldblock2              // fold block
  50.       item "<&&<>"     destroyfold2            // destroyfold
  51.     end
  52.   end
  53.  
  54.  
  55. // -------------------------------------------------------------------
  56. //  Edit Window pulldown menus
  57. // -------------------------------------------------------------------
  58.  
  59.   menu  "editFile"
  60.     item " &New                  <ctrl n>"  opennew
  61.     item " &Open..                <alt e>"  askopen
  62.     item " Open and &Insert..     <alt r>"  askinsert
  63.     item " Open &Binary.."                  askopenb
  64.     item " Open Las&t"                      openlast
  65.     item " &Rename..              <alt o>"  askname
  66.     item " &Save"                           save
  67.     item " Sa&ve As.."                      asksaveas
  68.     item "-"
  69.     item " &File Manager.."                 open "*.*"
  70.     item " Ne&xt                  <alt n>"  nextfile
  71.     item " &Prev                  <alt ->"  prevfile
  72.     item " &List..                <alt b>"  filelist
  73.     item "─"
  74.     item " &Close                <ctrl ->"  close
  75.     item " Close &All             <alt x>"  closeall
  76.     item " Sav&e and Close"                 close 's'
  77.     item " Save an&d Close All   <ctrl x>"  closeall 's'
  78.     item "─"
  79.     item " Abo&ut.."                        about
  80.   end
  81.  
  82.  
  83.   menu  "editWindow"
  84.     item " &Restore"                       restore
  85.     item " &Move/Size              <f2>"   sizekey
  86.     item " P&an               <ctrl f2>"   pankey
  87.     item " M&inimize"                      minimize
  88.     item " Ma&ximize           <ctrl z>"   maximize
  89.     item " &Next               <ctrl a>"   nextwindow
  90.     item " &Prev"                          prevwindow
  91.     item " &List..                 <f1>"   winlist
  92.     item "─"
  93.     item " &Copy            <ctrl o><w>"   copywin
  94.     item " Split Hor&z"                    splitwin 'h'
  95.     item " Split Ver&t"                    splitwin 'v'
  96.     item "─"
  97.     item " Ca&scade          <shift f5>"   cascade
  98.     item " Tile &Horz        <shift f4>"   tile 'h'
  99.     item " Tile &Vert        <shift f3>"   tile 'v'
  100.     item "─"
  101.     item " Tool &Bar          <ctrl f8>"   toolbar
  102.     item " Pr&ompt Style.."                runcfg "prom"
  103.   end
  104.  
  105.   menu  "editMark"
  106.     item " Mark &Line         <alt l>"   markline
  107.     item " Mark &Column       <alt c>"   markcolumn
  108.     item " Mark C&haracter    <alt a>"   markchar
  109.     item " Mark &Word"                   markword
  110.     item " Mark to &EOL"                 markeol
  111.     item " Mark &Paragraph"              markpara "tb"
  112.     item "─"
  113.     item " &Unmark"                      destroymark
  114.   end
  115.  
  116.   menu  "editBlock"
  117.     item " Mar&k..                    "    submenu "editMark"
  118.     item " &Copy"                           copyblock2
  119.     item " Copy &Over"                      copyblockover
  120.     item " &Move"                           moveblock2
  121.     item " Mo&ve Over"                      moveblockover
  122.     item " &Delete          <ctrl o><d>"    deleteblock2
  123.     item " &Indent           <shift f8>"    shiftblock  1
  124.     item " Uninden&t         <shift f7>"    shiftblock -1
  125.     item "─"
  126.     item " &Fill            <ctrl o><f>"    fillblock2
  127.     item " &Reformat        <ctrl o><r>"    formatblock2
  128.     item " R&eformat Right      <alt y>"    formatblock2 "rj"
  129.     item " S&ave..              <alt w>"    saveblock2
  130.     item " &Sort            <ctrl o><s>"    sortblock2
  131.     item " Lo&wercase"                      caseblock 'l'
  132.     item " U&ppercase       <ctrl o><u>"    caseblock
  133.     item "─"
  134.     item " &Left Justify"                   justblock2 'l'
  135.     item " Ri&ght Justify"                  justblock2 'r'
  136.     item " Ce&nter          <ctrl o><c>"    justblock2 'c'
  137.   end
  138.  
  139.   // brief-style find/replace
  140.   forward findbr
  141.   forward togglecase
  142.   forward toggleregx
  143.   forward gotoroutine
  144.  
  145.   menu  "editSearch"
  146.     item " &Search..            <alt s> or <f5>"   findbr
  147.     item " Search &Backward..          <alt f5>"   findbr '' 'r'
  148.     item " Search &Again             <shift f5>"   findlast
  149.     item " &Translate..         <alt t> or <f6>"   findbr 't'
  150.     item " Translate Back&ward..       <alt f6>"   findbr 't' 'r'
  151.     item " Translate Agai&n          <shift f6>"   search2 (gethiststr "_repl")
  152.     item " &Case Sensitive Toggle     <ctrl f5>"   togglecase
  153.     item " Reg E&xpression Toggle     <ctrl f6>"   toggleregx
  154.     item "-"
  155.     item " Scan &Files..               <ctrl s>"   askscan
  156.     item " &Incremental Search         <ctrl i>"   isearch
  157.     item " Find &Occurrences..         <ctrl h>"   askfindo
  158.     item " Goto Ro&utine               <ctrl g>"   gotoroutine
  159.     item "─"
  160.     item " &Place Bookmark.."                      placebook
  161.     item " &Go to Bookmark.."                      askbook
  162.     item " Go to &Line..                <alt g>"   askrow
  163.     item " Go to Bloc&k Start"                     gotomark 't'
  164.     item " Find &Matching Char         <ctrl [>"   gotomatch2
  165.     item " Go to Compiler &Error"                  gotoerror
  166.   end
  167.  
  168.   menu  "editFold"
  169.     item " &Fold Next Line"                     foldline
  170.     item " &Unfold Next Line"                   foldline 'u'
  171.     item "─"
  172.     item " C&reate Fold"                        createfold
  173.     item " &Destroy Fold"                       destroyfold2
  174.     item " &Open Fold               <alt \\>"   openfold
  175.     item " &Close Fold              <alt \\>"   closefold
  176.     item "─"
  177.     item " Fold Bloc&k"                         foldblock2
  178.     item " Fold Block Fl&at"                    foldflat
  179.     item " Des&troy Block Folds"                foldblock 'ds'
  180.     item " O&pen Block Folds"                   foldblock 'os'
  181.     item " C&lose Block Folds"                  foldblock 'cs'
  182.     item "─"
  183.     item " Destro&y All Folds       <alt 0>"    foldall 'ds'
  184.     item " Ope&n All Folds          <alt [>"    foldall 'os'
  185.     item " Clo&se All Folds         <alt ]>"    foldall 'cs'
  186.     item "─"
  187.     item " &Export without Folds.."             asksaveas 'x'
  188.     item " E&xport Block without Folds.."       saveblock2 'x'
  189.   end
  190.  
  191.   menu  "editEdit"
  192.     item " &Undo                    <alt u>"   undo
  193.     item " &Redo                   <ctrl u>"   redo
  194.     item "─"
  195.     item " &Insert Line        <ctrl enter>"   insline2
  196.     item " &Delete Line             <alt d>"   delline
  197.     item " &Split Line"                        splitline2
  198.     item " &Join Line"                         joinline
  199.     item "─"
  200.     item " &Erase to End            <alt k>"   delchar (getlinelen)
  201.     item " Delete Right &Word   <alt baksp>"   delword
  202.     item " Du&plicate Line"                    insline (gettext)
  203.     item " Sw&ap Lines"                        swapline
  204.     item " Ce&nter Line"                       centerline
  205.     item "─"
  206.     item " &Comment Line"                      commentline
  207.     item " Enter &Literal..         <alt q>"   literal
  208.     item " ASCII C&hart..           <alt =>"   asciilist
  209.     item " Date/&Time Stamp     <ctrl o><t>"   timestamp
  210.     item " E&xpand Tabs         <ctrl o><x>"   tabfile
  211.     item " Hi&ghlight Word         <ctrl \\>"  hiliteword
  212.   end
  213.  
  214.   menu  "editClip"
  215.     item " Cu&t                     <grey->"  cut
  216.     item " Cut &Append         <ctrl grey->"  cut 'a'
  217.     item " &Copy                    <grey+>"  copy
  218.     item " Cop&y Append        <ctrl grey+>"  copy 'a'
  219.     item " Copy to &Windows"                  copy 'w'
  220.     item "─"
  221.     item " &Paste                     <ins>"  paste
  222.     item " Paste &Over         <ctrl grey*>"  paste 'o'
  223.     item " Paste &from Windows"               paste 'w'
  224.     item "─"
  225.     item " C&lear              <ctrl grey/>"  clear
  226.     item " Current Clip&board..|*"            askclip
  227.   end
  228.  
  229.   menu  "editPrint"
  230.     item " &Print             <ctrl p>"        print
  231.     item " Print &Block        <alt p>"        print 'b'
  232.     item " Print &Formfeed"                    printstr (char 12)
  233.     item "-"
  234.     item " &Header/Footer..|*"                 askprthdr
  235.     item " Printer &Settings..|*"              runcfg "print"
  236.   end
  237.  
  238.   // Note: do not change the first 12 lines of this menu
  239.   // (except for key definitions)
  240.   menu  "editSet"
  241.     item " &AutoIndent             <alt f3>"   setting 'A' TOGGLE
  242.     item " &Backup                 <ctrl w>"   setting 'B' TOGGLE
  243.     item " Line &Draw"                         setting 'D' TOGGLE
  244.     item " Line St&yle..                  "   submenu "LineStyle"
  245.     item " &Match Character"                   setting 'M' TOGGLE
  246.     item " &Smart Tabs"                        setting 'S' TOGGLE
  247.     item " Synta&x Highlighting"               setting 'X' TOGGLE
  248.     item " &Translate              <alt f4>"   setting 'T' TOGGLE
  249.     item " &Undo"                              setting 'U' TOGGLE
  250.     item " &Variable Tabs"                     setting 'V' TOGGLE
  251.     item " &Word Wrap"                         setting 'W' TOGGLE
  252.     item " &Live Word Wrap"                    setting 'L' TOGGLE
  253.     item "─"
  254.     item " Mar&gins and Tabs..|*"              runcfg "marg"
  255.     item " &Line Delimiter Options..|*"        runcfg "ldlm"
  256.     item "─"
  257.     item " &Configuration and Setup..|*"       runcfg "main"
  258.     item " Save Co&nfiguration"                savecfg
  259.     item "─"
  260.     item " &Recompile the Editor   <alt f2>"   recompile
  261.   end
  262.  
  263.   // Note: do not change this menu (except for key definitions)
  264.   menu  "LineStyle"
  265.     item " &Single"               setdraw 0
  266.     item " Double &Horizontal"    setdraw 1
  267.     item " Double &Vertical"      setdraw 2
  268.     item " &Double"               setdraw 3
  269.     item " &Eraser"               setdraw 4
  270.   end
  271.  
  272.   menu  "editMacro"
  273.     item " &Record Toggle            <f7>"    record
  274.     item " &Play                     <f8>"    play
  275.     item " &Erase"                            erasekey
  276.     item " Era&se All"                        erasekey 'a'
  277.     item " Ope&n..               <alt f7>"    askopenkey
  278.     item " Sa&ve..               <alt f8>"    asksavekey
  279.     item " &Assign to Key.."                  assignkey
  280.     item "─"
  281.     item " &Macro List..       <ctrl f12>"    runmac "maclist"
  282.     item " &Key Assignments.."                opencfg "kbd"
  283.     item " Sho&w Available Keys.."            runmac "keydef"
  284.     item "─"
  285.     item " Macro E&xpression..   <ctrl v>"    askeval
  286.     item " R&un Macro.."                      askrmacro
  287.     item " Compi&le Macro.."                  askcmacro
  288.     item "─"
  289.     item " &OS Command..         <alt f9>|*"  askrun
  290.     item " OS Cap&ture.."                     askruncap
  291.     item " OS S&hell              <alt z>|*"  shell
  292.   end
  293.  
  294.   menu  "editHelp"
  295.     item " &User's Guide Topics"                     runmac "helpuser"
  296.     item " User's &Guide"                            quickref 'u'
  297.     item " User &Tips"                               quickref 't'
  298.     item "-"
  299.     item " &Language Reference Topics"               runmac "helplang"
  300.     item " Language &Reference"                      quickref 'l'
  301.     item "-"
  302.     item " &Function Reference          <shift f2>"  quickref 'f'
  303.     item " Function &Quick Reference    <shift f1>"  quickref 'q'
  304.     item "-"
  305.     item " &Ordering Information"                    quickref 'o'
  306.   end
  307.  
  308.  
  309. // -------------------------------------------------------------------
  310. //  File Manager window menu bar
  311. // -------------------------------------------------------------------
  312.  
  313.   function  FmgrMen
  314.     menubar "" 1
  315.       item "&File"    "fmgrFile"
  316.       item "&Window"  "fmgrWindow"
  317.       item "&Mark"    "fmgrMark"
  318.       item "&Command" "fmgrCommand"
  319.       item "&Sort"    "fmgrSort"
  320.       item "&Print"   "fmgrPrint"
  321.       item "Se&t"     "fmgrSet"
  322.       item "M&acro"   "editMacro"
  323.       item "&Help"    "editHelp"
  324.     end
  325.   end
  326.  
  327.  
  328. // -------------------------------------------------------------------
  329. //  File Manager window pulldown menus
  330. // -------------------------------------------------------------------
  331.  
  332.   menu  "fmgrFile"
  333.     item " &New                 <ctrl n>"  opennew
  334.     item " &Open..               <alt e>"  askopen
  335.     item " Open &Binary.."                 askopenb
  336.     item " Open Las&t"                     openlast
  337.     item " &Parent          <ctrl baksp>"  fup
  338.     item " R&efresh"                       reopen
  339.     item "─"
  340.     item " &Close               <ctrl ->"  close
  341.     item " Close &All            <alt x>"  closeall
  342.     item "─"
  343.     item " Abo&ut.."                       about
  344.   end
  345.  
  346.   menu  "fmgrWindow"
  347.     item " &Restore"                      restore
  348.     item " &Move/Size             <f2>"   sizekey
  349.     item " P&an              <ctrl f2>"   pankey
  350.     item " M&inimize"                     minimize
  351.     item " Ma&ximize          <ctrl z>"   maximize
  352.     item " &Next              <ctrl a>"   nextwindow
  353.     item " &Prev"                         prevwindow
  354.     item " &List..                <f1>"   winlist
  355.     item "─"
  356.     item " Ca&scade         <shift f5>"   cascade
  357.     item " Tile &Horz       <shift f4>"   tile 'h'
  358.     item " Tile &Vert       <shift f3>"   tile 'v'
  359.     item "─"
  360.     item " Pr&ompt Style.."               runcfg "prom"
  361.   end
  362.  
  363.   menu  "fmgrMark"
  364.     item " Mark &Toggle     <space>"     fmark
  365.     item "─"
  366.     item " &Mark All        <alt m>"     fmark "ma"
  367.     item " &Unmark All      <alt u>"     fmark "ua"
  368.   end
  369.  
  370.   menu  "fmgrCommand"
  371.     item " &Open                  <enter>"    fopen
  372.     item " Open &Binary         <shift b>"    fopen 'b'
  373.     item " Open &Key Macro      <shift k>"    openkey2 (getffile)
  374.     item "─"
  375.     item " &Move..              <shift m>"    fmove
  376.     item " &Copy..              <shift c>"    fcopy
  377.     item " &Delete     <del> or <shift d>"    fdelete
  378.     item " Re&name..            <shift n>"    frename
  379.     item "─"
  380.     item " &Run                 <shift r>"    frun 'c'
  381.     item " &Print               <shift p>"    fprint
  382.     item "─"
  383.     item " &Attributes..        <shift a>"    fattr
  384.     item " &Touch               <shift t>"    ftouch
  385.     item "─"
  386.     item " Cr&eate Directory.."               fmkdir
  387.     item " &Scan Files..         <ctrl s>"    askscan
  388.   end
  389.  
  390.   menu  "fmgrSort"
  391.     item " &Name           <alt n>"    fsort 'n'
  392.     item " &Extension"                 fsort 'e'
  393.     item " &Size           <alt s>"    fsort 's'
  394.     item " &Date-Time      <alt d>"    fsort 'd'
  395.     item " &OS Default     <alt o>"    fsort 'o'
  396.   end
  397.  
  398.   menu  "fmgrSet"
  399.     item " Confir&mations..|*"                     runcfg "conf"
  400.     item " &File Manager Options..|*"              runcfg "fmgr"
  401.     item " &Line Delimiter Options..|*"            runcfg "ldlm"
  402.     item "-"
  403.     item " &Configuration and Setup..|*"           runcfg "main"
  404.     item " Save Co&nfiguration"                    savecfg
  405.     item "-"
  406.     item " &Recompile the Editor   <alt f2>"       recompile
  407.   end
  408.  
  409.   menu  "fmgrPrint"
  410.     item " &Print             <ctrl p>"   print
  411.     item " Print &Formfeed"               printstr (char 12)
  412.     item " Print &Settings..|*"           runcfg "print"
  413.   end
  414.  
  415.  
  416. // -------------------------------------------------------------------
  417. //  Miscellaneous menus
  418. // -------------------------------------------------------------------
  419.  
  420.   // yes/no/cancel popup menu
  421.   menu  "ync"
  422.     item " &Yes"
  423.     item " &No"
  424.     item " &Cancel"
  425.   end
  426.  
  427.   // ok/cancel popup menu
  428.   menu  "ok"
  429.     item " O&k"
  430.     item " &Cancel"
  431.   end
  432.  
  433.   // replace/append/cancel popup menu
  434.   menu  "rac"
  435.     item " &Replace"
  436.     item " &Append"
  437.     item " &Cancel"
  438.   end
  439.  
  440.