2017-07-25 05:24:27 +00:00
|
|
|
#ifndef SOUNDCONTROL_H
|
|
|
|
#define SOUNDCONTROL_H
|
|
|
|
|
2017-07-26 15:54:25 +00:00
|
|
|
#include <QskBox.h>
|
2017-07-25 05:24:27 +00:00
|
|
|
|
2017-07-26 15:54:25 +00:00
|
|
|
class SoundControl : public QskBox
|
2017-07-25 05:24:27 +00:00
|
|
|
{
|
2018-08-03 06:15:28 +00:00
|
|
|
public:
|
2017-07-26 15:54:25 +00:00
|
|
|
QSK_SUBCONTROLS( Overlay, CrossHair, Marker, Vehicle, SliderControl, MarkerControl )
|
2017-07-25 19:34:27 +00:00
|
|
|
|
2017-07-25 08:47:40 +00:00
|
|
|
SoundControl( QQuickItem* parent = nullptr );
|
2017-07-26 15:54:25 +00:00
|
|
|
|
2018-07-31 15:32:25 +00:00
|
|
|
QskAspect::Subcontrol effectiveSubcontrol(
|
2017-07-26 15:54:25 +00:00
|
|
|
QskAspect::Subcontrol subControl ) const override final;
|
2017-07-25 05:24:27 +00:00
|
|
|
};
|
|
|
|
|
2018-07-31 15:32:25 +00:00
|
|
|
#endif
|