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.
106 lines
2.9 KiB
106 lines
2.9 KiB
/*
|
|
systemtray.h - Kopete Tray Dock Icon
|
|
|
|
Copyright (c) 2002 by Nick Betcher <nbetcher@kde.org>
|
|
Copyright (c) 2002-2003 by Martijn Klingens <klingens@kde.org>
|
|
Copyright (c) 2003 by Olivier Goffart <ogoffart @ kde.org>
|
|
|
|
Kopete (c) 2002-2005 by the Kopete developers <kopete-devel@kde.org>
|
|
|
|
*************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
*************************************************************************
|
|
*/
|
|
|
|
#ifndef SYSTEMTRAY_H
|
|
#define SYSTEMTRAY_H
|
|
|
|
#include <tqpixmap.h>
|
|
#include <tqmovie.h>
|
|
|
|
#include <ksystemtray.h>
|
|
|
|
#include "kopetemessageevent.h"
|
|
|
|
class TQTimer;
|
|
class TQPoint;
|
|
class TDEPopupMenu;
|
|
class TDEActionMenu;
|
|
class KopeteBalloon;
|
|
|
|
/**
|
|
* @author Nick Betcher <nbetcher@kde.org>
|
|
*
|
|
* NOTE: This class is for use ONLY in libkopete! It is not public API, and
|
|
* is NOT supposed to remain binary compatible in the future!
|
|
*/
|
|
class KopeteSystemTray : public KSystemTray
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
/**
|
|
* Retrieve the system tray instance
|
|
*/
|
|
static KopeteSystemTray* systemTray( TQWidget* parent = 0, const char* name = 0 );
|
|
|
|
~KopeteSystemTray();
|
|
|
|
// One method, multiple interfaces :-)
|
|
void startBlink( const TQString &icon );
|
|
void startBlink( const TQPixmap &icon );
|
|
void startBlink( const TQMovie &movie );
|
|
void startBlink();
|
|
|
|
void stopBlink();
|
|
bool isBlinking() const { return mIsBlinking; };
|
|
TDEPopupMenu *contextMenu() const { return KSystemTray::contextMenu(); };
|
|
|
|
protected:
|
|
virtual void mousePressEvent( TQMouseEvent *e );
|
|
virtual void mouseDoubleClickEvent( TQMouseEvent *me );
|
|
virtual void contextMenuAboutToShow( TDEPopupMenu * );
|
|
|
|
signals:
|
|
void aboutToShowMenu(TDEPopupMenu *am);
|
|
|
|
private slots:
|
|
void slotBlink();
|
|
void slotNewEvent(Kopete::MessageEvent*);
|
|
void slotEventDone(Kopete::MessageEvent *);
|
|
void slotConfigChanged();
|
|
void slotReevaluateAccountStates();
|
|
void slotRemoveBalloon();
|
|
void addBalloon();
|
|
|
|
private:
|
|
KopeteSystemTray( TQWidget* parent, const char* name );
|
|
TQString squashMessage( const Kopete::Message& msgText );
|
|
void removeBalloonEvent(Kopete::MessageEvent *);
|
|
|
|
TQTimer *mBlinkTimer;
|
|
TQPixmap mKopeteIcon;
|
|
TQPixmap mBlinkIcon;
|
|
TQMovie mMovie;
|
|
|
|
bool mIsBlinkIcon;
|
|
bool mIsBlinking;
|
|
|
|
static KopeteSystemTray* s_systemTray;
|
|
|
|
TQPtrList<Kopete::MessageEvent> mEventList;
|
|
TQPtrList<Kopete::MessageEvent> mBalloonEventList;
|
|
KopeteBalloon *m_balloon;
|
|
};
|
|
|
|
#endif
|
|
|
|
// vim: set noet ts=4 sts=4 sw=4:
|
|
|