1 /* 2 * Copyright 2016 Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * John Scipione, jscipione@gmail.com 7 */ 8 #ifndef _RAINBOW_ITEM_H 9 #define _RAINBOW_ITEM_H 10 11 12 #include <StringItem.h> 13 14 15 class RainbowItem : public BStringItem { 16 public: 17 RainbowItem(const char* string); 18 19 virtual void DrawItem(BView* owner, BRect frame, bool complete); 20 }; 21 22 23 #endif // _RAINBOW_ITEM_H 24