/* * notify.h * Copyright (C) 1999 Kurt Granroth * * This file contains the declaration of the KBiffNotify * widget. * * $Id$ */ #ifndef KBIFFNOTIFY_H #define KBIFFNOTIFY_H #ifdef HAVE_CONFIG_H #include #endif #include #include class QLabel; class KBiffNotify : public QDialog { Q_OBJECT public: KBiffNotify(QWidget *parent, const int num_new, const QString& mailbx); virtual ~KBiffNotify(); const QString getMailbox() { return mailbox; } int newMessages() { return messages; } void setNew(const int num_new); signals: void signalLaunchMailClient(); protected slots: void slotLaunchMailClient(); protected: QString mailbox; QLabel* msgLabel; int messages; }; #endif // KBIFFNOTIFY_H