c03c4e42bb04252ab08099cd2f663d6830cbdf12
[quassel.git] / src / common / aliasmanager.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 #include "aliasmanager.h"
22
23 #include <QDebug>
24 #include <QStringList>
25
26 AliasManager &AliasManager::operator=(const AliasManager &other) {
27   _aliases = other._aliases;
28   return *this;
29 }
30
31 int AliasManager::indexOf(const QString &name) const {
32   for(int i = 0; i < _aliases.count(); i++) {
33     if(_aliases[i].name == name)
34       return i;
35   }
36   return -1;
37 }
38
39 QVariantMap AliasManager::initAliases() const {
40   QVariantMap aliases;
41   QStringList names;
42   QStringList expansions;
43
44   for(int i = 0; i < _aliases.count(); i++) {
45     names << _aliases[i].name;
46     expansions << _aliases[i].expansion;
47   }
48
49   aliases["names"] = names;
50   aliases["expansions"] = expansions;
51   return aliases;
52 }
53
54 void AliasManager::initSetAliases(const QVariantMap &aliases) {
55   QStringList names = aliases["names"].toStringList();
56   QStringList expansions = aliases["expansions"].toStringList();
57
58   if(names.count() != expansions.count()) {
59     qWarning() << "AliasesManager::initSetAliases: received" << names.count() << "alias names but only" << expansions.count() << "expansions!";
60     return;
61   }
62
63   _aliases.clear();
64   for(int i = 0; i < names.count(); i++) {
65     _aliases << Alias(names[i], expansions[i]);
66   }
67 }
68
69
70 void AliasManager::addAlias(const QString &name, const QString &expansion) {
71   if(contains(name)) {
72     return;
73   }
74
75   _aliases << Alias(name, expansion);
76
77   emit aliasAdded(name, expansion);
78 }