From f59b2e28c7ab8707750e56a140023af08d42390e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 30 Dec 2017 15:57:14 +0100 Subject: kopete: Remove AIM protocol AIM network has been shutdown in 2017-12-15 This resolves Bug 2846 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko (cherry picked from commit dc34f9c39105b0fe20ba45c064a08406084acbe2) --- kopete/protocols/oscar/aim/aimcontact.h | 103 -------------------------------- 1 file changed, 103 deletions(-) delete mode 100644 kopete/protocols/oscar/aim/aimcontact.h (limited to 'kopete/protocols/oscar/aim/aimcontact.h') diff --git a/kopete/protocols/oscar/aim/aimcontact.h b/kopete/protocols/oscar/aim/aimcontact.h deleted file mode 100644 index eea346ac..00000000 --- a/kopete/protocols/oscar/aim/aimcontact.h +++ /dev/null @@ -1,103 +0,0 @@ -/* - aimcontact.h - Oscar Protocol Plugin - - Copyright (c) 2003 by Will Stephenson - Copyright (c) 2004 by Matt Rogers - Kopete (c) 2002-2004 by the Kopete developers - - ************************************************************************* - * * - * 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 AIMCONTACT_H -#define AIMCONTACT_H - -#include - -#include "oscarcontact.h" - - -namespace Kopete -{ -class ChatSession; -} - -class AIMAccount; -class AIMProtocol; -class AIMUserInfoDialog; - -class AIMContact : public OscarContact -{ -Q_OBJECT - - -public: - AIMContact( Kopete::Account*, const TQString&, Kopete::MetaContact*, - const TQString& icon = TQString(), const Oscar::SSI& ssiItem = Oscar::SSI() ); - virtual ~AIMContact(); - - bool isReachable(); - TQPtrList *customContextMenuActions(); - - const TQString &userProfile() { return mUserProfile; } - - virtual const TQString awayMessage(); - virtual void setAwayMessage( const TQString &message ); - - int warningLevel() const; - - /** - * Gets the last time an autoresponse was sent to this contact - * @returns TQDateTime Object that represents the date/time - */ - TQDateTime lastAutoResponseTime() {return m_lastAutoresponseTime;} - - /** Sends an auto response to this contact */ - virtual void sendAutoResponse(Kopete::Message& msg); - -public slots: - void updateSSIItem(); - void slotUserInfo(); - void userInfoUpdated( const TQString& contact, const UserDetails& details ); - void userOnline( const TQString& userId ); - void userOffline( const TQString& userId ); - void updateAwayMessage( const TQString& userId, const TQString& message ); - void updateProfile( const TQString& contact, const TQString& profile ); - void gotWarning( const TQString& contact, TQ_UINT16, TQ_UINT16 ); - -signals: - void updatedProfile(); - -protected slots: - virtual void slotSendMsg(Kopete::Message& message, Kopete::ChatSession *); - virtual void updateFeatures(); - -private slots: - void requestBuddyIcon(); - void haveIcon( const TQString&, TQByteArray ); - void closeUserInfoDialog(); - void warnUser(); - - void slotVisibleTo(); - void slotInvisibleTo(); - -private: - AIMProtocol* mProtocol; - AIMUserInfoDialog* m_infoDialog; - TQString mUserProfile; - bool m_haveAwayMessage; - bool m_mobile; // Is this user mobile (i.e. do they have message forwarding on, or mobile AIM) - TQDateTime m_lastAutoresponseTime; - - TDEAction* m_warnUserAction; - TDEToggleAction *m_actionVisibleTo; - TDEToggleAction *m_actionInvisibleTo; -}; -#endif -//kate: tab-width 4; indent-mode csands; -- cgit v1.2.1