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.
tdenetwork/kopete/kopete/kopeteaccountstatusbaricon.h

59 lines
1.5 KiB

/*
kopeteaccounrstatusbaricon.h - Kopete Account StatusBar Dock Icon
Copyright (c) 2001-2003 by Duncan Mac-Vicar Prett <duncan@kde.org>
Kopete (c) 2002-2003 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 KOPETEACCOUNTSTATUSBARICON_H
#define KOPETEACCOUNTSTATUSBARICON_H
#include <tqevent.h>
#include <tqlabel.h>
#include <tqpoint.h>
namespace Kopete
{
class Account;
}
/**
* @author Duncan Mac-Vicar P. <duncan@kde.org>
*/
class KopeteAccountStatusBarIcon : public TQLabel
{
Q_OBJECT
public:
/**
* Create a statusbar icon.
*/
KopeteAccountStatusBarIcon( Kopete::Account *acc, TQWidget *parent,
const char *name = 0 );
~KopeteAccountStatusBarIcon();
signals:
void rightClicked( Kopete::Account *acc, const TQPoint &p );
void leftClicked( Kopete::Account *acc, const TQPoint &p );
protected:
virtual void mousePressEvent( TQMouseEvent *me );
private:
Kopete::Account *m_account;
};
#endif