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/protocols/gadu/gadusession.h

179 lines
4.8 KiB

//
// Copyright (C) 2003-2004 Grzegorz Jaskiewicz <gj at pointblue.com.pl>
// Copyright (C) 2002 Zack Rusin <zack@kde.org>
//
// gadusession.h
//
// 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.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
// 02110-1301, USA.
#ifndef GADUSESSION_H
#define GADUSESSION_H
#include "kopeteaccount.h"
#include <tqvaluelist.h>
#include <tqptrlist.h>
#include <tqobject.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqdatetime.h>
#include <tqcstring.h>
#include <tqhostaddress.h>
#include "gaducontactlist.h"
#include <libgadu.h>
struct KGaduMessage {
TQString message; // Unicode
unsigned int sender_id; // sender's UIN
TQDateTime sendTime;
TQByteArray rtf;
};
struct KGaduLoginParams {
uin_t uin;
TQString password;
bool useTls;
int status;
TQString statusDescr;
unsigned int server;
bool forFriends;
unsigned int client_addr;
unsigned int client_port;
};
struct KGaduNotify {
int status;
TQHostAddress remote_ip;
unsigned short remote_port;
bool fileCap;
int version;
int image_size;
int time;
TQString description;
unsigned int contact_id;
};
struct ResLine{
unsigned int uin;
TQString firstname;
TQString surname;
TQString nickname;
TQString age;
TQString city;
TQString orgin;
TQString meiden;
TQString gender;
int status;
};
typedef TQValueList<ResLine> SearchResult;
class TQSocketNotifier;
class TQStringList;
namespace Kopete { class Message; }
class GaduRichTextFormat;
class GaduSession : public TQObject
{
Q_OBJECT
public:
GaduSession( TQObject* parent = 0, const char* name = 0 );
virtual ~GaduSession();
bool isConnected() const;
int status() const;
TQString contactsToString( GaduContactsList* contactsList );
bool stringToContacts( GaduContactsList& , const TQString& );
static TQString failureDescription( gg_failure_t );
static TQString errorDescription( int err );
static TQString stateDescription( int state );
void dccRequest( const unsigned int );
unsigned int getPersonalInformation();
/*
* Initiates search in public directory, we need to be logged on to perform search !
* This returns 0, if you are unable to search (fe you are not logged on, you don't have memory)
* This does not checks parametrs !
* Calling this function more times with the same params, will continue this search as long as
* @ref pubDirSearchClose() will not be called
* You must set @ref pubDirSearchResult() signal before calling this function, otherwise no result
* will be returned
*/
unsigned int pubDirSearch( ResLine&, int, int, bool );
public slots:
void login( KGaduLoginParams* login );
void logoff( Kopete::Account::DisconnectReason reason = Kopete::Account::Manual );
int notify( uin_t*, int );
int addNotify( uin_t );
int removeNotify( uin_t );
int sendMessage( uin_t recipient, const Kopete::Message& msg, int msgClass );
int changeStatus( int, bool forFriends = false );
int changeStatusDescription( int, const TQString&, bool forFriends = false );
int ping();
void requestContacts();
/*
* Releases all allocated memory needed to perform search.
* This will be done on each @ref pubDirNewSearch(), if previuos is not released
*/
void pubDirSearchClose();
void exportContactsOnServer( GaduContactsList* );
bool publishPersonalInformation( ResLine& );
signals:
void error( const TQString&, const TQString& );
void messageReceived( KGaduMessage* );
void ackReceived( unsigned int );
void contactStatusChanged( KGaduNotify* );
void pong();
void connectionFailed( gg_failure_t failure );
void connectionSucceed( );
void disconnect( Kopete::Account::DisconnectReason );
void pubDirSearchResult( const SearchResult&, unsigned int );
void userListRecieved( const TQString& );
void userListExported();
void incomingCtcp( unsigned int );
protected slots:
void enableNotifiers( int );
void disableNotifiers();
void checkDescriptor();
void login( struct gg_login_params* );
private:
void sendResult( gg_pubdir50_t );
void handleUserlist( gg_event* );
void notify60( gg_event* );
void destroySession();
void destroyNotifiers();
void createNotifiers( bool connect );
gg_session* session_;
TQSocketNotifier* read_;
TQSocketNotifier* write_;
gg_login_params params_;
TQTextCodec* textcodec;
int searchSeqNr_;
GaduRichTextFormat* rtf;
};
#endif