1 /* 2 * Copyright 2001-2008, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * DarkWyrm <bpmagic@columbus.rr.com> 7 * Rene Gollent (rene@gollent.com) 8 */ 9 #ifndef COLORWHICH_ITEM_H 10 #define COLORWHICH_ITEM_H 11 12 #include <InterfaceDefs.h> 13 #include <ListItem.h> 14 15 class ColorWhichItem : public BStringItem 16 { 17 public: 18 ColorWhichItem(const char* text, color_which which); 19 20 color_which ColorWhich(void); 21 22 private: 23 color_which colorWhich; 24 }; 25 26 #endif 27