/* * Copyright 2007-2016 Haiku, Inc. * Distributed under the terms of the MIT License. * * Authors: * Ryan Leavengood * John Scipione * Joseph Groover */ #ifndef _STRIPE_VIEW_H #define _STRIPE_VIEW_H #include #include class StripeView : public BView { public: StripeView(BBitmap* icon); ~StripeView(); virtual void Draw(BRect updateRect); BBitmap* Icon() const { return fIcon; }; void SetIcon(BBitmap* icon); private: BBitmap* fIcon; }; #endif /* _STRIPE_VIEW_H */