Bring copyright headers into 2016
[quassel.git] / src / qtui / settingspages / aliasessettingspage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "aliasessettingspage.h"
22
23 #include <QHeaderView>
24 #include <QIcon>
25 #include <QItemSelectionModel>
26
27 AliasesSettingsPage::AliasesSettingsPage(QWidget *parent)
28     : SettingsPage(tr("IRC"), tr("Aliases"), parent)
29 {
30     ui.setupUi(this);
31     ui.newAliasButton->setIcon(QIcon::fromTheme("list-add"));
32     ui.deleteAliasButton->setIcon(QIcon::fromTheme("edit-delete"));
33
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);
42
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)));
47
48     enableDialog(_aliasesModel.isReady());
49 }
50
51
52 void AliasesSettingsPage::load()
53 {
54     if (_aliasesModel.configChanged())
55         _aliasesModel.revert();
56 }
57
58
59 void AliasesSettingsPage::defaults()
60 {
61     _aliasesModel.loadDefaults();
62 }
63
64
65 void AliasesSettingsPage::save()
66 {
67     if (_aliasesModel.configChanged())
68         _aliasesModel.commit();
69 }
70
71
72 void AliasesSettingsPage::enableDialog(bool enabled)
73 {
74     ui.newAliasButton->setEnabled(enabled);
75     ui.deleteAliasButton->setEnabled(enabled);
76     setEnabled(enabled);
77 }
78
79
80 void AliasesSettingsPage::deleteSelectedAlias()
81 {
82     if (!ui.aliasesView->selectionModel()->hasSelection())
83         return;
84
85     _aliasesModel.removeAlias(ui.aliasesView->selectionModel()->selectedIndexes()[0].row());
86 }