qskinny/examples/automotive/SoundControl.h
2018-08-03 08:15:28 +02:00

18 lines
379 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 );
QskAspect::Subcontrol effectiveSubcontrol(
QskAspect::Subcontrol subControl ) const override final;
};
#endif