* 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
31 lines
517 B
C++
31 lines
517 B
C++
#ifndef CARDINFOPICTURE_H
|
|
#define CARDINFOPICTURE_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "carddatabase.h"
|
|
|
|
class AbstractCardItem;
|
|
|
|
class CardInfoPicture : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
CardInfoPtr info;
|
|
QPixmap resizedPixmap;
|
|
bool pixmapDirty;
|
|
|
|
public:
|
|
CardInfoPicture(QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *event);
|
|
void paintEvent(QPaintEvent *);
|
|
void loadPixmap();
|
|
public slots:
|
|
void setCard(CardInfoPtr card);
|
|
void updatePixmap();
|
|
};
|
|
|
|
#endif
|