X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Faliasesmodel.h;h=30e75f1f14c9f865d556fdff62f94b557ca22262;hp=c6e829511ecddfaa27799355e5f98013fefe5838;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hpb=6d32c3e6a04a358789c469948d044715d6fb5aed diff --git a/src/qtui/settingspages/aliasesmodel.h b/src/qtui/settingspages/aliasesmodel.h index c6e82951..30e75f1f 100644 --- a/src/qtui/settingspages/aliasesmodel.h +++ b/src/qtui/settingspages/aliasesmodel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef ALIASESMODEL_H @@ -26,53 +26,67 @@ #include "clientaliasmanager.h" -class AliasesModel : public QAbstractItemModel { - Q_OBJECT +class AliasesModel : public QAbstractItemModel +{ + Q_OBJECT public: - AliasesModel(QObject *parent = 0); + AliasesModel(QObject* parent = nullptr); - virtual QVariant data(const QModelIndex &index, int role) const; - virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole); + QVariant data(const QModelIndex& index, int role) const override; + bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override; - virtual Qt::ItemFlags flags(const QModelIndex &index) const; + Qt::ItemFlags flags(const QModelIndex& index) const override; - QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; + QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; - QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; + QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override; - inline QModelIndex parent(const QModelIndex &) const { return QModelIndex(); } + inline QModelIndex parent(const QModelIndex&) const override { return {}; } - inline int rowCount(const QModelIndex &parent = QModelIndex()) const { Q_UNUSED(parent) return aliasManager().count(); } - inline int columnCount(const QModelIndex &parent = QModelIndex()) const { Q_UNUSED(parent) return 2; } + inline int rowCount(const QModelIndex& parent = QModelIndex()) const override; + inline int columnCount(const QModelIndex& parent = QModelIndex()) const override; - inline bool configChanged() const { return _configChanged; } - inline bool isReady() const { return _modelReady; } + inline bool hasConfigChanged() const { return _configChanged; } + inline bool isReady() const { return _modelReady; } public slots: - void newAlias(); - void loadDefaults(); - void removeAlias(int index); - void revert(); - void commit(); + void newAlias(); + void loadDefaults(); + void removeAlias(int index); + void revert() override; + void commit(); signals: - void configChanged(bool); - void modelReady(bool); + void configChanged(bool); + void modelReady(bool); private: - ClientAliasManager _clonedAliasManager; - bool _configChanged; - bool _modelReady; + ClientAliasManager _clonedAliasManager; + bool _configChanged{false}; + bool _modelReady{false}; - const AliasManager &aliasManager() const; - AliasManager &aliasManager(); - AliasManager &cloneAliasManager(); + const AliasManager& aliasManager() const; + AliasManager& aliasManager(); + AliasManager& cloneAliasManager(); private slots: - void clientConnected(); - void clientDisconnected(); - void initDone(); + void clientConnected(); + void clientDisconnected(); + void initDone(); }; -#endif //ALIASESMODEL_H +// Inlines +int AliasesModel::rowCount(const QModelIndex& parent) const +{ + Q_UNUSED(parent); + return isReady() ? aliasManager().count() : 0; +} + +int AliasesModel::columnCount(const QModelIndex& parent) const +{ + Q_UNUSED(parent); + return isReady() ? 2 : 0; +} + +#endif // ALIASESMODEL_H