|
|
|
#ifndef SERVERMODEL_FONTMODEL_HPP
|
|
|
|
#define SERVERMODEL_FONTMODEL_HPP
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <vector>
|
|
|
|
#include <QString>
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
#include <components/openmw-mp/Master/MasterData.hpp>
|
|
|
|
|
|
|
|
struct ServerData : public QueryData
|
|
|
|
{
|
|
|
|
QString addr;
|
|
|
|
int ping;
|
|
|
|
enum IDS
|
|
|
|
{
|
|
|
|
ADDR,
|
|
|
|
HOSTNAME,
|
|
|
|
PLAYERS,
|
|
|
|
MAX_PLAYERS,
|
|
|
|
PASSW,
|
|
|
|
MODNAME,
|
|
|
|
PING,
|
|
|
|
VERSION,
|
|
|
|
LAST
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class ServerModel: public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
[Browser] Rework browser for improved stability & clarity
(cherry picked from commits 5c79e7106f840ef217b9bf45ec5d3bd925825863, 57353cdffff3580566415039544fae15052e8d73, 15723adb9a0383d8ebb8b7e26849b2de70b9952d, 01a5196a92f27f0c09bd053daf4d779d0c113974, ed75563a94174ca38cb67beba9c0e35a810dfbd2, 3839a2dcfd8fbbc7598771ee604f9ff9eb08e044, 1fd16ba69c4893cfe7379ea6bb0f65e5ac59cd4b, 66283943c593a406592daf0b90491d42a2e80050, ba8613a179936631d6c5fa7ae6dedb8a5f3eb684, 5b8f4f3e92d662f36580b94184057b648be9f01d, 35b771b19e00a813350553f686c0971334bbc3b5, 043eb224e29ca7b41a738eb598e16131ccfedd1a, 05fac2f67d5281d72b48bdba0db14e6bd7974765)
6 years ago
|
|
|
explicit ServerModel(QObject *parent = nullptr);
|
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const Q_DECL_FINAL;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_FINAL;
|
|
|
|
int columnCount(const QModelIndex &parent) const Q_DECL_FINAL;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) Q_DECL_FINAL;
|
|
|
|
|
|
|
|
bool insertRows(int row, int count, const QModelIndex &index = QModelIndex()) Q_DECL_FINAL;
|
|
|
|
bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) Q_DECL_FINAL;
|
|
|
|
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_FINAL;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const Q_DECL_FINAL;
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
//QHash<int, QByteArray> roles;
|
|
|
|
QVector<ServerData> myData;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //SERVERMODEL_FONTMODEL_HPP
|