xref: /haiku/src/add-ons/screen_savers/gravity/RainbowItem.h (revision ad5c346a3f83f28ebbf9478219da181a7d6e4c4a)
14b834557SJohn Scipione /*
2*cd91a715SJohn Scipione  * Copyright 2016 Haiku, Inc. All rights reserved.
34b834557SJohn Scipione  * Distributed under the terms of the MIT License.
44b834557SJohn Scipione  *
54b834557SJohn Scipione  * Authors:
64b834557SJohn Scipione  *		John Scipione, jscipione@gmail.com
74b834557SJohn Scipione  */
84b834557SJohn Scipione #ifndef _RAINBOW_ITEM_H
94b834557SJohn Scipione #define _RAINBOW_ITEM_H
104b834557SJohn Scipione 
114b834557SJohn Scipione 
124b834557SJohn Scipione #include <StringItem.h>
134b834557SJohn Scipione 
144b834557SJohn Scipione 
154b834557SJohn Scipione class RainbowItem : public BStringItem {
164b834557SJohn Scipione public:
174b834557SJohn Scipione 							RainbowItem(const char* string);
184b834557SJohn Scipione 
194b834557SJohn Scipione 	virtual	void			DrawItem(BView* owner, BRect frame, bool complete);
204b834557SJohn Scipione };
214b834557SJohn Scipione 
224b834557SJohn Scipione 
234b834557SJohn Scipione #endif	// _RAINBOW_ITEM_H
24