X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Firclistmodel.h;h=93bf3f818a7e3b383935ee5b9cdf9fc653308bce;hp=791b505fffb98f5a0cec8cbd8974929de495ff5b;hb=52209badc8e769e50aa3019b63689dda0e79e9d0;hpb=695758015a80eb8c158a9ac4c0f1c0b547e70df3 diff --git a/src/client/irclistmodel.h b/src/client/irclistmodel.h index 791b505f..93bf3f81 100644 --- a/src/client/irclistmodel.h +++ b/src/client/irclistmodel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -18,38 +18,36 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef IRCLISTMODEL_H -#define IRCLISTMODEL_H +#pragma once -#include "irclisthelper.h" +#include "client-export.h" #include -class IrcListModel : public QAbstractItemModel +#include "irclisthelper.h" + +class CLIENT_EXPORT IrcListModel : public QAbstractItemModel { Q_OBJECT public: - IrcListModel(QObject *parent = 0); + IrcListModel(QObject* parent = nullptr); - virtual QVariant data(const QModelIndex &index, int role) const; - virtual Qt::ItemFlags flags(const QModelIndex &index) const; + QVariant data(const QModelIndex& index, int role) const override; + 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 _channelList.count(); } - inline int columnCount(const QModelIndex &parent = QModelIndex()) const { Q_UNUSED(parent) return 3; } + inline int rowCount(const QModelIndex& parent = QModelIndex()) const override { Q_UNUSED(parent) return _channelList.count(); } + inline int columnCount(const QModelIndex& parent = QModelIndex()) const override { Q_UNUSED(parent) return 3; } public slots: - void setChannelList(const QList &channelList = QList()); + void setChannelList(const QList& channelList = QList()); private: QList _channelList; }; - - -#endif //IRCLISTMODEL_H