home *** CD-ROM | disk | FTP | other *** search
- #ifndef HELPGADGET_H
- #define HELPGADGET_H
-
- /****************************************************************
- * *
- * Funktion : HelpGadget.h *
- * *
- ****************************************************************
- * *
- * Input : None *
- * *
- * *
- * Output : None *
- * *
- * *
- ****************************************************************
- * *
- * Comment : Definitionen der Gadgets für das HelpWindow *
- * *
- * Rev : V1.0 *
- * *
- * History : V1.0 erstellen dieses Files 01.09.89 *
- * *
- * Doc : Intuition Reference Manual *
- * *
- * Bugs : keine bekannten *
- * *
- * Autor : Oesch Silvano *
- * *
- * Datum : 01.09.89 *
- * *
- ****************************************************************/
-
- SHORT HpBV1[] =
- {
- 0,0,
- 65,0,
- 65,11,
- 0,11,
- 0,0
- };
-
- struct Border HpB1 =
- {
- -1,-1,
- 3,0,JAM1,
- 5,
- HpBV1,
- NULL
- };
-
- struct IntuiText HpIT1 =
- {
- 3,0,JAM2,
- 5,1,
- &TOPAZ80,
- "Abbruch",
- NULL
- };
-
- struct Gadget HpG3 =
- {
- NULL,
- 129,14,
- 64,10,
- NULL,
- RELVERIFY,
- BOOLGADGET,
- (APTR)&HpB1,
- NULL,
- &HpIT1,
- NULL,
- NULL,
- 2,
- NULL
- };
-
- SHORT HpBV2[] =
- {
- 0,0,
- 161,0,
- 161,11,
- 0,11,
- 0,0
- };
-
- struct Border HpB2 =
- {
- -1,-1,
- 3,0,JAM1,
- 5,
- HpBV2,
- NULL
- };
-
- struct IntuiText HpIT2 =
- {
- 3,0,JAM2,
- 5,1,
- &TOPAZ80,
- "vorhergehende Seite",
- NULL
- };
-
- struct Gadget HpG2 =
- {
- &HpG3,
- 201,14,
- 160,10,
- NULL,
- RELVERIFY,
- BOOLGADGET,
- (APTR)&HpB2,
- NULL,
- &HpIT2,
- NULL,
- NULL,
- 3,
- NULL
- };
-
- SHORT HpBV3[] =
- {
- 0,0,
- 111,0,
- 111,11,
- 0,11,
- 0,0
- };
-
- struct Border HpB3 =
- {
- -1,-1,
- 3,0,JAM1,
- 5,
- HpBV3,
- NULL
- };
-
- struct IntuiText HpIT3 =
- {
- 3,0,JAM2,
- 3,1,
- &TOPAZ80,
- "nächste Seite",
- NULL
- };
-
- struct Gadget HpG1 =
- {
- &HpG2,
- 10,14,
- 110,10,
- NULL,
- RELVERIFY,
- BOOLGADGET,
- (APTR)&HpB3,
- NULL,
- &HpIT3,
- NULL,
- NULL,
- 1,
- NULL
- };
-
- #endif HELPGADGET_H
-