/*
(c) Copyright 1988-1994 Microsoft Corporation.

Microsoft Bars&Pipes Professional Source Code License

This License governs use of the accompanying Software.  
Microsoft hopes you find this Software useful.

You are licensed to do anything you want with the Software. 

In return, we simply require that you agree:

1.	Not to remove any copyright notices from the Software.

2.	That the Software comes "as is", with no warranties.  
	None whatsoever. This means no implied warranty of merchantability or 
	fitness for a particular purpose or any warranty of non-infringement.  
	Also, you must pass this disclaimer on whenever you distribute the Software.

3.	That we will not be liable for any of those types of damages known as indirect, 
	special, consequential, or incidental related to the Software or this License, 
	to the maximum extent the law permits. Also, you must pass this limitation of 
	liability on whenever you distribute the Software.

4.	That if you sue anyone over patents that you think may apply to the Software 
	for that person’s use of the Software, your license to the Software ends automatically.

5.	That the patent rights Microsoft is licensing only apply to the Software, 
	not to any derivatives you make.

6.	That your rights under the License end automatically if you breach this in any way.
*/

#include <intuition/intuition.h>

static struct IntuiText invertIText2 = {
        2,0,JAM1,
        -106,1,
        NULL,
        "Tiefste Note:",
        NULL
};

static struct IntuiText invertIText1 = {
        4,0,JAM1,
        7,1,
        NULL,
        "C#",
        &invertIText2
};

static struct Gadget invertGadget4 = {
        NULL,
        117,32,
        26,9,
        GADGHBOX+GADGHIMAGE,
        RELVERIFY+GADGIMMEDIATE,
        BOOLGADGET,
        NULL,
        NULL,
        &invertIText1,
        NULL,
        NULL,
        3,
        NULL
};

static struct IntuiText invertIText3 = {
        4,0,JAM1,
        7,1,
        NULL,
        "10",
        NULL
};

static struct Gadget invertGadget3 = {
        &invertGadget4,
        147,32,
        26,9,
        GADGHBOX+GADGHIMAGE,
        RELVERIFY+GADGIMMEDIATE,
        BOOLGADGET,
        NULL,
        NULL,
        &invertIText3,
        NULL,
        NULL,
        4,
        NULL
};

static struct IntuiText invertIText4 = {
        4,0,JAM1,
        7,1,
        NULL,
        "10",
        NULL
};

static struct Gadget invertGadget2 = {
        &invertGadget3,
        147,17,
        26,9,
        GADGHBOX+GADGHIMAGE,
        RELVERIFY+GADGIMMEDIATE,
        BOOLGADGET,
        NULL,
        NULL,
        &invertIText4,
        NULL,
        NULL,
        2,
        NULL
};

static struct IntuiText invertIText6 = {
        2,0,JAM1,
        -106,1,
        NULL,
        "Höchste Note:",
        NULL
};

static struct IntuiText invertIText5 = {
        4,0,JAM1,
        7,1,
        NULL,
        "C#",
        &invertIText6
};

static struct Gadget invertGadget1 = {
        &invertGadget2,
        117,17,
        26,9,
        GADGHBOX+GADGHIMAGE,
        RELVERIFY+GADGIMMEDIATE,
        BOOLGADGET,
        NULL,
        NULL,
        &invertIText5,
        NULL,
        NULL,
        1,
        NULL
};

#define invertGadgetList1 invertGadget1

struct NewWindow invertNewWindowStructure1 = {
        168,45,
        186,48,
        6,1,
        GADGETDOWN+GADGETUP,
        WINDOWDRAG+WINDOWDEPTH+WINDOWCLOSE+ACTIVATE+NOCAREREFRESH,
        &invertGadget1,
        NULL,
        "Invertieren",
        NULL,
        NULL,
        5,5,
        -1,-1,
        CUSTOMSCREEN
};

