ec5521ab3e
Better hints for the slider of the DefaultSkin - some animators and increased mouse press areas
18 lines
403 B
C++
18 lines
403 B
C++
#ifndef SOUNDCONTROL_H
|
|
#define SOUNDCONTROL_H
|
|
|
|
#include <QskBox.h>
|
|
|
|
class SoundControl : public QskBox
|
|
{
|
|
public:
|
|
QSK_SUBCONTROLS( Overlay, CrossHair, Marker, Vehicle, SliderControl, MarkerControl )
|
|
|
|
SoundControl( QQuickItem* parent = nullptr );
|
|
|
|
virtual QskAspect::Subcontrol effectiveSubcontrol(
|
|
QskAspect::Subcontrol subControl ) const override final;
|
|
};
|
|
|
|
#endif // SOUNDCONTROL_H
|