-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfgamewidget.cpp
111 lines (84 loc) · 2.41 KB
/
fgamewidget.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include "fgamewidget.h"
#include "ui_fgamewidget.h"
#include <QGraphicsPixmapItem>
FGameWidget::FGameWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::FGameWidget)
{
ui->setupUi(this);
itemBanner = NULL;
sceneBanner = NULL;
itemCover = NULL;
sceneCover = NULL;
//ui->fgwDialog_launchButton->setVisible(false);
}
FGameWidget::~FGameWidget()
{
if(itemBanner)
delete itemBanner;
if(sceneBanner)
delete sceneBanner;
if(itemCover)
delete itemCover;
if(sceneCover)
delete sceneCover;
delete ui;
}
void FGameWidget::setGame(FGame *g) {
// QElapsedTimer timer;
// timer.start();
game = g;
ui->fgwDialog_GameTitle->setText(game->getName());
if(game->getArt(FArtBanner) != "") {
ui->viewOne->setVisible(false);
sceneBanner = new QGraphicsScene();
ui->graphicsView->setScene(sceneBanner);
QPixmap p(game->getArt(FArtBanner, true, 300, FWidth));
itemBanner = new QGraphicsPixmapItem(p);
sceneBanner->addItem(itemBanner);
} else {
ui->graphicsView->setVisible(false);
QPixmap p(game->getArt(FArtBox, true, 55, FHeight));
ui->gvCover->resize(p.width(), 60);
ui->gvCover->setMaximumWidth(p.width());
ui->gvCover->setMinimumWidth(p.width());
sceneCover = new QGraphicsScene();
ui->gvCover->setScene(sceneCover);
itemCover = new QGraphicsPixmapItem(p);
sceneCover->addItem(itemCover);
}
// qDebug() << timer.elapsed();
}
void FGameWidget::setFontSize(int size)
{
QFont font;
font.setPointSize(size);
ui->fgwDialog_GameTitle->setFont(font);
}
void FGameWidget::setActive(bool state)
{
updateProperty(ui->fgwDialog_Background, "gameSelected", state);
// ui->fgwDialog_launchButton->setVisible(state);
}
void FGameWidget::mousePressEvent(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton)
{
emit clicked(game, this);
} else if (event->button() == Qt::RightButton)
{
emit rightClicked(game, this);
}
}
void FGameWidget::mouseDoubleClickEvent(QMouseEvent *event)
{
emit doubleClicked(game, this);
}
void FGameWidget::updateProperty(QWidget *obj, const char *prop, const QVariant value) {
if(obj->property(prop) == value)
return;
obj->setProperty(prop, value);
obj->style()->unpolish(obj);
obj->style()->polish(obj);
obj->update();
}