home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database / CLIPR503.W96 / FILEMAN.C_ / FILEMAN.C
Text File  |  1995-06-20  |  2KB  |  65 lines

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