home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_GEN / TCYBER.ZIP / CFCMDS.PAS < prev    next >
Pascal/Delphi Source File  |  1994-01-15  |  1KB  |  60 lines

  1. {
  2. Turbo Vision CyberTools 1.0
  3. (C) 1994 Steve Goldsmith
  4. All Rights Reserved
  5.  
  6. Commands used by CyberFont app.
  7. }
  8.  
  9. unit CFCmds;
  10.  
  11. {$I APP.INC}
  12.  
  13. interface
  14.  
  15. const
  16.  
  17. {app commands}
  18.  
  19.   cmRestoreDef  = 100; {these are on the status line, so they must have}
  20.   cmScreenOpts  = 101; {the ability to be disabled}
  21.  
  22.   cmLoadFont    = 1000;
  23.   cmSaveFont    = 1001;
  24.   cmShellToDos  = 1002;
  25.   cmInvaders    = 1003;
  26.   cmUfo         = 1004;
  27.   cmShip        = 1005;
  28.   cmLoadPCX     = 1006;
  29.   cmSavePCX     = 1007;
  30.   cmAdjPal      = 1008;
  31.   cmSaveConfig  = 1009;
  32.   cmLoadConfig  = 1010;
  33.   cmAbout       = 1011;
  34.   cmAsciiTab    = 1012;
  35.   cmViewDoc     = 1013;
  36.   cmColors      = 1014;
  37.   cmLines1      = 1015;
  38.   cmLines2      = 1016;
  39.   cmEllipses1   = 1017;
  40.   cmEllipses2   = 1018;
  41.   cmEllipses3   = 1019;
  42.   cmRectangles1 = 1020;
  43.   cmRectangles2 = 1021;
  44.   cmClrGraphWin = 1022;
  45.  
  46. {animation dialog commands}
  47.  
  48.   cmAniOn   = 2000;
  49.   cmAniOff  = 2001;
  50.   cmAnimate = 2002;
  51.  
  52. {adjust palette options commands}
  53.  
  54.   cmMsgButtonPress = 3000;
  55.   cmDefaultPal     = 3001;
  56.  
  57. implementation
  58.  
  59. end.
  60.