1 /***************************************************************************
2 * Copyright (C) 2005-2016 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #include "aliasessettingspage.h"
23 #include <QHeaderView>
25 #include <QItemSelectionModel>
27 AliasesSettingsPage::AliasesSettingsPage(QWidget *parent)
28 : SettingsPage(tr("IRC"), tr("Aliases"), parent)
31 ui.newAliasButton->setIcon(QIcon::fromTheme("list-add"));
32 ui.deleteAliasButton->setIcon(QIcon::fromTheme("edit-delete"));
34 ui.aliasesView->setSelectionBehavior(QAbstractItemView::SelectRows);
35 ui.aliasesView->setSelectionMode(QAbstractItemView::SingleSelection);
36 ui.aliasesView->setAlternatingRowColors(true);
37 ui.aliasesView->setTabKeyNavigation(false);
38 ui.aliasesView->setModel(&_aliasesModel);
39 // ui.aliasesView->setSortingEnabled(true);
40 ui.aliasesView->verticalHeader()->hide();
41 ui.aliasesView->horizontalHeader()->setStretchLastSection(true);
43 connect(ui.newAliasButton, SIGNAL(clicked()), &_aliasesModel, SLOT(newAlias()));
44 connect(ui.deleteAliasButton, SIGNAL(clicked()), this, SLOT(deleteSelectedAlias()));
45 connect(&_aliasesModel, SIGNAL(configChanged(bool)), this, SLOT(setChangedState(bool)));
46 connect(&_aliasesModel, SIGNAL(modelReady(bool)), this, SLOT(enableDialog(bool)));
48 enableDialog(_aliasesModel.isReady());
52 void AliasesSettingsPage::load()
54 if (_aliasesModel.configChanged())
55 _aliasesModel.revert();
59 void AliasesSettingsPage::defaults()
61 _aliasesModel.loadDefaults();
65 void AliasesSettingsPage::save()
67 if (_aliasesModel.configChanged())
68 _aliasesModel.commit();
72 void AliasesSettingsPage::enableDialog(bool enabled)
74 ui.newAliasButton->setEnabled(enabled);
75 ui.deleteAliasButton->setEnabled(enabled);
80 void AliasesSettingsPage::deleteSelectedAlias()
82 if (!ui.aliasesView->selectionModel()->hasSelection())
85 _aliasesModel.removeAlias(ui.aliasesView->selectionModel()->selectedIndexes()[0].row());