1 Star 0 Fork 0

陈天灿/musicPlayer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
controlButton.h 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈天灿 提交于 2023-12-24 11:03 . first common
#ifndef COTRONLBUTTON_H
#define COTRONLBUTTON_H
#include "sumHeader.h"
class ControlButton:public QWidget
{
Q_OBJECT
public:
ControlButton(QWidget *parent = nullptr);
~ControlButton();
void setFirstLoad(bool flag)
{
_firstLoad = flag;
}
public:
const static constexpr int ButtonWidth = 80;
const static constexpr int ButtonHeight = 80;
signals:
void sendChangeStatueToMusicPlayer(bool);
private slots:
void changeStatue();
void acceptResetBegin();
private:
void loadWidget();
private:
bool _startPlay = false, _firstLoad = false;//first_load意思是是否已经载入第一个音乐文件
QPushButton *_playButton;
};
#endif // COTRONLBUTTON_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/chen_tiancan/music-player.git
git@gitee.com:chen_tiancan/music-player.git
chen_tiancan
music-player
musicPlayer
master

搜索帮助