haiku/src/apps/stylededit/ColorMenuItem.h
Phil Greenway f7afd44bda Initial Check in. Coded by Mattias Sundblad.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1135 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-09-23 23:01:55 +00:00

15 lines
265 B
C++

#ifndef COLOR_MENU_ITEM_H
#define COLOR_MENU_ITEM_H
class ColorMenuItem: public BMenuItem {
public:
ColorMenuItem(const char *label, rgb_color color, BMessage *message);
protected:
virtual void DrawContent();
private:
rgb_color fItemColor;
};
#endif