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.
46 lines
1.1 KiB
46 lines
1.1 KiB
9 years ago
|
//------------------------------------------------------------------------------
|
||
|
//
|
||
|
// 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.cpp
|
||
|
@brief Implementation of methods ...
|
||
|
@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)
|
||
|
|
||
|
*/
|
||
|
|
||
|
#include "videowidget.h"
|
||
|
|
||
|
VideoWidget::VideoWidget(QWidget *parent) : QWidget(parent)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
VideoWidget::~VideoWidget()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void VideoWidget::resizeEvent(QResizeEvent *event)
|
||
|
{
|
||
|
emit resized();
|
||
|
|
||
|
QWidget::resizeEvent(event);
|
||
|
}
|
||
|
|