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.
125 lines
2.9 KiB
125 lines
2.9 KiB
/*
|
|
webpresenceplugin.h
|
|
|
|
Kopete Web Presence plugin
|
|
|
|
Copyright (c) 2002,2003 by Will Stephenson <will@stevello.free-online.co.uk>
|
|
|
|
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 WEBPRESENCEPLUGIN_H
|
|
#define WEBPRESENCEPLUGIN_H
|
|
|
|
#include <tqvaluestack.h>
|
|
|
|
#include <tdeio/job.h>
|
|
|
|
#include "kopetecontact.h"
|
|
#include "kopeteonlinestatus.h"
|
|
|
|
class TQTimer;
|
|
class KTempFile;
|
|
namespace Kopete { class MetaContact; }
|
|
class TDEToggleAction;
|
|
class TDEActionCollection;
|
|
|
|
typedef TQValueList<Kopete::Protocol*> ProtocolList;
|
|
|
|
class WebPresencePlugin : public Kopete::Plugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
private:
|
|
int frequency;
|
|
bool showAddresses;
|
|
bool useImName;
|
|
TQString userName;
|
|
TQString userStyleSheet;
|
|
bool useImagesInHTML;
|
|
|
|
// Is set to true when Kopete has notified us
|
|
// that we're about to be unloaded.
|
|
bool shuttingDown;
|
|
|
|
enum {
|
|
WEB_HTML,
|
|
WEB_XHTML,
|
|
WEB_XML,
|
|
WEB_CUSTOM,
|
|
WEB_UNDEFINED
|
|
} resultFormatting;
|
|
|
|
TQString resultURL;
|
|
|
|
public:
|
|
WebPresencePlugin( TQObject *parent, const char *name, const TQStringList &args );
|
|
virtual ~WebPresencePlugin();
|
|
|
|
virtual void aboutToUnload();
|
|
|
|
protected slots:
|
|
void loadSettings();
|
|
|
|
/**
|
|
* Write a file to the specified location,
|
|
*/
|
|
void slotWriteFile();
|
|
/**
|
|
* Called when an upload finished, displays error if needed
|
|
*/
|
|
void slotUploadJobResult( TDEIO::Job * );
|
|
/**
|
|
* Called to schedule a write, after waiting to see if more changes
|
|
* occur (accounts tend to change status together)
|
|
*/
|
|
void slotWaitMoreStatusChanges();
|
|
/**
|
|
* Sets us up to respond to account status changes
|
|
*/
|
|
void listenToAllAccounts();
|
|
/**
|
|
* Sets us up to respond to a new account
|
|
*/
|
|
void listenToAccount( Kopete::Account* account );
|
|
|
|
protected:
|
|
/**
|
|
* Generate the file (HTML, text) to be uploaded
|
|
*/
|
|
KTempFile* generateFile();
|
|
/**
|
|
* Apply named stylesheet to get content and presentation
|
|
*/
|
|
bool transform( KTempFile* src, KTempFile* dest );
|
|
/**
|
|
* Helper method, generates list of all IM protocols
|
|
*/
|
|
ProtocolList allProtocols();
|
|
/**
|
|
* Converts numeric status to a string
|
|
*/
|
|
TQString statusAsString( const Kopete::OnlineStatus &newStatus );
|
|
/**
|
|
* Schedules writes
|
|
*/
|
|
TQTimer* m_writeScheduler;
|
|
|
|
// The file to be uploaded to the WWW
|
|
KTempFile *m_output;
|
|
};
|
|
|
|
#endif
|
|
|
|
// vim: set noet ts=4 sts=4 sw=4:
|