You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/trayicon.h

62 lines
1.3 KiB

/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
/*
This class handles the system tray icon
begin: Sun Nov 9 2003
copyright: (C) 2003 by Peter Simonsson
email: psn@linux.se
*/
#ifndef TRAYICON_H
#define TRAYICON_H
#include <tqptrlist.h>
#include <tqpixmap.h>
#include <ksystemtray.h>
class TQTimer;
class Server;
namespace Konversation
{
class TrayIcon : public KSystemTray
{
TQ_OBJECT
public:
explicit TrayIcon(TQWidget* parent = 0);
~TrayIcon();
bool notificationEnabled() { return m_notificationEnabled; }
public slots:
void startNotification();
void endNotification();
void setNotificationEnabled(bool notify) { m_notificationEnabled = notify; }
void updateAppearance();
protected slots:
void blinkTimeout();
private:
TQTimer* m_blinkTimer;
bool m_blinkOn;
bool m_notificationEnabled;
TQPixmap m_nomessagePix;
TQPixmap m_messagePix;
};
}
#endif