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.
107 lines
3.1 KiB
107 lines
3.1 KiB
/*
|
|
testbedaccount.h - Kopete Testbed Protocol
|
|
|
|
Copyright (c) 2003 by Will Stephenson <will@stevello.free-online.co.uk>
|
|
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
|
|
|
|
*************************************************************************
|
|
* *
|
|
* This library 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 TESTBEDACCOUNT_H
|
|
#define TESTBEDACCOUNT_H
|
|
|
|
#include <kopeteaccount.h>
|
|
#include "testbedwebcamdialog.h"
|
|
|
|
class KActionMenu;
|
|
namespace Kopete { class Contact; }
|
|
namespace Kopete { class MetaContact; }
|
|
|
|
class TestbedContact;
|
|
class TestbedProtocol;
|
|
class TestbedFakeServer;
|
|
|
|
/**
|
|
* This represents an account connected to the testbed
|
|
* @author Will Stephenson
|
|
*/
|
|
class TestbedAccount : public Kopete::Account
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
TestbedAccount( TestbedProtocol *tqparent, const TQString& accountID, const char *name = 0 );
|
|
~TestbedAccount();
|
|
/**
|
|
* Construct the context menu used for the status bar icon
|
|
*/
|
|
virtual KActionMenu* actionMenu();
|
|
|
|
/**
|
|
* Creates a protocol specific Kopete::Contact subclass and adds it to the supplie
|
|
* Kopete::MetaContact
|
|
*/
|
|
virtual bool createContact(const TQString& contactId, Kopete::MetaContact* tqparentContact);
|
|
/**
|
|
* Called when Kopete is set globally away
|
|
*/
|
|
virtual void setAway(bool away, const TQString& reason);
|
|
/**
|
|
* Called when Kopete status is changed globally
|
|
*/
|
|
virtual void setOnlineStatus(const Kopete::OnlineStatus& status , const TQString &reason = TQString());
|
|
/**
|
|
* 'Connect' to the testbed server. Only sets myself() online.
|
|
*/
|
|
virtual void connect( const Kopete::OnlineStatus& initialtqStatus = Kopete::OnlineStatus() );
|
|
/**
|
|
* Disconnect from the server. Only sets myself() offline.
|
|
*/
|
|
virtual void disconnect();
|
|
/**
|
|
* Return a reference to the server stub
|
|
*/
|
|
TestbedFakeServer* server();
|
|
public slots:
|
|
/**
|
|
* Called by the server when it has a message for us.
|
|
* This identifies the sending Kopete::Contact and passes it a Kopete::Message
|
|
*/
|
|
void receivedMessage( const TQString &message );
|
|
|
|
protected:
|
|
/**
|
|
* This simulates contacts going on and offline in sync with the account's status changes
|
|
*/
|
|
void updateContacttqStatus();
|
|
TestbedFakeServer* m_server;
|
|
|
|
protected slots:
|
|
/**
|
|
* Change the account's status. Called by KActions and internally.
|
|
*/
|
|
void slotGoOnline();
|
|
/**
|
|
* Change the account's status. Called by KActions and internally.
|
|
*/
|
|
void slotGoAway();
|
|
/**
|
|
* Change the account's status. Called by KActions and internally.
|
|
*/
|
|
void slotGoOffline();
|
|
/**
|
|
* Show webcam. Called by KActions and internally.
|
|
*/
|
|
void slotShowVideo();
|
|
|
|
};
|
|
|
|
#endif
|