X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Faliasesmodel.cpp;h=251e9e269f019a71b17aafe3521ee4e53d3f4298;hp=588673c20c2400937025685ab92312478b8e7892;hb=9a717378a859383363ea519dd9de9c0138d0db73;hpb=6579cd49c867ce3fb6c99127851a881ea82d1b1b diff --git a/src/qtui/settingspages/aliasesmodel.cpp b/src/qtui/settingspages/aliasesmodel.cpp index 588673c2..251e9e26 100644 --- a/src/qtui/settingspages/aliasesmodel.cpp +++ b/src/qtui/settingspages/aliasesmodel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -30,15 +30,13 @@ AliasesModel::AliasesModel(QObject *parent) : QAbstractItemModel(parent), _configChanged(false) { -// _aliasManager.addAlias("a", "aa"); -// _aliasManager.addAlias("b", "bb"); -// _aliasManager.addAlias("c", "cc"); -// _aliasManager.addAlias("d", "dd"); - // we need this signal for future connects to reset the data; connect(Client::instance(), SIGNAL(connected()), this, SLOT(clientConnected())); + connect(Client::instance(), SIGNAL(disconnected()), this, SLOT(clientDisconnected())); if(Client::isConnected()) clientConnected(); + else + emit modelReady(false); } QVariant AliasesModel::data(const QModelIndex &index, int role) const { @@ -54,13 +52,21 @@ QVariant AliasesModel::data(const QModelIndex &index, int role) const { "Example: \"foo\" can be used per /foo"; case 1: return "The string the shortcut will be expanded to
" - "$i represenents the i'th parameter. $0 the whole string.
" + "special variables:
" + " - $i represents the i'th parameter.
" + " - $i..j represents the i'th to j'th parameter separated by spaces.
" + " - $i.. represents all parameters from i on separated by spaces.
" + " - $i:hostname represents the hostname of the user identified by the i'th parameter or a * if unknown.
" + " - $0 the whole string.
" + " - $currentnick your current nickname
" + " - $channelname the name of the selected channel

" "Multiple commands can be separated with semicolons

" "Example: \"Test $1; Test $2; Test All $0\" will be expanded to three separate messages \"Test 1\", \"Test 2\" and \"Test All 1 2 3\" when called like /test 1 2 3"; default: return QVariant(); } case Qt::DisplayRole: + case Qt::EditRole: switch(index.column()) { case 0: return aliasManager()[index.row()].name; @@ -111,6 +117,24 @@ void AliasesModel::newAlias() { endInsertRows(); } +void AliasesModel::loadDefaults() { + AliasManager &manager = cloneAliasManager(); + + if(!manager.isEmpty()) { + beginRemoveRows(QModelIndex(), 0, rowCount() - 1); + for(int i = rowCount() - 1; i >= 0; i--) + manager.removeAt(i); + endRemoveRows(); + } + + AliasManager::AliasList defaults = AliasManager::defaults(); + beginInsertRows(QModelIndex(), 0, defaults.count() - 1); + foreach(AliasManager::Alias alias, defaults) { + manager.addAlias(alias.name, alias.expansion); + } + endInsertRows(); +} + void AliasesModel::removeAlias(int index) { if(index < 0 || index >= rowCount()) return; @@ -192,7 +216,7 @@ void AliasesModel::commit() { void AliasesModel::initDone() { reset(); - emit modelReady(); + emit modelReady(true); } void AliasesModel::clientConnected() { @@ -201,3 +225,11 @@ void AliasesModel::clientConnected() { connect(&_aliasManager, SIGNAL(initDone()), this, SLOT(initDone())); connect(&_aliasManager, SIGNAL(updated(const QVariantMap &)), this, SLOT(revert())); } + +void AliasesModel::clientDisconnected() { + // clear alias managers + _aliasManager = AliasManager(); + _clonedAliasManager = AliasManager(); + reset(); + emit modelReady(false); +}