Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    QWebEngineView inside of QWidget

    QtWebEngine
    qtwidgets qtwebengine
    1
    2
    2560
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D
      Delta last edited by

      Hey Qt Community,

      I was trying to create a QWebEngineView inside of an custom QWidget,
      and simply add it to it's layout.

      But for some reason, it won't update properly.

      If I add the QWebEngineView directly into a QMainWindow, everything wors fine.

      Am I missing something in custom QWidgets class?

      Example code:

      class WWebBrowser : public QWidget
      {
      	 Q_OBJECT
      public:
      	WWebBrowser(QWidget *parent = (QWidget *)NULL);
      	virtual ~WWebBrowser();
      };
      
      ///
      
      WWebBrowser::WWebBrowser(QWidget *parent) : QWidget(parent)
      {
      	QVBoxLayout *l = new QVBoxLayout();
      
      	QWebEngineView *m_webView = new QWebEngineView(parent);
      	m_webView->load(QUrl("http://www.google.com"));
      	l->addWidget(m_webView, 1);
      
      	setLayout(l);
      	m_webView->show();
      }
      
      WWebBrowser::~WWebBrowser()
      {
      }
      

      Any suggestions / ideas?

      1 Reply Last reply Reply Quote 0
      • D
        Delta last edited by

        Well, it was caused by a QGraphicsEffect on the QWidget.
        After removing it, the QWebEngineView worked without any flaws. weird.

        1 Reply Last reply Reply Quote 0
        • First post
          Last post