23 lines
654 B
C++
23 lines
654 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#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
|