This Update is like 90% bugfixes.
[quassel.git] / src / common / ircuser.h
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by The Quassel Team                             *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _IRCUSER_H_
22 #define _IRCUSER_H_
23
24 #include <QSet>
25 #include <QString>
26 #include <QStringList>
27 #include <QVariantMap>
28
29 class SignalProxy;
30 class NetworkInfo;
31 class IrcChannel;
32
33 class IrcUser : public QObject {
34   Q_OBJECT
35   
36   Q_PROPERTY(QString user READ user WRITE setUser STORED false)
37   Q_PROPERTY(QString host READ host WRITE setHost STORED false)
38   Q_PROPERTY(QString nick READ nick WRITE setNick STORED false)
39
40   Q_PROPERTY(QStringList channels READ channels STORED false)
41   //  Q_PROPERTY(QStringList usermodes READ usermodes WRITE setUsermodes)
42
43   
44 public:
45   IrcUser(const QString &hostmask, NetworkInfo *networkInfo);
46   virtual ~IrcUser();
47
48   bool initialized() const;
49
50   QString user() const;
51   QString host() const;
52   QString nick() const;
53   QString hostmask() const;
54
55   QString userModes() const;
56
57   QStringList channels() const;
58     
59   void updateObjectName();
60                          
61 public slots:  
62   void setUser(const QString &user);
63   void setHost(const QString &host);
64   void setNick(const QString &nick);
65   void updateHostmask(const QString &mask);
66                                           
67   void setUserModes(const QString &modes);
68
69   void joinChannel(const QString &channel);
70   void partChannel(const QString &channel);
71
72   void addUserMode(const QString &mode);
73   void removeUserMode(const QString &mode);
74
75   // init seters
76   void initSetChannels(const QStringList channels);
77   
78   void setInitialized();
79
80 signals:
81   void userSet(QString user);
82   void hostSet(QString host);
83   void nickSet(QString newnick);
84   void hostmaskUpdated(QString mask);
85   
86   void channelsSet(QStringList channels);
87   void userModesSet(QString modes);
88   
89   void channelJoined(QString channel);
90   void channelParted(QString channel);
91
92   void userModeAdded(QString mode);
93   void userModeRemoved(QString mode);
94
95   void objectNameSet();
96   
97 //   void setUsermodes(const QSet<QString> &usermodes);
98 //   QSet<QString> usermodes() const;
99
100   void initDone();
101
102 private:
103   inline bool operator==(const IrcUser &ircuser2) {
104     return (_nick.toLower() == ircuser2.nick().toLower());
105   }
106
107   inline bool operator==(const QString &nickname) {
108     return (_nick.toLower() == nickname.toLower());
109   }
110
111   bool _initialized;
112
113   QString _nick;
114   QString _user;
115   QString _host;
116
117   QSet<QString> _channels;
118   QString _userModes;
119   
120   NetworkInfo *networkInfo;
121 };
122
123 #endif