37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#ifndef GAMESMODEL_H
|
|
#define GAMESMODEL_H
|
|
|
|
#include <QAbstractTableModel>
|
|
#include <QSortFilterProxyModel>
|
|
#include <QList>
|
|
|
|
class ServerInfo_Game;
|
|
|
|
class GamesModel : public QAbstractTableModel {
|
|
Q_OBJECT
|
|
public:
|
|
GamesModel(QObject *parent = 0) : QAbstractTableModel(parent) { }
|
|
~GamesModel();
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const { return parent.isValid() ? 0 : gameList.size(); }
|
|
int columnCount(const QModelIndex &/*parent*/ = QModelIndex()) const { return 5; }
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
|
|
ServerInfo_Game *getGame(int row);
|
|
void updateGameList(ServerInfo_Game *game);
|
|
private:
|
|
QList<ServerInfo_Game *> gameList;
|
|
};
|
|
|
|
class GamesProxyModel : public QSortFilterProxyModel {
|
|
Q_OBJECT
|
|
private:
|
|
bool fullGamesVisible;
|
|
public:
|
|
GamesProxyModel(QObject *parent = 0);
|
|
void setFullGamesVisible(bool _fullGamesVisible);
|
|
protected:
|
|
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
|
|
};
|
|
|
|
#endif
|