2014-01-25 03:38:38 +08:00
|
|
|
/**
|
2014-03-29 18:49:22 -05:00
|
|
|
* @file
|
|
|
|
|
* @brief Source file for Video RendererWidget class
|
|
|
|
|
* @author Jonathan Thomas <jonathan@openshot.org>
|
|
|
|
|
*
|
|
|
|
|
* @section LICENSE
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2008-2014 OpenShot Studios, LLC
|
|
|
|
|
* <http://www.openshotstudios.com/>. This file is part of
|
|
|
|
|
* OpenShot Library (libopenshot), an open-source project dedicated to
|
|
|
|
|
* delivering high quality video editing and animation solutions to the
|
|
|
|
|
* world. For more information visit <http://www.openshot.org/>.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) is free software: you can redistribute it
|
2014-07-11 16:52:14 -05:00
|
|
|
* and/or modify it under the terms of the GNU Lesser General Public License
|
2014-03-29 18:49:22 -05:00
|
|
|
* as published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* OpenShot Library (libopenshot) 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
|
2014-07-11 16:52:14 -05:00
|
|
|
* GNU Lesser General Public License for more details.
|
2014-03-29 18:49:22 -05:00
|
|
|
*
|
2014-07-11 16:52:14 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2014-03-29 18:49:22 -05:00
|
|
|
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
2014-01-25 03:38:38 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "../../include/Qt/VideoRenderWidget.h"
|
|
|
|
|
#include <QtGui/QPaintEvent>
|
|
|
|
|
|
|
|
|
|
VideoRenderWidget::VideoRenderWidget(QWidget *parent)
|
2015-03-16 13:59:11 -05:00
|
|
|
: QWidget(parent), renderer(new VideoRenderer(this))
|
2014-01-25 03:38:38 +08:00
|
|
|
{
|
|
|
|
|
QPalette p = palette();
|
|
|
|
|
p.setColor(QPalette::Window, Qt::black);
|
|
|
|
|
setPalette(p);
|
|
|
|
|
setAttribute(Qt::WA_OpaquePaintEvent);
|
2015-02-04 23:56:43 -06:00
|
|
|
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
|
|
|
|
|
|
|
|
|
|
// init aspect ratio settings (default values)
|
|
|
|
|
aspect_ratio.num = 16;
|
|
|
|
|
aspect_ratio.den = 9;
|
|
|
|
|
pixel_ratio.num = 1;
|
|
|
|
|
pixel_ratio.den = 1;
|
2014-01-26 03:35:38 +08:00
|
|
|
|
|
|
|
|
connect(renderer, SIGNAL(present(const QImage &)), this, SLOT(present(const QImage &)));
|
2014-01-25 03:38:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VideoRenderWidget::~VideoRenderWidget()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VideoRenderer *VideoRenderWidget::GetRenderer() const
|
|
|
|
|
{
|
|
|
|
|
return renderer;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-04 23:56:43 -06:00
|
|
|
void VideoRenderWidget::SetAspectRatio(openshot::Fraction new_aspect_ratio, openshot::Fraction new_pixel_ratio)
|
|
|
|
|
{
|
|
|
|
|
aspect_ratio = new_aspect_ratio;
|
|
|
|
|
pixel_ratio = new_pixel_ratio;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QRect VideoRenderWidget::centeredViewport(int width, int height)
|
|
|
|
|
{
|
|
|
|
|
// calculate aspect ratio
|
|
|
|
|
float aspectRatio = aspect_ratio.ToFloat() * pixel_ratio.ToFloat();
|
|
|
|
|
int heightFromWidth = (int) (width / aspectRatio);
|
|
|
|
|
int widthFromHeight = (int) (height * aspectRatio);
|
|
|
|
|
|
|
|
|
|
if (heightFromWidth <= height) {
|
|
|
|
|
return QRect(0,(height - heightFromWidth) / 2, width, heightFromWidth);
|
|
|
|
|
} else {
|
|
|
|
|
return QRect((width - widthFromHeight) / 2.0, 0, widthFromHeight, height);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-25 03:38:38 +08:00
|
|
|
void VideoRenderWidget::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
|
|
|
|
QPainter painter(this);
|
|
|
|
|
|
2015-02-04 23:56:43 -06:00
|
|
|
// maintain aspect ratio
|
2015-02-08 22:55:10 -06:00
|
|
|
painter.fillRect(event->rect(), palette().window());
|
2015-02-04 23:56:43 -06:00
|
|
|
painter.setViewport(centeredViewport(width(), height()));
|
2014-01-26 03:35:38 +08:00
|
|
|
painter.drawImage(QRect(0, 0, width(), height()), image);
|
2015-03-16 13:59:11 -05:00
|
|
|
|
2014-01-26 03:35:38 +08:00
|
|
|
}
|
|
|
|
|
|
2015-03-16 13:59:11 -05:00
|
|
|
void VideoRenderWidget::present(const QImage &m)
|
2014-01-26 03:35:38 +08:00
|
|
|
{
|
|
|
|
|
image = m;
|
|
|
|
|
repaint();
|
2014-01-25 03:38:38 +08:00
|
|
|
}
|