文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Qt如何编写自定义控件实现抽奖转盘

2023-07-02 09:35

关注

本文小编为大家详细介绍“Qt如何编写自定义控件实现抽奖转盘”,内容详细,步骤清晰,细节处理妥当,希望这篇“Qt如何编写自定义控件实现抽奖转盘”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

具体代码如下

#ifndef LOTTERYTURNTABLEWIDGET_H#define LOTTERYTURNTABLEWIDGET_H #include <QWidget> class LotteryTurntableWidget : public QWidget{    Q_OBJECT    Q_PROPERTY(int rotate READ getRotate WRITE setRotate MEMBER painterRotate)public:    LotteryTurntableWidget(QWidget *parent = nullptr);    ~LotteryTurntableWidget()override;    int getRotate();    void setRotate(int rotate); protected:    void paintEvent(QPaintEvent *event)override;    void mousePressEvent(QMouseEvent *event)override;    void mouseReleaseEvent(QMouseEvent *event)override; private:    QRect centerBtnRect;    bool isPressCenterBtn{false};    bool isRuning{false};    int painterRotate{0};    void onRotateFinished();    QList<Qt::GlobalColor> colorList;};#endif // LOTTERYTURNTABLEWIDGET_H
#include "lotteryturntablewidget.h"#include <QPainter>#include <QPaintEvent>#include <QPainterPath>#include <QTime>#include <QDebug>#include <QRandomGenerator>#include <QPropertyAnimation> LotteryTurntableWidget::LotteryTurntableWidget(QWidget *parent)    : QWidget(parent){    setPalette(Qt::white);    setMinimumSize(500,500);     colorList << Qt::red << Qt::yellow << Qt::green << Qt::cyan << Qt::blue << Qt::magenta << Qt::darkGreen << Qt::darkCyan;} LotteryTurntableWidget::~LotteryTurntableWidget(){} int LotteryTurntableWidget::getRotate(){    return painterRotate;} void LotteryTurntableWidget::setRotate(int rotate){    painterRotate = rotate;    update();} void LotteryTurntableWidget::paintEvent(QPaintEvent *event){    QPainter painter(this);    painter.setRenderHint(QPainter::Antialiasing,true);  //反走样开启    const auto rect = event->rect();    auto radius = std::min(rect.width(),rect.height()) / 2 - 25;     painter.save();    painter.translate(rect.center()); //将坐标系的原点设置为(r,r)     QPen pen;    pen.setColor(QColor("#F0630B"));    pen.setWidth(16);    painter.setPen(pen);    painter.drawEllipse(QPoint(0, 0), radius, radius);     pen.setColor(QColor("#FF4500"));    pen.setWidth(8);    painter.setPen(pen);    radius -= 8;    painter.drawEllipse(QPoint(0, 0), radius, radius);     pen.setColor(QColor("#B71606"));    pen.setWidth(40);    painter.setPen(pen);    radius -= 24;    painter.drawEllipse(QPoint(0, 0), radius, radius);     painter.save();    if(!isRuning)    {        painter.setPen(Qt::white);        painter.setBrush(Qt::white);    }    for (int i = 0; i < 20; ++i)    {        painter.rotate(18.0);        int smallEllipse;        if(i % 2 == 0)        {            if(isRuning)            {                if(painterRotate % 2 == 0)                {                    painter.setPen(Qt::red);                    painter.setBrush(Qt::red);                }                else                {                    painter.setPen(Qt::blue);                    painter.setBrush(Qt::blue);                }            }            smallEllipse = 15;        }        else        {            if(isRuning)            {                if(painterRotate % 2 == 0)                {                    painter.setPen(Qt::blue);                    painter.setBrush(Qt::blue);                }                else                {                    painter.setPen(Qt::red);                    painter.setBrush(Qt::red);                }            }            smallEllipse = 10;        }        painter.drawEllipse(QPoint(radius, 0), smallEllipse, smallEllipse);    }    painter.restore();     pen.setColor(QColor("#FFC228"));    pen.setWidth(20);    painter.setPen(pen);    radius -= 30;    painter.drawEllipse(QPoint(0, 0), radius, radius);     radius -= 10;    auto centerRect = QRect(-radius,-radius,radius * 2,radius * 2);     painter.setPen(Qt::transparent);    painter.save();    painter.rotate(18.0 * painterRotate);    for (int i = 0;i < 8;++i)    {        QPainterPath path;        path.moveTo(0,0);        path.arcTo(centerRect, 45 * i,45);        path.closeSubpath();        painter.fillPath(path,colorList[i]);    }        painter.restore();     QPainterPath trianglePath;//三角形    QPolygon polygon;    polygon.append(QPoint(0,-radius * 0.55));    polygon.append(QPoint(-radius * 0.25,0));    polygon.append(QPoint(radius * 0.25,0));    trianglePath.addPolygon(polygon);    painter.setBrush(QColor("#EEDAA2"));    painter.drawPath(trianglePath);     painter.setBrush(QColor("#FDFAEA"));    radius = static_cast<int>(radius * 0.3);    painter.drawEllipse(QPoint(0, 0), radius, radius);     painter.setBrush(isPressCenterBtn ? QColor("#B91A0D").lighter() : QColor("#B91A0D"));//中间的按钮    radius -= 2;    painter.drawEllipse(QPoint(0, 0), radius, radius);     centerBtnRect = QRect(rect.width() / 2 - radius,rect.height() / 2 - radius,radius * 2,radius * 2);    painter.restore();} void LotteryTurntableWidget::mousePressEvent(QMouseEvent *event){    if(isRuning)    {        QWidget::mousePressEvent(event);        return;    }    QRegion ellipseRegion(centerBtnRect, QRegion::Ellipse);    isPressCenterBtn = ellipseRegion.contains(event->pos());    if(isPressCenterBtn)    {        isRuning = true;         QPropertyAnimation *animation = new QPropertyAnimation(this, "rotate");        animation->setEasingCurve(QEasingCurve::InOutCubic);        animation->setDuration(3000);        animation->setStartValue(0);        animation->setEndValue(QRandomGenerator::global()->bounded(360) + 360 * 5);        connect(animation, &QAbstractAnimation::finished, this, &LotteryTurntableWidget::onRotateFinished);        animation->start(QAbstractAnimation::DeleteWhenStopped);        update();    }    QWidget::mousePressEvent(event);} void LotteryTurntableWidget::mouseReleaseEvent(QMouseEvent *event){    if(isPressCenterBtn)    {        isPressCenterBtn = false;        update();    }    QWidget::mouseReleaseEvent(event);} void LotteryTurntableWidget::onRotateFinished(){    isRuning = false;}

效果:

Qt如何编写自定义控件实现抽奖转盘

读到这里,这篇“Qt如何编写自定义控件实现抽奖转盘”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯