Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8468143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T15:51:01+00:00 2026-06-10T15:51:01+00:00

What makes this small browser app fail to return the window.returnValue given in the

  • 0

What makes this small browser app fail to return the window.returnValue given in the modal window? The Qt Browser demo does make it work, but I can’t figure why it does and this mini browser app doesn’t.

#include <QApplication>
#include <QWebView>
#include <QWebPage>
#include <QUrl>

class WebPage : public QWebPage
{
public:
    QWebPage *createWindow(QWebPage::WebWindowType type)
    {
        QWebView *wv = new QWebView;
        if (type == QWebPage::WebModalDialog)
            wv->setWindowModality(Qt::ApplicationModal);
        return wv->page();
    }
};

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QWebView view;

    QWebSettings::globalSettings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);

    view.setPage(new WebPage);
    view.load(QUrl("http://help.dottoro.com/external/examples/ljdlgxbu/showModalDialog_1.htm"));
    view.show();

    return a.exec();
}

showModalDialog() is synchronous and should return the value set as window.returnValue in the modal dialog created by the call. The small browser app opens the dialog window successfully, but the (modal)window.returnValue is not set as return value for showModalDialog().

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T15:51:02+00:00Added an answer on June 10, 2026 at 3:51 pm

    Seems like the windowCloseRequested() signal wasn’t handled correctly. This example will work perfectly:

    #include <QApplication>
    #include <QWebView>
    #include <QWebPage>
    #include <QUrl>
    
    class WebView : public QWebView
    {
        Q_OBJECT
    public:
        WebView(QWidget *parent = 0);
    };
    
    class WebPage : public QWebPage
    {
        Q_OBJECT
    public:
        WebPage(QObject *parent = 0) : QWebPage(parent) {
        }
    
        virtual QWebPage *createWindow(QWebPage::WebWindowType)
        {
            QWebView *view = new WebView();
    
            return view->page();
        }
    };
    
    WebView::WebView(QWidget *parent) : QWebView(parent) {
        setPage(new WebPage(this));
        connect(this->page(), SIGNAL(windowCloseRequested()), this, SLOT(deleteLater()));
    }
    
    int main(int argc, char *argv[])
    {
        QApplication a(argc, argv);
        WebView view;
    
        QWebSettings::globalSettings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
        view.load(QUrl("http://help.dottoro.com/external/examples/ljdlgxbu/showModalDialog_1.htm"));
        view.show();
    
        return a.exec();
    }
    
    #include "main.moc"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I’m trying to make a small change on a CSS for Spiceworks . This
Hope this makes sense... Is there a simple way to return a set of
Currently I have this small script that makes it possible to check if a
I'm building a small, local app for a lab I work in. Long story
I know the title makes this sound very easy, but I have a For
I just came a cross this nice code that makes this scatter matrix plot:
This makes no sense to me. I've been trying to research this, but I
I hope this makes sense, I am trying to store a SQL Server 2008
I tried using height: 100% but this makes the div only as high as
A little in disbelief Java makes it this easy on the client side. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.