X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fignorelistmodel.h;h=fc33f317c3f1c61db1e55177bbeed8a2c08eb2e6;hp=4af351e7310a94cea73c0dfa00d21f4206f05f4e;hb=52209badc8e769e50aa3019b63689dda0e79e9d0;hpb=98144aaad0cd747f186edcd0e36a1d67326ac766 diff --git a/src/qtui/settingspages/ignorelistmodel.h b/src/qtui/settingspages/ignorelistmodel.h index 4af351e7..fc33f317 100644 --- a/src/qtui/settingspages/ignorelistmodel.h +++ b/src/qtui/settingspages/ignorelistmodel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 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 * @@ -31,29 +31,29 @@ class IgnoreListModel : public QAbstractItemModel Q_OBJECT public: - IgnoreListModel(QObject *parent = nullptr); + IgnoreListModel(QObject* parent = nullptr); - QVariant data(const QModelIndex &index, int role) const override; - bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override; + QVariant data(const QModelIndex& index, int role) const override; + bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override; - Qt::ItemFlags flags(const QModelIndex &index) const override; + Qt::ItemFlags flags(const QModelIndex& index) const override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; - QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override; + QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override; - inline QModelIndex parent(const QModelIndex &) const override { return {}; } + inline QModelIndex parent(const QModelIndex&) const override { return {}; } - inline int rowCount(const QModelIndex &parent = QModelIndex()) const override; - inline int columnCount(const QModelIndex &parent = QModelIndex()) const override; + 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 hasConfigChanged() const { return _configChanged; } inline bool isReady() const { return _modelReady; } - const IgnoreListManager::IgnoreListItem &ignoreListItemAt(int row) const; - void setIgnoreListItemAt(int row, const IgnoreListManager::IgnoreListItem &item); - bool newIgnoreRule(const IgnoreListManager::IgnoreListItem &item); - const QModelIndex indexOf(const QString &rule); + const IgnoreListManager::IgnoreListItem& ignoreListItemAt(int row) const; + void setIgnoreListItemAt(int row, const IgnoreListManager::IgnoreListItem& item); + bool newIgnoreRule(const IgnoreListManager::IgnoreListItem& item); + const QModelIndex indexOf(const QString& rule); public slots: void loadDefaults(); @@ -70,9 +70,9 @@ private: bool _configChanged{false}; bool _modelReady{false}; - const IgnoreListManager &ignoreListManager() const; - IgnoreListManager &ignoreListManager(); - IgnoreListManager &cloneIgnoreListManager(); + const IgnoreListManager& ignoreListManager() const; + IgnoreListManager& ignoreListManager(); + IgnoreListManager& cloneIgnoreListManager(); private slots: void clientConnected(); @@ -80,20 +80,17 @@ private slots: void initDone(); }; - // Inlines -int IgnoreListModel::rowCount(const QModelIndex &parent) const +int IgnoreListModel::rowCount(const QModelIndex& parent) const { Q_UNUSED(parent); return isReady() ? ignoreListManager().count() : 0; } - -int IgnoreListModel::columnCount(const QModelIndex &parent) const +int IgnoreListModel::columnCount(const QModelIndex& parent) const { Q_UNUSED(parent); return isReady() ? 3 : 0; } - -#endif //IGNORELISTMODEL_H +#endif // IGNORELISTMODEL_H