视频播放器换肤功能实现(1)背景属性添加
作者:虚坏叔叔
博客:https://xuhss.com
早餐店不会开到晚上,想吃的人早就来了!
回到我们的编辑器源码中,
运行程序,点击衣服
按钮,就可以进行皮肤的切换:
当下一次在运行程序的时候,软件会自动记忆上一次设置好的皮肤。
如何实现这个功能呢、
Qml
文件添加背景图片,这里的source
用到了myplay
,所以需要添加MyPlay
插件:
//背景图片
Image {
id: backGround
width: parent.width
height: parent.height
source: myplay.backGround ? "file:///" + myplay.backGround : ""
//fillMode: Image.TileHorizontally
smooth: true
}
MYPlay.h
和MyPlay.cpp
:QT
中创建C++
的类你可以在QT
中 ,右键
项目名称,点击Add New
,然后选择C++ Class,最后创建MYPlay
,继承于QObject
类
MYPlay.h
添加backGround
属性最后,你可以看到成品播放器源码中,定义了backGround
属性
Q_PROPERTY(QString backGround READ backGround WRITE setBackGround NOTIFY backGroundChanged)
//背景图片路径
QString backGround() const;
void setBackGround(QString url);
signals:
void backGroundChanged(QString url);
private:
QString m_strBackgroundPath{""};
QString m_strBackGroundChoosePath{""};
MYPlay.cpp
中添加属性函数的实现//背景图片路径
QString MYPlay::backGround() const
{
return m_strBackgroundPath;
}
void MYPlay::setBackGround(QString url)
{
QSettings *settingIni = new QSettings("setting.ini",QSettings::IniFormat);
QString backGroundpath = settingIni->value("Path/Background").toString();
if(url == NULL)
{
if(backGroundpath == NULL)
{
delete settingIni;
return;
}
else
{
m_strBackgroundPath = backGroundpath;
QFileInfo fileInfo(backGroundpath);
m_strBackGroundChoosePath = fileInfo.path();
qDebug()<setValue("Path/Background",url);
m_strBackgroundPath = url;
QFileInfo fileInfo(url);
//qDebug()<
MYPlay
注册为Qml
类:#include "MYPlay.h"
qmlRegisterType("com.imooc.myplayer", 1, 0, "MYPlay");
点赞
收藏
转发
一波哦~学习路线指引(点击解锁) | 知识定位 | 人群定位 |
---|---|---|
Python实战微信订餐小程序 | 进阶级 | 本课程是python flask+微信小程序的完美结合,从项目搭建到腾讯云部署上线,打造一个全栈订餐系统。 |
Python量化交易实战 | 入门级 | 手把手带你打造一个易扩展、更安全、效率更高的量化交易系统 |
❤️ C++ QT结合FFmpeg实战开发视频播放器❤️ | 难度偏高 | 分享学习QT成品的视频播放器源码,需要有扎实的C++知识! |
游戏爱好者九万人社区 | 互助/吹水 | 九万人游戏爱好者社区,聊天互助,白嫖奖品 |
Python零基础到入门 | Python初学者 | 针对没有经过系统学习的小伙伴,核心目的就是让我们能够快速学习Python的知识以达到入门 |
关注下面卡片即刻获取更多编程知识,包括各种语言学习资料,上千套PPT模板和各种小程序、Web、客户端项目源码等等资料。更多内容可自行查看哦!