/*  IFF source = up-arrow */

#include <intuition/intuition.h>

static UWORD up_data[32] =
{
0x0000, 0x7000, 0x0080, 0x0000, 0x01c0, 0x0000, 0x03e0, 0x0000, 
0x0ff8, 0x0000, 0x01c0, 0x0000, 0x0000, 0x0000, 0xc000, 0x0000, 
0x0000, 0x0000, 0x7f7f, 0x0000, 0x7e3f, 0x0000, 0x7c1f, 0x0000, 
0x7007, 0x0000, 0x7e3f, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
};

struct Image UpImg = 
{
0, 0,
20, 8, 2,
(USHORT *) &up_data[0],
0x3, 0x0,
0L,
};

/*  IFF source = down-arrow */

static UWORD down_data[36] =
{
0xc000, 0x0000, 0x0000, 0x0000, 0x01c0, 0x0000, 0x0ff8, 0x0000, 
0x03e0, 0x0000, 0x01c0, 0x0000, 0x0080, 0x0000, 0x8000, 0x0000, 
0xc000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x7e3f, 0x0000, 
0x7007, 0x0000, 0x7c1f, 0x0000, 0x7e3f, 0x0000, 0x7f7f, 0x0000, 
0x0000, 0x0000, 0x0000, 0x0000, 
};

struct Image DownImg = 
{
0, -1,
20, 9, 2,
(USHORT *) &down_data[0],
0x3, 0x0,
0L,
};


/*  IFF source = right-arrow */

static UWORD right_data[40] =
{
0x0001, 0xc000, 0x0300, 0x0000, 0x03c0, 0x0000, 0x7ff0, 0x0000, 
0x7ffc, 0x0000, 0x7ff0, 0x0000, 0x03c0, 0x0000, 0x0300, 0x0000, 
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x7cfc, 0x0000, 
0x7c3c, 0x0000, 0x000c, 0x0000, 0x0000, 0x0000, 0x000c, 0x0000, 
0x7c3c, 0x0000, 0x7cfc, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
};

struct Image RightImg = 
{
0, 0,
18, 10, 2,
(USHORT *) &right_data[0],
0x3, 0x0,
0L,
};

/*  IFF source = left-arrow */

static UWORD left_data[40] =
{
0x0001, 0x8000, 0x0180, 0x0000, 0x0780, 0x0000, 0x1ffc, 0x0000, 
0x7ffc, 0x0000, 0x1ffc, 0x0000, 0x0780, 0x0000, 0x0180, 0x0000, 
0x8000, 0x0000, 0xe000, 0x0000, 0x0000, 0x0000, 0x7e7c, 0x0000, 
0x787c, 0x0000, 0x6000, 0x0000, 0x0000, 0x0000, 0x6000, 0x0000, 
0x787c, 0x0000, 0x7e7c, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
};

struct Image LeftImg = 
{
0, 0,
17, 10, 2,
(USHORT *) &left_data[0],
0x3, 0x0,
0L,
};




/*  IFF source = horiz-knob */

static UWORD horiz[20] =
{
0x0000, 0xc000,
0x7ffe, 0x0000,
0x7ffe, 0x0000,
0x0000, 0x0000, 
0xc000, 0x0000,
0x0000, 0x0000,
0x0000, 0x0000,
0x0000, 0x0000, 
0x0000, 0x0000,
0x0000, 0x0000, 
};

struct Image hi =
{
0, 1,
18, 5, 2,
(USHORT *) horiz,
0x3, 0x0,
0L,
};


/*  IFF source = vert-knob */

static UWORD vert[16] =
{
0x0018, 0x7fc0, 0x7fc0, 0x7fc0, 0x7fc0, 0x7fc0, 0x8000, 0xc000, 
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 
};

struct Image vi =
{
1, 0,
13, 8, 2,
(USHORT *) vert,
0x3, 0x0,
0L,
};

