/* * Copyright (c) 2007, Haiku, Inc. * Distributed under the terms of the MIT license. * * Author: * Ɓukasz 'Sil2100' Zemczak */ #ifndef PACKAGETEXTVIEWER_H #define PACKAGETEXTVIEWER_H #include #include #include "BlockingWindow.h" class PackageTextViewer : public BlockingWindow { public: PackageTextViewer(const char* text, bool disclaimer = false); virtual void MessageReceived(BMessage* message); private: void _InitView(const char *text, bool disclaimer); }; #endif