the alias engine can now expand nicks to their hostnames
[quassel.git] / src / qtui / settingspages / aliasessettingspage.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 "aliasessettingspage.h"
22
23 #include <QHeaderView>
24 #include <QItemSelectionModel>
25
26 AliasesSettingsPage::AliasesSettingsPage(QWidget *parent)
27   : SettingsPage(tr("Behaviour"), tr("Aliases"), parent)
28 {
29   ui.setupUi(this);
30
31   ui.aliasesView->setSelectionBehavior(QAbstractItemView::SelectRows);
32   ui.aliasesView->setSelectionMode(QAbstractItemView::SingleSelection);
33   ui.aliasesView->setAlternatingRowColors(true);
34   ui.aliasesView->setTabKeyNavigation(false);
35   ui.aliasesView->setModel(&_aliasesModel);
36   // ui.aliasesView->setSortingEnabled(true);
37   ui.aliasesView->verticalHeader()->hide();
38   ui.aliasesView->horizontalHeader()->setStretchLastSection(true);
39
40   connect(ui.newAliasButton, SIGNAL(clicked()), &_aliasesModel, SLOT(newAlias()));
41   connect(ui.deleteAliasButton, SIGNAL(clicked()), this, SLOT(deleteSelectedAlias()));
42   connect(&_aliasesModel, SIGNAL(configChanged(bool)), this, SLOT(setChangedState(bool)));
43   connect(&_aliasesModel, SIGNAL(modelReady(bool)), this, SLOT(enableDialog(bool)));
44 }
45
46 void AliasesSettingsPage::load() {
47   if(_aliasesModel.configChanged())
48     _aliasesModel.revert();
49 }
50
51 void AliasesSettingsPage::save() {
52   if(_aliasesModel.configChanged())
53     _aliasesModel.commit();
54 }
55
56 void AliasesSettingsPage::enableDialog(bool enabled) {
57   ui.newAliasButton->setEnabled(enabled);
58   ui.deleteAliasButton->setEnabled(enabled);
59 }
60
61 void AliasesSettingsPage::deleteSelectedAlias() {
62   if(!ui.aliasesView->selectionModel()->hasSelection())
63     return;
64
65   _aliasesModel.removeAlias(ui.aliasesView->selectionModel()->selectedIndexes()[0].row());
66 }