home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / Triton / Source / classes / framebox.def < prev    next >
Text File  |  1998-05-23  |  463b  |  20 lines

  1. #ifndef TRCL_FRAMEBOX_DEFINED
  2. #define TRCL_FRAMEBOX_DEFINED
  3.  
  4.   #include "displayobject.def"
  5.  
  6.   struct TROD_FrameBox
  7.   {
  8.     struct TROD_DisplayObject   DO;
  9.     struct TROD_DisplayObject * ChildObject;
  10.     STRPTR                      Text;
  11.     ULONG                       TextLength;
  12.     ULONG                       PixelTextLength;
  13.     ULONG                       BoxType;
  14.     ULONG                       Flags;
  15.   };
  16.  
  17.   extern TR_DEFAULTMETHOD(FrameBox);
  18.  
  19. #endif
  20.