f7afd44bda
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1135 a95241bf-73f2-0310-859d-f6bbb57e9c96
15 lines
265 B
C++
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
|
|
|