VideoItem.h 1.75 KB
Newer Older
Gus Grubba's avatar
Gus Grubba committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief QGC Video Item
 *   @author Gus Grubba <mavlink@grubba.com>
 */

#ifndef VIDEO_ITEM_H
#define VIDEO_ITEM_H

#include <QtQuick/QQuickItem>
Gus Grubba's avatar
Gus Grubba committed
34
#include "VideoSurface.h"
Gus Grubba's avatar
Gus Grubba committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

class VideoItem : public QQuickItem
{
    Q_OBJECT
    Q_DISABLE_COPY(VideoItem)
    Q_PROPERTY(VideoSurface* surface READ surface WRITE setSurface)

public:
    explicit VideoItem(QQuickItem *parent = 0);
    virtual ~VideoItem();

    VideoSurface *surface() const;
    void setSurface(VideoSurface *surface);

protected:
50
#if defined(QGC_GST_STREAMING)
Gus Grubba's avatar
Gus Grubba committed
51 52
    /*! Reimplemented from QQuickItem. */
    virtual QSGNode* updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *updatePaintNodeData);
53
#endif
Gus Grubba's avatar
Gus Grubba committed
54 55

private:
56
#if defined(QGC_GST_STREAMING)
Gus Grubba's avatar
Gus Grubba committed
57 58
    struct Private;
    Private* const _data;
59
#endif
Gus Grubba's avatar
Gus Grubba committed
60 61 62
};

#endif // VIDEO_ITEM_H