VideoSettings.h 2.44 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/****************************************************************************
 *
 *   (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
18

19 20 21
public:
    VideoSettings(QObject* parent = NULL);

22 23
    Q_PROPERTY(Fact* videoSource        READ videoSource        CONSTANT)
    Q_PROPERTY(Fact* udpPort            READ udpPort            CONSTANT)
24
    Q_PROPERTY(Fact* tcpUrl             READ tcpUrl             CONSTANT)
25 26 27 28 29 30 31 32 33 34
    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);
35
    Fact* tcpUrl            (void);
36 37 38 39 40
    Fact* aspectRatio       (void);
    Fact* gridLines         (void);
    Fact* showRecControl    (void);
    Fact* recordingFormat   (void);
    Fact* maxVideoSize      (void);
41

Don Gagne's avatar
Don Gagne committed
42
    static const char* videoSettingsGroupName;
43

44 45 46
    static const char* videoSourceName;
    static const char* udpPortName;
    static const char* rtspUrlName;
47
    static const char* tcpUrlName;
48
    static const char* videoAspectRatioName;
49
    static const char* videoGridLinesName;
50 51 52
    static const char* showRecControlName;
    static const char* recordingFormatName;
    static const char* maxVideoSizeName;
53 54

    static const char* videoSourceNoVideo;
55
    static const char* videoDisabled;
56 57
    static const char* videoSourceUDP;
    static const char* videoSourceRTSP;
58
    static const char* videoSourceTCP;
59

60
private:
61
    SettingsFact* _videoSourceFact;
62
    SettingsFact* _tcpUrlFact;
63 64
    SettingsFact* _udpPortFact;
    SettingsFact* _rtspUrlFact;
65
    SettingsFact* _videoAspectRatioFact;
66
    SettingsFact* _gridLinesFact;
67 68 69
    SettingsFact* _showRecControlFact;
    SettingsFact* _recordingFormatFact;
    SettingsFact* _maxVideoSizeFact;
70 71 72
};

#endif