1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/video/netcamview.cpp

150 lines
4.5 KiB
C++
Raw Normal View History

2014-07-07 00:19:45 +08:00
/*
2015-08-19 01:40:11 +08:00
Copyright © 2014-2015 by The qTox Project
2014-07-07 00:19:45 +08:00
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre software: you can redistribute it and/or modify
2014-07-07 00:19:45 +08:00
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.
qTox is distributed in the hope that it will be useful,
2014-07-07 00:19:45 +08:00
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.
2014-07-07 00:19:45 +08:00
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
2014-07-07 00:19:45 +08:00
*/
#include "netcamview.h"
#include "camerasource.h"
2015-08-19 05:44:34 +08:00
#include "src/friend.h"
#include "src/friendlist.h"
#include "src/core/core.h"
2015-06-06 07:44:47 +08:00
#include "src/video/videosurface.h"
2015-07-21 05:57:46 +08:00
#include "src/widget/tool/movablewidget.h"
2015-08-19 05:44:34 +08:00
#include "src/persistence/settings.h"
#include "src/persistence/profile.h"
#include "src/nexus.h"
#include <QLabel>
#include <QBoxLayout>
2015-08-13 21:31:15 +08:00
#include <QFrame>
2015-08-13 21:31:15 +08:00
NetCamView::NetCamView(int friendId, QWidget* parent)
2015-08-19 01:40:11 +08:00
: GenericNetCamView(parent)
, selfFrame{nullptr}
, friendId{friendId}
{
2015-08-19 05:44:34 +08:00
QString id = FriendList::findFriend(friendId)->getToxId().toString();
videoSurface = new VideoSurface(Nexus::getProfile()->loadAvatar(id), this);
2015-08-13 21:31:15 +08:00
videoSurface->setMinimumHeight(256);
videoSurface->setContentsMargins(6, 6, 6, 6);
2015-08-12 02:01:49 +08:00
2015-08-19 01:40:11 +08:00
verLayout->insertWidget(0, videoSurface, 1);
2015-08-12 02:01:49 +08:00
selfVideoSurface = new VideoSurface(Nexus::getProfile()->loadAvatar(), this, true);
2015-08-12 02:01:49 +08:00
selfVideoSurface->setObjectName(QStringLiteral("CamVideoSurface"));
selfVideoSurface->setMouseTracking(true);
2015-08-13 21:31:15 +08:00
selfVideoSurface->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
2014-07-12 21:21:24 +08:00
2015-08-19 01:40:11 +08:00
selfFrame = new MovableWidget(videoSurface);
selfFrame->show();
2015-08-12 02:01:49 +08:00
QHBoxLayout* frameLayout = new QHBoxLayout(selfFrame);
frameLayout->addWidget(selfVideoSurface);
frameLayout->setMargin(0);
2015-07-21 05:57:46 +08:00
2015-08-19 01:40:11 +08:00
updateRatio();
connections += connect(selfVideoSurface, &VideoSurface::ratioChanged, this, &NetCamView::updateRatio);
2015-08-13 21:31:15 +08:00
connections += connect(videoSurface, &VideoSurface::boundaryChanged, [this]()
2015-08-13 21:31:15 +08:00
{
2015-08-19 01:40:11 +08:00
QRect boundingRect = videoSurface->getBoundingRect();
updateFrameSize(boundingRect.size());
selfFrame->setBoundary(boundingRect);
2015-08-13 21:31:15 +08:00
});
connections += connect(videoSurface, &VideoSurface::ratioChanged, [this]()
{
2015-08-19 01:40:11 +08:00
selfFrame->setMinimumWidth(selfFrame->minimumHeight() * selfVideoSurface->getRatio());
QRect boundingRect = videoSurface->getBoundingRect();
updateFrameSize(boundingRect.size());
selfFrame->resetBoundary(boundingRect);
2015-08-13 21:31:15 +08:00
});
2015-08-19 05:44:34 +08:00
connections += connect(Core::getInstance(), &Core::selfAvatarChanged, [this](const QPixmap& pixmap)
{
selfVideoSurface->setAvatar(pixmap);
});
connections += connect(Core::getInstance(), &Core::friendAvatarChanged, [this](int FriendId, const QPixmap& pixmap)
{
if (this->friendId == FriendId)
videoSurface->setAvatar(pixmap);
});
QRect videoSize = Settings::getInstance().getCamVideoRes();
qDebug() << "SIZER" << videoSize;
}
NetCamView::~NetCamView()
{
for (QMetaObject::Connection conn : connections)
disconnect(conn);
}
2014-10-16 21:37:48 +08:00
void NetCamView::show(VideoSource *source, const QString &title)
{
setSource(source);
2015-08-13 21:31:15 +08:00
selfVideoSurface->setSource(&CameraSource::getInstance());
2014-10-16 21:37:48 +08:00
2015-08-19 01:40:11 +08:00
setTitle(title);
2014-10-16 21:37:48 +08:00
QWidget::show();
}
void NetCamView::hide()
{
setSource(nullptr);
2015-08-12 02:01:49 +08:00
selfVideoSurface->setSource(nullptr);
2014-10-16 21:37:48 +08:00
if (selfFrame)
selfFrame->deleteLater();
selfFrame = nullptr;
2014-10-16 21:37:48 +08:00
QWidget::hide();
}
2014-10-15 20:46:01 +08:00
void NetCamView::setSource(VideoSource *s)
{
2014-10-15 20:46:01 +08:00
videoSurface->setSource(s);
}
2014-10-16 21:37:48 +08:00
void NetCamView::setTitle(const QString &title)
{
setWindowTitle(title);
}
2015-07-21 05:57:46 +08:00
2015-08-13 21:31:15 +08:00
void NetCamView::showEvent(QShowEvent *event)
{
2015-10-18 16:46:57 +08:00
Q_UNUSED(event);
2015-08-13 21:31:15 +08:00
selfFrame->resetBoundary(videoSurface->getBoundingRect());
}
2015-07-21 05:57:46 +08:00
2015-08-19 01:40:11 +08:00
void NetCamView::updateRatio()
{
2015-08-19 01:40:11 +08:00
selfFrame->setMinimumWidth(selfFrame->minimumHeight() * selfVideoSurface->getRatio());
selfFrame->setRatio(selfVideoSurface->getRatio());
}
2015-08-19 01:40:11 +08:00
void NetCamView::updateFrameSize(QSize size)
{
selfFrame->setMaximumSize(size.height() / 3, size.width() / 3);
2015-08-13 21:31:15 +08:00
2015-08-19 01:40:11 +08:00
if (selfFrame->maximumWidth() > selfFrame->maximumHeight())
selfFrame->setMaximumWidth(selfFrame->maximumHeight() * selfVideoSurface->getRatio());
else
selfFrame->setMaximumHeight(selfFrame->maximumWidth() / selfVideoSurface->getRatio());
2015-07-21 05:57:46 +08:00
}