jussi01: can you spell aliases?
[quassel.git] / src / common / aliasmanager.cpp
diff --git a/src/common/aliasmanager.cpp b/src/common/aliasmanager.cpp
new file mode 100644 (file)
index 0000000..c03c4e4
--- /dev/null
@@ -0,0 +1,78 @@
+/***************************************************************************
+ *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   devel@quassel-irc.org                                                 *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) version 3.                                           *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+
+#include "aliasmanager.h"
+
+#include <QDebug>
+#include <QStringList>
+
+AliasManager &AliasManager::operator=(const AliasManager &other) {
+  _aliases = other._aliases;
+  return *this;
+}
+
+int AliasManager::indexOf(const QString &name) const {
+  for(int i = 0; i < _aliases.count(); i++) {
+    if(_aliases[i].name == name)
+      return i;
+  }
+  return -1;
+}
+
+QVariantMap AliasManager::initAliases() const {
+  QVariantMap aliases;
+  QStringList names;
+  QStringList expansions;
+
+  for(int i = 0; i < _aliases.count(); i++) {
+    names << _aliases[i].name;
+    expansions << _aliases[i].expansion;
+  }
+
+  aliases["names"] = names;
+  aliases["expansions"] = expansions;
+  return aliases;
+}
+
+void AliasManager::initSetAliases(const QVariantMap &aliases) {
+  QStringList names = aliases["names"].toStringList();
+  QStringList expansions = aliases["expansions"].toStringList();
+
+  if(names.count() != expansions.count()) {
+    qWarning() << "AliasesManager::initSetAliases: received" << names.count() << "alias names but only" << expansions.count() << "expansions!";
+    return;
+  }
+
+  _aliases.clear();
+  for(int i = 0; i < names.count(); i++) {
+    _aliases << Alias(names[i], expansions[i]);
+  }
+}
+
+
+void AliasManager::addAlias(const QString &name, const QString &expansion) {
+  if(contains(name)) {
+    return;
+  }
+
+  _aliases << Alias(name, expansion);
+
+  emit aliasAdded(name, expansion);
+}