QWebInspector无法正常工作

3

我已经在我的QT项目中包含了QWebInspector,并试图在我的代码中使用它(不太确定如何使用,因为我还是很新手),但是我得到一个空白的Web检查器屏幕,所以我认为 page() 返回 null?我做错了什么或者这只适用于HTML5应用程序?

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QtGui>
#include <QSsl>
#include <QSslError>
#include <QNetworkReply>
#include <QtDebug>
#include <QWebInspector>
#include <QGraphicsWebView>
#include <QMessageBox>
#include "Windows.h"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    //this->setGeometry(50,50, 1280, 768);
    setWindowState(Qt::WindowMaximized);
    //MainWindow::showMaximized();
    this->centralWidget()->setLayout(new QGridLayout);
    m_pWebView = new QWebView(this);

    //Detect any SSL errors from the network reply
    connect(m_pWebView->page()->networkAccessManager(), SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError> & )),
                    this, SLOT(onSslErrors(QNetworkReply*, const QList<QSslError> & )));

    this->centralWidget()->layout()->addWidget(m_pWebView);
    //set position and size
    m_pWebView->load(QUrl("https://csm.nathan"));




    //m_pWebView->show();

    QMenu *trayIconMenu;
       minimizeAction = new QAction("Minimize", this);
       restoreAction = new QAction("Restore", this);
       quitAction = new QAction("Exit", this);

       connect (minimizeAction, SIGNAL(triggered()), this, SLOT(hide()));
       connect (restoreAction, SIGNAL(triggered()),this,SLOT(showMaximized()));
       connect (quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
       trayIconMenu = new QMenu(this);
       trayIconMenu->addAction (minimizeAction);
       trayIconMenu->addAction (restoreAction);
       trayIconMenu->addAction (quitAction);
       QSystemTrayIcon* systray = new QSystemTrayIcon(this);
       //connect(systray, SIGNAL(messageClicked()), this, SLOT(messageClicked()));
       QIcon icon("csm-logo.png");
       systray->setIcon(icon);
       systray->setContextMenu (trayIconMenu);
       systray->show();
       if(systray->isVisible()){
           systray->showMessage("CytoViewer v1.0", "The CytoViewer has been started!", QSystemTrayIcon::NoIcon, 10000);

           //QMessageBox msgBox;
           //msgBox.setWindowTitle("HELP");
           //msgBox.setInformativeText(m_pWebView->page());
           //msgBox.exec();

           //Enable developer extras in the webviewer settings
           m_pWebView->page()->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
           //Instantiate QWebInspector
           QWebInspector inspector;

           inspector.setPage(m_pWebView->page());

           inspector.setVisible(false);
       }

}

void MainWindow::onSslErrors(QNetworkReply* reply, const QList<QSslError> &errors)
{
    qDebug() << "handleSslErrors: ";
    foreach (QSslError e, errors)
    {
        qDebug() << "ssl error: " << e;
    }
    //Suppress any SSL errors
    reply->ignoreSslErrors();
}

MainWindow::~MainWindow()
{
    delete ui;
}


void MainWindow::closeEvent(QCloseEvent *event)
{
        QMessageBox::information(this, tr("Systray"),
                                 tr("The program will keep running in the "
                                    "system tray. To terminate the program, "
                                    "choose <b>Exit</b> in the context menu "
                                    "of the system tray entry."));
        hide();
        event->ignore();
}

void MainWindow::messageClicked()
 {
    QMessageBox::information(0, "CytoViewer Message", "You're application is up and running!");
 }

Web Inspector shows blank screen

1个回答

3

更改为

QWebInspector *inspector = new QWebInspector();
inspector->show();

不要忘记调用delete。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接