home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / c / cliptree.zip / FILEMAN.CH < prev    next >
Text File  |  1993-02-04  |  2KB  |  65 lines

  1. /*****
  2. *  
  3. *  Fileman.ch
  4. *  Include file for Fileman.prg
  5. *
  6. *  Copyright (c) Nantucket Corporation, 1990.  All rights reserved.
  7. *  David R. Alison
  8. *
  9. */
  10.  
  11. // The elements in aFileMan
  12. #define  FM_ROWTOP         1
  13. #define  FM_COLTOP         2
  14. #define  FM_ROWBOTTOM      3
  15. #define  FM_COLBOTTOM      4
  16. #define  FM_COLOR          5
  17. #define  FM_PATH           6
  18. #define  FM_RETURNFILE     7
  19. #define  FM_OLDCOLOR       8
  20. #define  FM_OLDSCREEN      9
  21. #define  FM_OLDSELECT      10
  22.  
  23. #define  FM_ELEMENTS       10
  24.  
  25. // The elements in aTab
  26. #define  TB_ROWTOP         1
  27. #define  TB_COLTOP         2
  28. #define  TB_ROWBOTTOM      3
  29. #define  TB_COLBOTTOM      4
  30. #define  TB_COLOR          5
  31. #define  TB_POSITION       6
  32.  
  33. #define  TB_ELEMENTS       6
  34.  
  35. // The main menu items
  36. #define  MN_LOOK           1
  37. #define  MN_COPY           2
  38. #define  MN_RENAME         3
  39. #define  MN_DELETE         4
  40. #define  MN_PRINT          5
  41. #define  MN_OPEN           6
  42.  
  43. // The Up and Down arrows, highlight and background char's for the thumb tab
  44. #define  TB_UPARROW        CHR(  24 )
  45. #define  TB_DNARROW        CHR(  25 )
  46. #define  TB_HIGHLIGHT      CHR( 178 )
  47. #define  TB_BACKGROUND     CHR( 176 )
  48.  
  49. // The checkmark for the tagged files
  50. #define  FM_CHECK          CHR( 251 )
  51.  
  52. // Other definitions
  53. #define  FM_SINGLEFRAME    "┌─┐│┘─└│"
  54. #define  FM_SINGLEBORDER   "├┤┬┴"
  55. #define  FM_DOUBLEFRAME    "╔═╗║╝═╚║"
  56. #define  FM_DOUBLEBORDER   "╠╣╦╩"
  57. #define  FM_LEFT           1
  58. #define  FM_RIGHT          2
  59. #define  FM_TOP            3
  60. #define  FM_BOTTOM         4
  61. #define  FM_HORIZONTAL     2
  62. #define  FM_VERTICAL       4
  63. #define  K_SPACE           32
  64.  
  65.