1 #ifndef COLOR_MENU_ITEM_H 2 #define COLOR_MENU_ITEM_H 3 4 class ColorMenuItem: public BMenuItem { 5 public: 6 ColorMenuItem(const char *label, rgb_color color, BMessage *message); 7 protected: 8 virtual void DrawContent(); 9 private: 10 rgb_color fItemColor; 11 12 }; 13 #endif 14 15