• 大小: 5KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-10
  • 语言: 其他
  • 标签: Qt  摇杆  

资源简介

最近由于项目需要,在软件上画一个组合按钮实现摇杆的功能,以控制机器人移动的方向,详情见:https://blog.csdn.net/yu_20501253/article/details/90438680

资源截图

代码片段和文件信息

#include “CustomButton.h“
#include 
#include 
#include 
#include 
#include 
#include 

CustomButton::CustomButton(QWidget* parent)
    : QWidget(parent)
     m_pressIndex(0)
     m_enterIndex(0)
     m_isMouseEntered(false)
     m_isMousePressed(false)
     m_radius(80)
     m_arcLength(55)
     mCenterRound(QPoint(00))
{
    m_bTextModeEn = false;
    this->setMouseTracking(true);

    mSectorColor = QColor(383838);

    initButton();
    setWidgetstyle(“Dark“);
    setAxesVertical(false);
}

void CustomButton::setWidgetstyle(QString style)
{
    if(style == “Bright“){
        mSectorColor = QColor(238241240);
        colorSPL = QColor(63155178);
        colorBKG = QColor(193 199

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3145  2019-04-25 16:16  CustomButton.h

     文件      18200  2019-04-29 14:15  CustomButton.cpp

----------- ---------  ---------- -----  ----

                21345                    2


评论

共有 条评论