more default nick and realname improvements
[quassel.git] / src / common / aliasmanager.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
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) version 3.                                           *
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 ALIASMANAGER_H
22 #define ALIASMANAGER_H
23
24 #include "syncableobject.h"
25
26 #include <QVariantMap>
27
28 class AliasManager : public SyncableObject {
29   Q_OBJECT
30
31 public:
32   inline AliasManager(QObject *parent = 0) : SyncableObject(parent) { setAllowClientUpdates(true); }
33   AliasManager &operator=(const AliasManager &other);
34   
35   struct Alias {
36     QString name;
37     QString expansion;
38     Alias(const QString &name_, const QString &expansion_) : name(name_), expansion(expansion_) {}
39   };
40   typedef QList<Alias> AliasList ;
41
42   int indexOf(const QString &name) const;
43   inline bool contains(const QString &name) const { return indexOf(name) != -1; }
44   inline bool isEmpty() const { return _aliases.isEmpty(); }
45   inline int count() const { return _aliases.count(); }
46   inline void removeAt(int index) { _aliases.removeAt(index); }
47   inline Alias &operator[](int i) { return _aliases[i]; }
48   inline const Alias &operator[](int i) const { return _aliases[i]; }
49   inline const AliasList &aliases() const { return _aliases; }
50
51   static AliasList defaults();
52
53 public slots:
54   virtual QVariantMap initAliases() const;
55   virtual void initSetAliases(const QVariantMap &aliases);
56
57   virtual void addAlias(const QString &name, const QString &expansion);
58   
59 protected:
60   void setAliases(const QList<Alias> &aliases) { _aliases = aliases; }
61
62 signals:
63   void aliasAdded(const QString &name, const QString &expansion);
64   
65 private:
66   AliasList _aliases;
67
68 };
69
70 #endif //ALIASMANAGER_H