* add a bunch of parents to dialogs works on #3651 * use game as parent instead * add more parents * fix create token dialog modality * add parent to game information window * replace a bunch of nullptrs with the magic of sed * add parent to tip of the day and counters * reorder game ptr * set parent for life counter * clangify
37 lines
883 B
C++
37 lines
883 B
C++
#ifndef DECKSTATS_INTERFACE_H
|
|
#define DECKSTATS_INTERFACE_H
|
|
|
|
#include "carddatabase.h"
|
|
#include "decklist.h"
|
|
#include <QObject>
|
|
|
|
class QByteArray;
|
|
class QNetworkAccessManager;
|
|
class QNetworkReply;
|
|
class DeckList;
|
|
|
|
class DeckStatsInterface : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
QNetworkAccessManager *manager;
|
|
|
|
CardDatabase &cardDatabase;
|
|
|
|
/**
|
|
* Deckstats doesn't recognize token cards, and instead tries to find the
|
|
* closest non-token card instead. So we construct a new deck which has no
|
|
* tokens.
|
|
*/
|
|
void copyDeckWithoutTokens(const DeckList &source, DeckList &destination);
|
|
|
|
private slots:
|
|
void queryFinished(QNetworkReply *reply);
|
|
void getAnalyzeRequestData(DeckList *deck, QByteArray *data);
|
|
|
|
public:
|
|
DeckStatsInterface(CardDatabase &_cardDatabase, QObject *parent = nullptr);
|
|
void analyzeDeck(DeckList *deck);
|
|
};
|
|
|
|
#endif
|