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

58 lines
1.3 KiB
C++
Raw Normal View History

2014-07-07 00:19:45 +08:00
/*
This file is part of qTox, a Qt-based graphical interface for Tox.
This program is libre 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.
This program 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 COPYING file for more details.
*/
#include "netcamview.h"
#include "src/core/core.h"
2014-10-15 23:08:31 +08:00
#include "src/widget/videosurface.h"
2014-09-11 21:44:34 +08:00
#include <QLabel>
#include <QHBoxLayout>
NetCamView::NetCamView(QWidget* parent)
2014-10-15 20:46:01 +08:00
: QWidget(parent)
2014-10-16 21:37:48 +08:00
, mainLayout(new QHBoxLayout())
{
setLayout(mainLayout);
2014-10-30 00:25:47 +08:00
setWindowTitle(tr("Tox video"));
setMinimumSize(320,240);
2014-10-15 20:46:01 +08:00
videoSurface = new VideoSurface(this);
2014-07-12 21:21:24 +08:00
2014-10-15 20:46:01 +08:00
mainLayout->addWidget(videoSurface);
}
2014-10-16 21:37:48 +08:00
void NetCamView::show(VideoSource *source, const QString &title)
{
setSource(source);
setTitle(title);
QWidget::show();
}
void NetCamView::hide()
{
setSource(nullptr);
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);
}