revert between 56095 -> 55830 in arch
[AROS.git] / workbench / c / Decoration / menudecorclass.h
blob610e1f0f5f7045ca7cb43fc5e3e58dbff4da4929
1 /*
2 Copyright 2011, The AROS Development Team.
3 $Id$
4 */
6 #ifndef MENUDECORCLASS_H
7 #define MENUDECORCLASS_H
9 #include <exec/types.h>
10 #include <intuition/intuition.h>
11 #include <intuition/classes.h>
13 #include "newimage.h"
15 struct MenuData
17 struct NewImage *ni;
18 struct BitMap *map;
20 struct NewImage *img_menu;
21 struct TileInfo *img_menu_ti;
22 struct NewImage *img_amigakey;
23 struct NewImage *img_menucheck;
24 struct NewImage *img_submenu;
25 LONG ActivePen;
26 LONG DeactivePen;
27 BOOL truecolor;
31 #define MDA_DecorImages 0x10003
32 #define MDA_DecorConfig 0x10004
34 struct IClass * MakeMenuDecorClass();
35 #endif