2014-07-07 00:19:45 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2014-06-30 10:39:43 +08:00
|
|
|
#include "netcamview.h"
|
2014-10-08 12:26:25 +08:00
|
|
|
#include "src/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>
|
2014-06-30 10:39:43 +08:00
|
|
|
|
|
|
|
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())
|
2014-06-30 10:39:43 +08:00
|
|
|
{
|
|
|
|
setLayout(mainLayout);
|
2014-10-30 00:25:47 +08:00
|
|
|
setWindowTitle(tr("Tox video"));
|
2014-06-30 10:39:43 +08:00
|
|
|
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-06-30 10:39:43 +08:00
|
|
|
}
|
2014-09-16 01:51:25 +08:00
|
|
|
|
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-09-16 01:51:25 +08:00
|
|
|
{
|
2014-10-15 20:46:01 +08:00
|
|
|
videoSurface->setSource(s);
|
2014-09-16 01:51:25 +08:00
|
|
|
}
|
2014-10-16 21:37:48 +08:00
|
|
|
|
|
|
|
void NetCamView::setTitle(const QString &title)
|
|
|
|
{
|
|
|
|
setWindowTitle(title);
|
|
|
|
}
|