You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef QTPSLIDER_H
|
|
#define QTPSLIDER_H
|
|
|
|
#include <QtWidgets\qslider.h>
|
|
|
|
class QTpSlider : public QSlider
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpSlider(QWidget *parent);
|
|
~QTpSlider();
|
|
|
|
private Q_SLOTS :
|
|
void OnValueChanged(int value);
|
|
void OnSliderMoved(int value);
|
|
};
|
|
|
|
#endif // QTPSLIDER_H
|