X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fircuser.h;h=d1ac21e1b2bbf951065d1e8921aba7494c5b3dba;hp=4fe3f37a20888df7ca73b435628e331ae2e657af;hb=8699dd758516d0ded076811e8ea656adc95e69d0;hpb=902c95728306e5ba115de84800fc8d5d239c9d62 diff --git a/src/common/ircuser.h b/src/common/ircuser.h index 4fe3f37a..d1ac21e1 100644 --- a/src/common/ircuser.h +++ b/src/common/ircuser.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005/06 by The Quassel Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.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. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -32,7 +32,7 @@ class IrcChannel; class IrcUser : public QObject { Q_OBJECT - + Q_PROPERTY(QString user READ user WRITE setUser STORED false) Q_PROPERTY(QString host READ host WRITE setHost STORED false) Q_PROPERTY(QString nick READ nick WRITE setNick STORED false) @@ -40,9 +40,9 @@ class IrcUser : public QObject { Q_PROPERTY(QStringList channels READ channels STORED false) // Q_PROPERTY(QStringList usermodes READ usermodes WRITE setUsermodes) - public: IrcUser(const QString &hostmask, NetworkInfo *networkInfo); + virtual ~IrcUser(); bool initialized() const; @@ -54,26 +54,37 @@ public: QString userModes() const; QStringList channels() const; - - void updateObjectName(); - -public slots: + + // user-specific encodings + QTextCodec *codecForEncoding() const; + QTextCodec *codecForDecoding() const; + void setCodecForEncoding(const QString &codecName); + void setCodecForEncoding(QTextCodec *codec); + void setCodecForDecoding(const QString &codecName); + void setCodecForDecoding(QTextCodec *codec); + + QString decodeString(const QByteArray &text) const; + QByteArray encodeString(const QString string) const; + +public slots: void setUser(const QString &user); void setHost(const QString &host); void setNick(const QString &nick); void updateHostmask(const QString &mask); - + void setUserModes(const QString &modes); - void joinChannel(const QString &channel); - void partChannel(const QString &channel); + void joinChannel(IrcChannel *channel); + void joinChannel(const QString &channelname); + void partChannel(IrcChannel *channel); + void partChannel(const QString &channelname); void addUserMode(const QString &mode); void removeUserMode(const QString &mode); // init seters void initSetChannels(const QStringList channels); - + void setInitialized(); signals: @@ -81,23 +92,26 @@ signals: void hostSet(QString host); void nickSet(QString newnick); void hostmaskUpdated(QString mask); - - void channelsSet(QStringList channels); + void userModesSet(QString modes); - + void channelJoined(QString channel); void channelParted(QString channel); void userModeAdded(QString mode); void userModeRemoved(QString mode); - void objectNameSet(); - + void renameObject(QString oldname, QString newname); + // void setUsermodes(const QSet &usermodes); // QSet usermodes() const; void initDone(); +private slots: + void updateObjectName(); + void channelDestroyed(); + private: inline bool operator==(const IrcUser &ircuser2) { return (_nick.toLower() == ircuser2.nick().toLower()); @@ -113,10 +127,14 @@ private: QString _user; QString _host; - QSet _channels; + // QSet _channels; + QSet _channels; QString _userModes; - + NetworkInfo *networkInfo; + + QTextCodec *_codecForEncoding; + QTextCodec *_codecForDecoding; }; #endif