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.
21 lines
656 B
C++
21 lines
656 B
C++
/*---------------------------------------------------------*\
|
|
| QTooltipedSlider.h |
|
|
| |
|
|
| Qt widget for OpenRGB tooltiped slider |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <QSlider>
|
|
|
|
class QTooltipedSlider : public QSlider
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QTooltipedSlider(QWidget *parent = nullptr);
|
|
};
|