libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / apps / stylededit / ColorMenuItem.h
blob79a9f7a65fdb129235d68b7382117ccc9324ebf1
1 /*
2 * Copyright 2002-2006, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Mattias Sundblad
7 * Andrew Bachmann
8 */
9 #ifndef COLOR_MENU_ITEM_H
10 #define COLOR_MENU_ITEM_H
13 #include <MenuItem.h>
16 class BMessage;
19 class ColorMenuItem: public BMenuItem {
20 public:
21 ColorMenuItem(const char* label, rgb_color color,
22 BMessage* message);
23 rgb_color Color() { return fItemColor; };
25 protected:
26 virtual void DrawContent();
28 private:
29 rgb_color fItemColor;
32 #endif // COLOR_MENU_ITEM_H