mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Removed UITools dependency
This commit is contained in:
parent
db76ce1a64
commit
9348b3841e
@ -17,7 +17,6 @@
|
|||||||
#include <QSpacerItem>
|
#include <QSpacerItem>
|
||||||
#include <QWebFrame>
|
#include <QWebFrame>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
#include <QtUiTools/QUiLoader>
|
|
||||||
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
//#include <QPrinter>
|
//#include <QPrinter>
|
||||||
@ -702,19 +701,12 @@ QObject *MyWebPage::createPlugin(const QString &classid, const QUrl &url, const
|
|||||||
{
|
{
|
||||||
Q_UNUSED(paramNames)
|
Q_UNUSED(paramNames)
|
||||||
Q_UNUSED(paramValues)
|
Q_UNUSED(paramValues)
|
||||||
// Create the widget using QUiLoader.
|
|
||||||
// This means that the widgets don't need to be registered
|
|
||||||
// with the meta object system.
|
|
||||||
// On the other hand, non-gui objects can't be created this
|
|
||||||
// way. When we'd like to create non-visual objects in
|
|
||||||
// Html to use them via JavaScript, we'd use a different
|
|
||||||
// mechanism than this.
|
|
||||||
if (classid=="SessionBar") {
|
if (classid=="SessionBar") {
|
||||||
return mainwin->getDaily()->sessionBar();
|
return mainwin->getDaily()->sessionBar();
|
||||||
}
|
}
|
||||||
QUiLoader loader;
|
qDebug() << "Request for unknown MyWebPage plugin";
|
||||||
// int i=5;
|
return new QWidget();
|
||||||
return loader.createWidget(classid, view());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
MyWebView::MyWebView(QWidget *parent):
|
MyWebView::MyWebView(QWidget *parent):
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------
|
#-------------------------------------------------
|
||||||
|
|
||||||
QT += core gui opengl network xml uitools
|
QT += core gui opengl network xml
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION,4) {
|
greaterThan(QT_MAJOR_VERSION,4) {
|
||||||
QT += widgets webkitwidgets
|
QT += widgets webkitwidgets
|
||||||
|
Loading…
Reference in New Issue
Block a user