/* * Copyright 2001-2015, Haiku. * Distributed under the terms of the MIT License. * * Authors: * Rafael Romo * Stefano Ceccherini (burton666@libero.it) * Axel Dörfler, axeld@pinc-software.de * Augustin Cavalier */ #ifndef ALERT_WINDOW_H #define ALERT_WINDOW_H #include #include #include #include class BWindow; class AlertWindow : public BAlert { public: AlertWindow(BMessenger handler); virtual void MessageReceived(BMessage* message); virtual void DispatchMessage(BMessage* message, BHandler* handler); private: void UpdateCountdownView(); int32 fSeconds; BMessenger fHandler; BFont fOriginalFont; BFont fFont; }; #endif /* ALERT_WINDOW_H */