Categories in the settings dialog are now clickable
[quassel.git] / src / common / aliasmanager.cpp
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 #include "aliasmanager.h"
22
23 #include <QDebug>
24 #include <QStringList>
25
26 AliasManager &AliasManager::operator=(const AliasManager &other) {
27   if(this == &other)
28     return *this;
29   
30   SyncableObject::operator=(other);
31   _aliases = other._aliases;
32   return *this;
33 }
34
35 int AliasManager::indexOf(const QString &name) const {
36   for(int i = 0; i < _aliases.count(); i++) {
37     if(_aliases[i].name == name)
38       return i;
39   }
40   return -1;
41 }
42
43 QVariantMap AliasManager::initAliases() const {
44   QVariantMap aliases;
45   QStringList names;
46   QStringList expansions;
47
48   for(int i = 0; i < _aliases.count(); i++) {
49     names << _aliases[i].name;
50     expansions << _aliases[i].expansion;
51   }
52
53   aliases["names"] = names;
54   aliases["expansions"] = expansions;
55   return aliases;
56 }
57
58 void AliasManager::initSetAliases(const QVariantMap &aliases) {
59   QStringList names = aliases["names"].toStringList();
60   QStringList expansions = aliases["expansions"].toStringList();
61
62   if(names.count() != expansions.count()) {
63     qWarning() << "AliasesManager::initSetAliases: received" << names.count() << "alias names but only" << expansions.count() << "expansions!";
64     return;
65   }
66
67   _aliases.clear();
68   for(int i = 0; i < names.count(); i++) {
69     _aliases << Alias(names[i], expansions[i]);
70   }
71 }
72
73
74 void AliasManager::addAlias(const QString &name, const QString &expansion) {
75   if(contains(name)) {
76     return;
77   }
78
79   _aliases << Alias(name, expansion);
80
81   emit aliasAdded(name, expansion);
82 }
83
84 AliasManager::AliasList AliasManager::defaults() {
85   AliasList aliases;
86   aliases << Alias("j", "/join $0")
87           << Alias("ns", "/msg nickserv $0")
88           << Alias("nickserv", "/msg nickserv $0")
89           << Alias("cs", "/msg chanserv $0")
90           << Alias("chanserv",  "/msg chanserv $0")
91           << Alias("hs", "/msg hostserv $0")
92           << Alias("hostserv", "/msg hostserv $0")
93           << Alias("back", "/quote away");
94   return aliases;
95 }