-
Notifications
You must be signed in to change notification settings - Fork 0
/
videoreviewdialog.cpp
60 lines (50 loc) · 1.99 KB
/
videoreviewdialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* <one line to give the program's name and a brief idea of what it does.>
* Copyright (C) 2014 Jarno van der Kolk <[email protected]>
*
* This program is free 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <QDialogButtonBox>
#include <QVBoxLayout>
#include <QWebView>
#include <QImageReader>
#include "videoreviewdialog.h"
VideoReviewDialog::VideoReviewDialog(QWidget* parent, const QString& imgdir)
: QDialog(parent)
{
setWindowTitle("Video review for Hotbuild2");
QImageReader *reader = new QImageReader(imgdir + "img_start_bground_sample.jpg");
QImage bground = reader->read();
delete reader;
QPalette* palette = new QPalette();
palette->setBrush(QPalette::Background, *(new QBrush(bground)));
setPalette(*palette);
QVBoxLayout *layout = new QVBoxLayout(this);
QWebView *webview = new QWebView(this);
webview->setGeometry(0, 0, 640, 480);
webview->resize(640, 480);
QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
webview->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
webview->load(QUrl("http://www.youtube.com/embed/NNXV01cttMY?html5=1"));
webview->show();
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok, Qt::Horizontal, this);
// connect(buttonBox, SIGNAL(accepted()), SLOT(accept()));
layout->addWidget(webview);
layout->addWidget(buttonBox);
}
VideoReviewDialog::~VideoReviewDialog()
{
}
#include "videoreviewdialog.moc"