/* * Copyright 2003-2009 Haiku Inc. All rights reserved. * Distributed under the terms of the MIT License. * * Authors: * Fernando Francisco de Oliveira * Michael Wilber */ #ifndef SHOW_IMAGE_STATUS_VIEW_H #define SHOW_IMAGE_STATUS_VIEW_H #include #include class ShowImageStatusView : public BView { public: ShowImageStatusView(BRect rect, const char *name, uint32 resizingMode, uint32 flags); virtual void Draw(BRect updateRect); virtual void MouseDown(BPoint where); void SetText(BString &text); private: BString fText; }; #endif // SHOW_IMAGE_STATUS_VIEW_H