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.
129 lines
2.8 KiB
129 lines
2.8 KiB
15 years ago
|
/*
|
||
|
kircentity.h - IRC Client
|
||
|
|
||
|
Copyright (c) 2004 by Michel Hermier <michel.hermier@wanadoo.fr>
|
||
|
|
||
|
Kopete (c) 2004 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 KIRCENTITY_H
|
||
|
#define KIRCENTITY_H
|
||
|
|
||
|
#include <kdeversion.h>
|
||
|
#include <kresolver.h>
|
||
|
#include <ksharedptr.h>
|
||
|
|
||
|
#include <qobject.h>
|
||
|
#include <qregexp.h>
|
||
|
#include <qstring.h>
|
||
|
#include <qvaluelist.h>
|
||
|
|
||
|
namespace KIRC
|
||
|
{
|
||
|
|
||
|
class Engine;
|
||
|
|
||
|
class Entity
|
||
|
: public QObject,
|
||
|
public KShared
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
typedef enum Type
|
||
|
{
|
||
|
Unknown,
|
||
|
Server,
|
||
|
Channel,
|
||
|
Service,
|
||
|
User
|
||
|
};
|
||
|
|
||
|
Entity(const QString &name, const Type type = Unknown);
|
||
|
virtual ~Entity();
|
||
|
|
||
|
QString name() const;
|
||
|
QString host() const;
|
||
|
|
||
|
KIRC::Entity::Type type() const;
|
||
|
KIRC::Entity::Type guessType();
|
||
|
static KIRC::Entity::Type guessType(const QString &name);
|
||
|
|
||
|
// FIXME: Remove these is* functions ... They are duplicate with the ::guessType(const QString&)
|
||
|
inline static bool isUser( const QString &s )
|
||
|
{ return sm_userRegExp.exactMatch(s); };
|
||
|
inline bool isChannel()
|
||
|
{ return isChannel(m_name); };
|
||
|
inline static bool isChannel( const QString &s )
|
||
|
{ return sm_channelRegExp.exactMatch(s); };
|
||
|
|
||
|
QString userNick() const;
|
||
|
static QString userNick(const QString &s);
|
||
|
|
||
|
QString userName() const;
|
||
|
static QString userName(const QString &s);
|
||
|
|
||
|
QString userHost() const;
|
||
|
static QString userHost(const QString &s);
|
||
|
|
||
|
signals:
|
||
|
void destroyed(KIRC::Entity *self);
|
||
|
|
||
|
private:
|
||
|
|
||
|
static QString userInfo(const QString &s, int num_cap);
|
||
|
|
||
|
static const QRegExp sm_userRegExp;
|
||
|
static const QRegExp sm_userStrictRegExp;
|
||
|
static const QRegExp sm_channelRegExp;
|
||
|
|
||
|
KIRC::Entity::Type m_type;
|
||
|
QString m_name;
|
||
|
|
||
|
// peer ip address if the entity is a User.
|
||
|
QString m_address;
|
||
|
};
|
||
|
|
||
|
class EntityPtr
|
||
|
: public KSharedPtr<KIRC::Entity>
|
||
|
{
|
||
|
public:
|
||
|
EntityPtr(KIRC::Entity *entity = 0)
|
||
|
: KSharedPtr<KIRC::Entity>(entity)
|
||
|
{ }
|
||
|
|
||
|
EntityPtr(const KIRC::EntityPtr &entity)
|
||
|
: KSharedPtr<KIRC::Entity>(entity)
|
||
|
{ }
|
||
|
};
|
||
|
|
||
|
class EntityPtrList
|
||
|
: public QValueList<EntityPtr>
|
||
|
{
|
||
|
public:
|
||
|
EntityPtrList()
|
||
|
{ }
|
||
|
|
||
|
EntityPtrList(const EntityPtr &entity)
|
||
|
{
|
||
|
append(entity);
|
||
|
}
|
||
|
|
||
|
EntityPtrList(const QValueList<EntityPtr> &list)
|
||
|
: QValueList<EntityPtr>(list)
|
||
|
{ }
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|