You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.4 KiB
62 lines
1.4 KiB
//------------------------------------------------------------------------------
|
|
//
|
|
// Project: Anonymizer
|
|
//
|
|
// Brno University of Technology
|
|
// Faculty of Information Technology
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
//
|
|
// This project was financially supported by project VG20102015006 funds
|
|
// provided by Ministry of the Interior of the Czech republic.
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
/*!
|
|
|
|
@file videowidget.h
|
|
@brief Header file
|
|
@details Details
|
|
@authors Martin Borek (mborekcz@gmail.com)
|
|
@authors Filip Orsag (orsag@fit.vutbr.cz)
|
|
@date 2014-2015
|
|
@note This project was supported by MV CR project VG20102015006.
|
|
@copyright BUT OPEN SOURCE LICENCE (see License.txt)
|
|
|
|
*/
|
|
|
|
#ifndef VIDEOWIDGET_H
|
|
#define VIDEOWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class VideoWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
/**
|
|
* Constructor
|
|
* @param parent Parent widget
|
|
*/
|
|
explicit VideoWidget(QWidget *parent = 0);
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
~VideoWidget();
|
|
|
|
/**
|
|
* When the widget is resized, the resized() signal is emitted.
|
|
* @param event
|
|
*/
|
|
void resizeEvent(QResizeEvent *event);
|
|
signals:
|
|
/**
|
|
* This signal is emitted when the widget is resized.
|
|
*/
|
|
void resized();
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // VIDEOWIDGET_H
|