当前位置:   article > 正文

QT : 自定义滚动条 简约清新_qt 自定义滑动条

qt 自定义滑动条

Let’s check the result first
在这里插入图片描述
/***************** head file *****************/

#ifndef SLIDER_H
#define SLIDER_H

#include <QWidget>
#include <QDebug>
#include <QPainter>
class Slider : public QWidget
{
   
    Q_OBJECT
public:
    Slider(QWidget* parent = nullptr);
    void setValue(int value);
    void setMax(int max);
    void paintEvent(QPaintEvent *ev) ;
    void setButtonWidth(int w);
    void setRightGap(int gap);
protected:
    void mousePressEvent(QMouseEvent *event) ;
    void mouseMoveEvent(QMouseEvent *event) ;
    void mouseReleaseEvent(QMouseEvent *event);
private:

    double knobPos;
    int maximum;
    int
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/187385
推荐阅读
相关标签
  

闽ICP备14008679号