4fe3f37a20888df7ca73b435628e331ae2e657af
[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
47   bool initialized() const;
48
49   QString user() const;
50   QString host() const;
51   QString nick() const;
52   QString hostmask() const;
53
54   QString userModes() const;
55
56   QStringList channels() const;
57     
58   void updateObjectName();
59                          
60 public slots:  
61   void setUser(const QString &user);
62   void setHost(const QString &host);
63   void setNick(const QString &nick);
64   void updateHostmask(const QString &mask);
65                                           
66   void setUserModes(const QString &modes);
67
68   void joinChannel(const QString &channel);
69   void partChannel(const QString &channel);
70
71   void addUserMode(const QString &mode);
72   void removeUserMode(const QString &mode);
73
74   // init seters
75   void initSetChannels(const QStringList channels);
76   
77   void setInitialized();
78
79 signals:
80   void userSet(QString user);
81   void hostSet(QString host);
82   void nickSet(QString newnick);
83   void hostmaskUpdated(QString mask);
84   
85   void channelsSet(QStringList channels);
86   void userModesSet(QString modes);
87   
88   void channelJoined(QString channel);
89   void channelParted(QString channel);
90
91   void userModeAdded(QString mode);
92   void userModeRemoved(QString mode);
93
94   void objectNameSet();
95   
96 //   void setUsermodes(const QSet<QString> &usermodes);
97 //   QSet<QString> usermodes() const;
98
99   void initDone();
100
101 private:
102   inline bool operator==(const IrcUser &ircuser2) {
103     return (_nick.toLower() == ircuser2.nick().toLower());
104   }
105
106   inline bool operator==(const QString &nickname) {
107     return (_nick.toLower() == nickname.toLower());
108   }
109
110   bool _initialized;
111
112   QString _nick;
113   QString _user;
114   QString _host;
115
116   QSet<QString> _channels;
117   QString _userModes;
118   
119   NetworkInfo *networkInfo;
120 };
121
122 #endif