X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fircuser.h;h=fe21dfa92eb4690cb6ae8ac1efb609b9528dc992;hb=3dc5425d473ba3e18671020997a333358948f397;hp=daa59e5153a2b4cf7c4fa890eb4b9a718600d241;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222;p=quassel.git diff --git a/src/common/ircuser.h b/src/common/ircuser.h index daa59e51..fe21dfa9 100644 --- a/src/common/ircuser.h +++ b/src/common/ircuser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -52,6 +52,7 @@ class IrcUser : public SyncableObject Q_PROPERTY(int lastAwayMessage READ lastAwayMessage WRITE setLastAwayMessage STORED false) Q_PROPERTY(QString whoisServiceReply READ whoisServiceReply WRITE setWhoisServiceReply STORED false) Q_PROPERTY(QString suserHost READ suserHost WRITE setSuserHost STORED false) + Q_PROPERTY(bool encrypted READ encrypted WRITE setEncrypted STORED false) Q_PROPERTY(QStringList channels READ channels STORED false) Q_PROPERTY(QString userModes READ userModes WRITE setUserModes) @@ -74,6 +75,7 @@ public : inline int lastAwayMessage() const { return _lastAwayMessage; } inline QString whoisServiceReply() const { return _whoisServiceReply; } inline QString suserHost() const { return _suserHost; } + inline bool encrypted() const { return _encrypted; } inline Network *network() const { return _network; } inline QString userModes() const { return _userModes; } @@ -111,6 +113,7 @@ public slots: void setLastAwayMessage(const int &lastAwayMessage); void setWhoisServiceReply(const QString &whoisServiceReply); void setSuserHost(const QString &suserHost); + void setEncrypted(bool encrypted); void updateHostmask(const QString &mask); void setUserModes(const QString &modes); @@ -138,6 +141,7 @@ signals: // void lastAwayMessageSet(int lastAwayMessage); // void whoisServiceReplySet(QString whoisServiceReply); // void suserHostSet(QString suserHost); + void encryptedSet(bool encrypted); void userModesSet(QString modes); void userModesAdded(QString modes); @@ -183,6 +187,7 @@ private: int _lastAwayMessage; QString _whoisServiceReply; QString _suserHost; + bool _encrypted; // QSet _channels; QSet _channels;