home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 17
/
amigaformatcd17.iso
/
-look_here_1st!-
/
handy_tools
/
tinymeter
/
source
/
tinymeter_main
/
launchclass.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-27
|
2KB
|
78 lines
#include <utility/tagitem.h>
#define lau_up 0
#define lau_down 1
#define lau_over 2
#define lind_realcenter 0
#define lind_center 1
#define lind_left 2
#define lind_right 3
#define LAU_TextFont (TAG_USER + 22 )
#define LAU_TextFormat (TAG_USER + 23 )
#define LAU_Label (TAG_USER + 24 )
#define LAU_File (TAG_USER + 25 )
#define LAU_3D (TAG_USER + 26)
#define LAU_Border (TAG_USER + 27)
#define LAU_Background (TAG_USER + 28)
#define LAU_ShadowLabel (TAG_USER + 29)
#define LAU_List (TAG_USER + 30)
#define LAU_Down (TAG_USER + 31)
#define LAU_ColLabel (TAG_USER + 32)
#define LAU_ColEntry (TAG_USER + 33)
#define LAU_ColHalfBright (TAG_USER + 34)
#define LAU_ColHalfShadow (TAG_USER + 35)
#define LAU_ColCursor (TAG_USER + 36)
#define LAU_ColBrightEdg (TAG_USER + 37)
#define LAU_ColDarkEdg (TAG_USER + 38)
#define LAU_ColBackground (TAG_USER + 39)
#define LAU_Screen (TAG_USER + 40)
#define LAU_Indent (TAG_USER + 41)
#define LAU_Type (TAG_USER + 42)
#define LAU_ImgHeight (TAG_USER + 43)
#define LAU_XPos (TAG_USER + 44)
#define LAU_Transparent (TAG_USER + 45)
#define LAU_UsedColors 8
struct LAU_Color
{
UWORD pen;
ULONG red;
ULONG green;
ULONG blue;
};
#ifndef GAU_Color_XXX
struct GAU_Color
{
UWORD pen;
ULONG red;
ULONG green;
ULONG blue;
};
#define GAU_Color_XXX
#endif
struct lau_entry
{
struct lau_entry *next;
char *lau_lbl;
char *lau_cmd;
char *lau_pth;
char *lau_out;
UWORD lau_type;
ULONG lau_stack;
UWORD width;
UWORD height;
Object *img;
};