1 Star 1 Fork 0

蚩尤/landlords

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
scorepanel.h 601 Bytes
一键复制 编辑 原始数据 按行查看 历史
蚩尤 提交于 2022-03-23 16:38 . Landlords - V2022.3.8
#ifndef SCOREPANEL_H
#define SCOREPANEL_H
#include <QLabel>
#include <QWidget>
namespace Ui {
class ScorePanel;
}
class ScorePanel : public QWidget
{
Q_OBJECT
public:
enum FontColor{Black, White, Red, Blue, Green};
explicit ScorePanel(QWidget *parent = nullptr);
~ScorePanel();
// 设置玩家的得分
void setScores(int left, int right, int user);
// 设置字体大小
void setMyFontSize(int point);
// 设置字体的颜色
void setMyFontColor(FontColor color);
private:
Ui::ScorePanel *ui;
QVector<QLabel*> m_list;
};
#endif // SCOREPANEL_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chiyou-debug/landlords.git
git@gitee.com:chiyou-debug/landlords.git
chiyou-debug
landlords
landlords
master

搜索帮助