2019-06-20 12:02:28 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2017-07-25 07:24:27 +02:00
|
|
|
#ifndef SOUNDCONTROL_H
|
|
|
|
#define SOUNDCONTROL_H
|
|
|
|
|
2017-07-26 17:54:25 +02:00
|
|
|
#include <QskBox.h>
|
2017-07-25 07:24:27 +02:00
|
|
|
|
2017-07-26 17:54:25 +02:00
|
|
|
class SoundControl : public QskBox
|
2017-07-25 07:24:27 +02:00
|
|
|
{
|
2018-08-03 08:15:28 +02:00
|
|
|
public:
|
2017-07-26 17:54:25 +02:00
|
|
|
QSK_SUBCONTROLS( Overlay, CrossHair, Marker, Vehicle, SliderControl, MarkerControl )
|
2017-07-25 21:34:27 +02:00
|
|
|
|
2017-07-25 10:47:40 +02:00
|
|
|
SoundControl( QQuickItem* parent = nullptr );
|
2017-07-26 17:54:25 +02:00
|
|
|
|
2018-07-31 17:32:25 +02:00
|
|
|
QskAspect::Subcontrol effectiveSubcontrol(
|
2017-07-26 17:54:25 +02:00
|
|
|
QskAspect::Subcontrol subControl ) const override final;
|
2017-07-25 07:24:27 +02:00
|
|
|
};
|
|
|
|
|
2018-07-31 17:32:25 +02:00
|
|
|
#endif
|