我正在尝试使用QWebEngineView创建一个窗口,并在窗口关闭后删除QWebEngineView。但是,QWebEngineView似乎永远不会被删除,并且会继续运行我加载的任何QUrl(例如YouTube视频)。在我的程序中,我有一个带有行编辑和按钮的QMainWindow,它创建一个窗口,用于加载用户输入的URL。这是我的代码:
MainWindow.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "subwindow.h"
namespace Ui
{
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
void init();
~MainWindow();
private slots:
void on_pushButton_clicked();
private:
Ui::MainWindow *ui;
SubWindow *sub;
};
#endif // MAINWINDOW_H
SubWindow.h
#ifndef SUBWINDOW_H
#define SUBWINDOW_H
#include <QMainWindow>
#include <QtWebEngineWidgets/qwebengineview.h>
#include <QTimer>
namespace Ui
{
class SubWindow;
}
class SubWindow : public QMainWindow
{
Q_OBJECT
public:
explicit SubWindow(QWidget *parent = 0);
void doWeb(QString link);
~SubWindow();
private:
Ui::SubWindow *ui;
QWebEngineView *web;
private slots:
void on_pushButton_clicked();
};
#endif // SUBWINDOW_H
MainWindow.cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
void MainWindow::init()
{
this->showMaximized();
sub = new SubWindow(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
sub->doWeb(ui->lineEdit->text());
}
SubWindow.cpp
#include "subwindow.h"
#include "ui_subwindow.h"
SubWindow::SubWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::SubWindow)
{
ui->setupUi(this);
}
void SubWindow::doWeb(QString link)
{
this->show();
web = new QWebEngineView(this);
ui->verticalLayout->addWidget(web);
web->load(QUrl(link, QUrl::TolerantMode));
web->show();
}
SubWindow::~SubWindow()
{
delete web; //Doesn't seem to work, since memory is still allocated in task manager
delete ui;
}
void SubWindow::on_pushButton_clicked()
{
this->close(); //Artifact for testing purposes.
}
的main.cpp
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.init();
return a.exec();
}
我也尝试过使用&#34; web-&gt; close();&#34; (我把它放在我有测试工件的线上)和
&#34;&web的GT;的setAttribute(Qt的:: WA_DeleteOnClose);&#34; (我把它放在&#34; web = new QWebEngineView(this);&#34;),但这也没有解决我的问题。谁知道我做错了什么?
答案 0 :(得分:0)
好的,显然我需要调用“web-&gt; deleteLater();”在打电话之前 “这 - &GT;关闭();”。 “删除网络”;没有成功。不过,我想知道为什么删除在这种情况下不起作用......
答案 1 :(得分:0)
您正在使用父&#34创建QWebEngineView;此&#34; (所有者)所以你不必自己删除它,它将在父母将被自动删除。请参阅有关内存管理的Qt文档:
http://doc.qt.io/qt-5/objecttrees.html
这样做也很危险,因为如果你不使用doWeb(QString链接)创建QWebEngineView对象,你会尝试删除一些不存在的东西,因此它可能导致你未定义行为。
从析构函数中删除delete web
,看看是否一直有问题。
修改: 它没有被销毁的原因:你没有破坏SubWindow对象(QWebEngineView对象的所有者)。您可以通过在析构函数中打印一些内容来自行验证。 如果您正在销毁SubWindow对象,则第二次按下MainWindow中的按钮时,您的应用程序将崩溃。因为您不是在函数on_push_button中创建SubWindow对象,而是在MainWindow :: init中创建。您的SubWindow对象仅被隐藏而不会被销毁。只有在关闭MainWindow时才会销毁它。每次显示sub(SubWindow对象)时,您也都在创建QWebEngineview的实例,所以如果你显示sub 3次,你的Subwindow中将有3个QWebEngineView。
我会对代码做的更改:
<强>的main.cpp 强>
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
<强> mainWindow.h 强>
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "subwindow.h"
namespace Ui
{
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_pushButton_clicked();
private:
Ui::MainWindow *ui;
SubWindow* sub;
};
#endif
<强> mainWindow.cpp 强>
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow), sub(new SubWindow(this))
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_pushButton_clicked()
{
sub->show();
sub->doWeb(ui->lineEdit->text());
}
<强> subWindow.h 强>
#ifndef SUBWINDOW_H
#define SUBWINDOW_H
#include <QMainWindow>
#include <QtWebEngineWidgets/qwebengineview.h>
#include <QTimer>
namespace Ui
{
class SubWindow;
}
class SubWindow : public QMainWindow
{
Q_OBJECT
public:
explicit SubWindow(QWidget *parent = 0);
void doWeb(QString link);
~SubWindow();
private:
Ui::SubWindow *ui;
QWebEngineView *web;
private slots:
void on_pushButton_clicked();
};
#endif // SUBWINDOW_H
<强> subWindow.cpp 强>
#include "subwindow.h"
#include "ui_subwindow.h"
SubWindow::SubWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::SubWindow),
web(new QWebEngineView(this))
{
ui->setupUi(this);
ui->verticalLayout->addWidget(web);
}
void SubWindow::doWeb(QString link)
{
web->load(QUrl(link, QUrl::TolerantMode));
}
SubWindow::~SubWindow()
{
delete ui;
}
void SubWindow::on_pushButton_clicked()
{
this->close(); //Artifact for testing purposes.
}
请注意,我也没有销毁subWindow对象,但每次调用方法SubWindow :: doWeb(String)时我都不会创建QWebView。 如果由我决定我将使用不是MainWindow成员的Subclassed Dialog,那么该对象将在MainWindow :: on_pushButton_clicked()中创建并在我完成使用时被销毁。
答案 2 :(得分:0)