home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / iffconverter / gadgets_enum.h < prev    next >
Text File  |  1997-01-07  |  642b  |  45 lines

  1. enum GadID {
  2.    GD_Copyright,
  3.    GD_Quit,
  4.    GD_Load,
  5.    GD_Save,
  6.    GD_PicClipDimensions,
  7.    GD_PicWidth,
  8.    GD_PicHeight,
  9.    GD_PicDepth,
  10.    GD_PicSize,
  11.    GD_ClipWidth,
  12.    GD_ClipHeight,
  13.    GD_ClipLeft,
  14.    GD_ClipTop,
  15.    GD_ClipSize,
  16.    GD_FileMode,
  17.    GD_RenderMode,
  18.    GD_DrawCross,
  19.    GD_Info,
  20.    GD_ByteBoundry,
  21.    GD_Sentinal
  22. };
  23.  
  24. enum FileModeType {
  25.    FM_Single,
  26.    FM_Sequence,
  27.    FM_Multiple,
  28.    FM_Dir
  29. };
  30.  
  31. enum RenderModeType {
  32.    RM_Interleave,
  33.    RM_Raw,
  34.    RM_Copper,
  35.    RM_Font8,
  36. //   RM_Sprite    Think this one over. Should it be implemented?????
  37. };
  38.  
  39. enum ByteBoundry {
  40.    BB_None,
  41.    BB_Type1,
  42.    BB_Type2,
  43.    BB_Type3,
  44. };
  45.