Skip to content
VideoSettings.h 2.44 KiB
Newer Older
Don Gagne's avatar
Don Gagne committed
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#ifndef VideoSettings_H
#define VideoSettings_H

#include "SettingsGroup.h"

class VideoSettings : public SettingsGroup
{
    Q_OBJECT
Don Gagne's avatar
Don Gagne committed
public:
    VideoSettings(QObject* parent = NULL);

    Q_PROPERTY(Fact* videoSource        READ videoSource        CONSTANT)
    Q_PROPERTY(Fact* udpPort            READ udpPort            CONSTANT)
    Q_PROPERTY(Fact* tcpUrl             READ tcpUrl             CONSTANT)
    Q_PROPERTY(Fact* rtspUrl            READ rtspUrl            CONSTANT)
    Q_PROPERTY(Fact* aspectRatio        READ aspectRatio        CONSTANT)
    Q_PROPERTY(Fact* gridLines          READ gridLines          CONSTANT)
    Q_PROPERTY(Fact* showRecControl     READ showRecControl     CONSTANT)
    Q_PROPERTY(Fact* recordingFormat    READ recordingFormat    CONSTANT)
    Q_PROPERTY(Fact* maxVideoSize       READ maxVideoSize       CONSTANT)

    Fact* videoSource       (void);
    Fact* udpPort           (void);
    Fact* rtspUrl           (void);
    Fact* tcpUrl            (void);
    Fact* aspectRatio       (void);
    Fact* gridLines         (void);
    Fact* showRecControl    (void);
    Fact* recordingFormat   (void);
    Fact* maxVideoSize      (void);
Don Gagne's avatar
Don Gagne committed
    static const char* videoSettingsGroupName;
    static const char* videoSourceName;
    static const char* udpPortName;
    static const char* rtspUrlName;
    static const char* tcpUrlName;
    static const char* videoAspectRatioName;
Gus Grubba's avatar
Gus Grubba committed
    static const char* videoGridLinesName;
    static const char* showRecControlName;
    static const char* recordingFormatName;
    static const char* maxVideoSizeName;

    static const char* videoSourceNoVideo;
    static const char* videoDisabled;
    static const char* videoSourceUDP;
    static const char* videoSourceRTSP;
    static const char* videoSourceTCP;
Don Gagne's avatar
Don Gagne committed
private:
    SettingsFact* _videoSourceFact;
    SettingsFact* _udpPortFact;
    SettingsFact* _tcpUrlFact;
    SettingsFact* _rtspUrlFact;
    SettingsFact* _videoAspectRatioFact;
Gus Grubba's avatar
Gus Grubba committed
    SettingsFact* _gridLinesFact;
    SettingsFact* _showRecControlFact;
    SettingsFact* _recordingFormatFact;
    SettingsFact* _maxVideoSizeFact;