c2b8b2ebc3c2295e9f6e7187840b82d2331a93e8
[quassel.git] / src / qtui / settingspages / aliasesmodel.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 #ifndef ALIASESMODEL_H
22 #define ALIASESMODEL_H
23
24 #include <QAbstractItemModel>
25 #include <QPointer>
26
27 #include "aliasmanager.h"
28
29 class AliasesModel : public QAbstractItemModel {
30   Q_OBJECT
31
32 public:
33   AliasesModel(QObject *parent = 0);
34
35   virtual QVariant data(const QModelIndex &index, int role) const;
36   virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
37
38   virtual Qt::ItemFlags flags(const QModelIndex &index) const;
39
40   QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
41
42   QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
43
44   inline QModelIndex parent(const QModelIndex &) const { return QModelIndex(); }
45
46   inline int rowCount(const QModelIndex &parent = QModelIndex()) const { Q_UNUSED(parent) return aliasManager().count(); }
47   inline int columnCount(const QModelIndex &parent = QModelIndex()) const { Q_UNUSED(parent) return 2; }
48
49   inline bool configChanged() const { return _configChanged; }
50
51 public slots:
52   void newAlias();
53   void loadDefaults();
54   void removeAlias(int index);
55   void revert();
56   void commit();
57
58 signals:
59   void configChanged(bool);
60   void modelReady(bool);
61   
62 private:
63   AliasManager _aliasManager;
64   AliasManager _clonedAliasManager;
65   bool _configChanged;
66
67   const AliasManager &aliasManager() const;
68   AliasManager &aliasManager();
69   AliasManager &cloneAliasManager();
70
71 private slots:
72   void clientConnected();
73   void clientDisconnected();
74   void initDone();
75 };
76
77 #endif //ALIASESMODEL_H