f53df7da64
Code submissions have continually suffered from formatting inconsistencies that constantly have to be addressed. Using clang-format simplifies this by making code formatting more consistent, and allows automation of the code formatting so that maintainers can focus more on the code itself instead of code formatting.
13 lines
351 B
C++
13 lines
351 B
C++
#pragma once
|
|
|
|
#include <QProxyStyle>
|
|
|
|
class SliderAbsoluteSetStyle : public QProxyStyle {
|
|
public:
|
|
SliderAbsoluteSetStyle(const QString &baseStyle);
|
|
SliderAbsoluteSetStyle(QStyle *baseStyle = Q_NULLPTR);
|
|
int styleHint(QStyle::StyleHint hint, const QStyleOption *option,
|
|
const QWidget *widget,
|
|
QStyleHintReturn *returnData) const;
|
|
};
|