代码拉取完成,页面将自动刷新
同步操作将从 ibc-dabing/Landlords 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include "endingpanel.h"
#include <QPainter>
EndingPanel::EndingPanel(bool isLord, bool isWin, QWidget *parent) : QWidget(parent)
{
m_bk.load(":/images/gameover.png");
setFixedSize(m_bk.size());
m_title = new QLabel(this);
if(isLord && isWin)
{
m_title->setPixmap(QPixmap(":/images/lord_win.png"));
}
else if(isLord && !isWin)
{
m_title->setPixmap(QPixmap(":/images/lord_fail.png"));
}
else if(!isLord && isWin)
{
m_title->setPixmap(QPixmap(":/images/farmer_win.png"));
}
else if(!isLord && !isWin)
{
m_title->setPixmap(QPixmap(":/images/farmer_fail.png"));
}
m_title->move(125, 125);
m_score = new ScorePanel(this);
m_score->move(75, 230);
m_score->setFixedSize(260, 160);
m_score->setMyFontColor(ScorePanel::Red);
m_score->setMyFontSize(18);
m_continue = new QPushButton(this);
m_continue->move(84, 429);
QString style = R"(
QPushButton{border-image: url(:/images/button_normal.png)}
QPushButton:hover{border-image: url(:/images/button_hover.png)}
QPushButton:pressed{border-image: url(:/images/button_pressed.png)}
)";
m_continue->setStyleSheet(style);
m_continue->setFixedSize(231, 48);
connect(m_continue, &QPushButton::clicked, this, &EndingPanel::continueGame);
}
void EndingPanel::setPlayerScore(int left, int right, int me)
{
m_score->setScores(left, right, me);
}
void EndingPanel::paintEvent(QPaintEvent *ev)
{
Q_UNUSED(ev)
QPainter p(this);
p.drawPixmap(rect(), m_bk);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。