home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / texmf / source / driver / show / amiga / pgmodel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-07  |  968 b   |  35 lines

  1. /* mymodel.c -- :ts=8
  2.  * Attribute constant definitions for "mymodelclass".
  3.  */
  4.  
  5. /*
  6. Copyright (c) 1989, 1990 Commodore-Amiga, Inc.
  7.  
  8. Executables based on this information may be used in software
  9. for Commodore Amiga computers. All other rights reserved.
  10. This information is provided "as is"; no warranties are made.
  11. All use is at your own risk, and no liability or responsibility
  12. is assumed.
  13. */
  14.  
  15. /* these are "private" attribute values that won't collide
  16.  * with system values or other private values used in
  17.  * different contexts.
  18.  */
  19. #define MYMODA_CURRVAL    (TAG_USER + 1)    /* the current unsigned value    */
  20. #define MYMODA_RANGE    (TAG_USER + 2)    /* currval <= (range-1)        */
  21.  
  22. /* these fake "strobe" attributes are used by things like "arrow gadgets" */
  23. #define MYMODA_INCRSTROBE    (TAG_USER + 3)
  24. #define MYMODA_DECRSTROBE    (TAG_USER + 4)
  25.  
  26. /* new tag for lower border */
  27. #define MYMODA_LOWERB        (TAG_USER + 5)
  28.  
  29.  
  30.  
  31. Class * initMyModClass(void);
  32. int freeMyModClass( Class * cl );
  33.  
  34.  
  35.