home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / clarion / library / memoed / memoedit.h02 < prev    next >
Text File  |  1992-02-15  |  2KB  |  58 lines

  1.  
  2. !═════════════════════════════════════════════════════════════════════════
  3. !
  4. !  %%keyword%% '%n'
  5. !  'MEMOEDIT.H02' - Header file for MEMOEDIT.CLA
  6. !
  7. !  %%keyword%% '%v'
  8. !  Revision Number: '1'
  9. !  %%keyword%% '%d'
  10. !  Revision Date  : '15-Feb-92'
  11. !
  12. !  Copyright : Bobcat Systems (c) 1991
  13. !  Author    : Robert J. Pupazzoni
  14. !           CIS:[70441,204]
  15. !
  16. !  Compiler  : Clarion Professional Developer v.2.1, Batch 2105
  17. !
  18. !
  19. !  DESCRIPTION
  20. !
  21. !    This header file defines some global equates and variables used by the
  22. !    memo editor.
  23. !
  24. !═════════════════════════════════════════════════════════════════════════
  25.  
  26.          SOURCE
  27.  
  28.          ! Equates:
  29. eMarkedFG    EQUATE(0)                 ! Default marked foreground
  30. eMarkedBG    EQUATE(7)                 ! Default marked background
  31.  
  32. eHelpID         EQUATE('MEMOEDIT')             ! Help screen ID
  33.  
  34. eHCRCode     STRING('<255>')             ! Hard CR code
  35. eHCRSymbol   STRING('╝')             ! Hard CR symbol
  36.  
  37.          ! Globals:
  38.          GROUP,PRE(MED)             ! Memo editor info structure
  39. bbModified     BYTE                 !   Buffer modified flag
  40. bbShowCodes    BYTE                 !   Format code flag
  41. ilMemoRows     LONG                 !   Max. rows in memo field
  42. ibRowOfs       BYTE                 !   Display row offset
  43. ibColOfs       BYTE                 !   Display column offset
  44. ibRows           BYTE                 !   Display rows
  45. ibCols           BYTE                 !   Display columns
  46. ibWrapCol      BYTE                 !   Word wrap column
  47. ibTextFore     BYTE                 !   Normal text foreground
  48. ibTextBack     BYTE                 !   Normal text background
  49. ibMarkFore     BYTE(eMarkedFG)             !   Marked block foreground
  50. ibMarkBack     BYTE(eMarkedBG)             !   Marked block background
  51. bbMarking      BYTE                 !   Marking mode flag
  52. ilMarkBegRow   LONG                 !   Marked block start row
  53. ibMarkBegCol   BYTE                 !   Marked block start col
  54. ilMarkEndRow   LONG                 !   Marked block end row
  55. ibMarkEndCol   BYTE                 !   Marked block end col
  56.          .
  57.  
  58.