/* * Copyright 2004-2020, Haiku. * Distributed under the terms of the MIT License. * * Authors: * Adrien Destugues, pulkomandy@pulkomandy.tk * Michael Wilber */ #ifndef ICONVIEW_H #define ICONVIEW_H #include #include #include #include class IconView : public BView { public: IconView(icon_size iconSize = B_LARGE_ICON); ~IconView(); status_t InitCheck() const; virtual void Draw(BRect area); void DrawIcon(bool draw); status_t SetIcon(const BPath& path, icon_size iconSize = B_LARGE_ICON); status_t SetIcon(const uint8_t* hvifData, size_t size, icon_size iconSize = B_LARGE_ICON); private: void _SetSize(); icon_size fIconSize; BBitmap* fIconBitmap; bool fDrawIcon; }; #endif // #ifndef ICONVIEW_H