Removed UITools dependency

This commit is contained in:
Mark Watkins 2013-10-13 16:27:55 +10:00
parent db76ce1a64
commit 9348b3841e
2 changed files with 4 additions and 12 deletions

View File

@ -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):

View File

@ -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