Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. qwebview
    Log in to post

    • UNSOLVED Confused about how style sheet inheritance works
      Qt WebKit • stylesheet qwebview css qt 4.8 • • define-qt  

      5
      0
      Votes
      5
      Posts
      1162
      Views

      @define-qt You can be more specific using the name of object as identifier in style sheet sintaxe QLineEdit#ObjectName { border:0; }
    • SOLVED Screen aspect ratio and QWebView
      Qt WebKit • qwebview scale dpi aspect ratio dimensions • • aragats  

      3
      0
      Votes
      3
      Posts
      1259
      Views

      @Konstantin-Tokarev , thanks! QGraphicsView::scale() works great.
    • UNSOLVED QWebView vs QWebEngineView Javascript performance.
      QtWebEngine • javascript qwebview qwebengineview • • Jersak  

      2
      0
      Votes
      2
      Posts
      1007
      Views

      Anyone has any idea?
    • UNSOLVED Displaying RSTP stream with mjpeg / mpeg4 format
      General and Desktop • qt5.5 qwebview mjpeg mpeg4 • • Vader  

      1
      0
      Votes
      1
      Posts
      639
      Views

      No one has replied

    • UNSOLVED Scroll mobile webpage in QWebView - no scrollbars
      General and Desktop • qwebview scroll mobile webpage • • McLion  

      5
      0
      Votes
      5
      Posts
      1606
      Views

      Could not find anything.
    • UNSOLVED QWebView results "408 Request Time-out" towards a certain webpage target
      General and Desktop • qwebview qwebelement • • koliva  

      7
      0
      Votes
      7
      Posts
      1673
      Views

      @koliva Could you give me URLs where this problem reproduces? Also, what QtWebKit version are you using? Form handling code had some fixes in 5.5. It can also be caused by non-conforming behavior of web server.
    • SOLVED Getting sender (QWebView) of javaScriptWindowObjectCleared signal
      Qt WebKit • qwebview javascript qweb sender • • McLion  

      2
      0
      Votes
      2
      Posts
      902
      Views

      Got it solved :-) QWebFrame * webGUIframe = qobject_cast<QWebFrame *>(sender()); QWebView * webGUI = (QWebView*)(webGUIframe->parent())->parent(); webGUI->page()->mainFrame()->addToJavaScriptWindowObject("NativeBridge", this);
    • SOLVED Multiple, identical instances of WebView, dynamically created
      Qt WebKit • qwebview multiple • • McLion  

      5
      0
      Votes
      5
      Posts
      2035
      Views

      @Konstantin-Tokarev said in Multiple, identical instances of WebView, dynamically created: Approach with multiple views is optimal when you want all those pages to be present on screen at the same time, or have indpendent "tabs" like in a browser with separate navigation histories and possibility to do background work like playing music This is about what we do. The screen is divided into various sections that are used for various menus, sub-menus, lists ... and more. These need to be loaded and shown/hidden separately or at the same time. The GUI is completely based on webpages with html/css/php/js. I have it working pretty smart now, though there are some limits like a key can not be sent to a webGUI that is hidden for instance, which would be great to preload a GUI section before showing.
    • QWebEngineView in QtDesigner
      Tools • qwebview qtdesigner qtcreator 3.6.1 qwebenginevi • • enmaniac  

      3
      0
      Votes
      3
      Posts
      10828
      Views

      @enmaniac QWebKit was removed in Qt 5.6. So QWebView is no longer available. Use QWebEngineView as a replacement. In Qt Designer, just add a QWidget to your form and promote it to QWebEngineView (base class: QWidget, header: QWebEngineView). Don't forget to add webenginewidgets to your project file.
    • SOLVED Google Maps Places does not work on QWebView
      General and Desktop • map qwebview google api place • • Alessio V.  

      5
      0
      Votes
      5
      Posts
      1800
      Views

      Hi @JKSH, I've resolved using QWebChannel. Thanks again!
    • SOLVED QWebView can't load the SketchUp 3D warehouse web page??
      Qt WebKit • qwebview • • kenchan  

      2
      0
      Votes
      2
      Posts
      893
      Views

      Setting the LocalStorageEnabled setting to true fixed this one!
    • UNSOLVED QWebView - Pb to display HTML table with rowspan with QT5.5
      General and Desktop • qt5.5 qwebview css html table • • Morgar  

      1
      0
      Votes
      1
      Posts
      933
      Views

      No one has replied

    • UNSOLVED Problem with video play
      Mobile and Embedded • qt5 qwebview qvideowidget • • Zola  

      1
      0
      Votes
      1
      Posts
      443
      Views

      No one has replied

    • UNSOLVED Qwebview and printer issue(paper size)
      General and Desktop • qwebview html qprinter • • Nouriemm  

      2
      0
      Votes
      2
      Posts
      866
      Views

      Anyone? Any Idea?
    • Cannot open .qhc files in QWebView
      General and Desktop • qwebview qhelpengine qthelp • • ValentinMichelet  

      2
      0
      Votes
      2
      Posts
      1204
      Views

      I updated my previous post since I solved part of the issue.
    • UNSOLVED Printing QWebView wia QPrinter exceeds page in QPrintPreviewDialog
      General and Desktop • qwebview html qprinter qprintpreviewdi • • SebastianS  

      1
      0
      Votes
      1
      Posts
      584
      Views

      No one has replied

    • UNSOLVED Anyone glue Qt/C++ to MacGap?
      Qt WebKit • qtwebengine qwebview qtwebkit macgap • • maximo  

      1
      0
      Votes
      1
      Posts
      699
      Views

      No one has replied

    • UNSOLVED QT for embedded, support for HTML web view and generating UI at run time
      Mobile and Embedded • embedded qwebview • • at_pradeep  

      1
      0
      Votes
      1
      Posts
      465
      Views

      No one has replied

    • SOLVED Is injecting C++ via Javascript into an IFRAME possible?
      General and Desktop • qt5.5 javascript webkit qwebview iframe • • maximo  

      2
      0
      Votes
      2
      Posts
      1927
      Views

      I found the solution. Not only can you call the HTML5 postMessage() API to pass messages back and form from/to the IFRAME to the parent document, but Qt's version of WebKit have lax security controls compared to Chrome and do allow you to do the following in the IFRAME's Javascript. The trick is the window.parent.[whatever] -- something that Chrome won't let you do with stuff accessed with file:// (local files). $(document).ready(function(){ if (window.parent.cpp) { var cpp = window.parent.cpp; // do something with C++ here through the cpp object } });
    • SOLVED QWebView Disable Backspace Key (But Not on HTML Fields)
      General and Desktop • event qwebview key disable backspace • • maximo  

      2
      0
      Votes
      2
      Posts
      1248
      Views

      Here's the solution. You have to do it in Javascript. Ensure jQuery is loaded in your web pages (even the IFRAME/FRAME ones) and then apply this code: <script type="text/javascript"> $(document).ready(function(){ // Disable backspace key except in fields. $(document).keydown(function(e) { var elid = $(document.activeElement).is('INPUT, TEXTAREA') ; if (e.keyCode === 8 && !elid) { if(e.ctrlKey) { window.history.back(); } else { // disable backspace e.preventDefault(); return false; } } }); }); </script> SOURCE: http://stackoverflow.com/a/17278620/105539
    • UNSOLVED QWebView Calling C++ from IFRAME (Local Pages)
      General and Desktop • c++ qwebview iframe postmessage • • maximo  

      1
      0
      Votes
      1
      Posts
      476
      Views

      No one has replied

    • SOLVED Qt 5.5 QWebView Mac LGPL Deployment -- Any Word of Caution?
      General and Desktop • qt5.5 deployment qwebview license lgpl • • maximo  

      3
      0
      Votes
      3
      Posts
      1060
      Views

      @SGaist said: Where did you got these informations ? Nowhere. I just wanted to make certain that this was not true. Your extra information about the Apple Store is very useful -- thanks.
    • UNSOLVED Is there any "HTML change" signal in QWebView?
      Qt WebKit • webkit qwebview signals & slots qwebpage webkitwidgets • • Eyeless  

      3
      0
      Votes
      3
      Posts
      1288
      Views

      @maximo the problem is that page`s url is not changing when song data changes. I solved the problem by checking song data using a timer and emiting my own signal.
    • QWebView can't show image while Html file using <img src="file://..."> instead <img src="file:///...">
      General and Desktop • qwebview file html local file • • kkkiio  

      1
      0
      Votes
      1
      Posts
      1031
      Views

      No one has replied

    • QWebView can't render unicode font on windows xp
      General and Desktop • qwebview font font family • • Giorgi  

      1
      0
      Votes
      1
      Posts
      730
      Views

      No one has replied

    • Release version not playing video and not loading external css
      Installation and Deployment • qmediaplayer qwebview qvideowidget • • andyhaggis  

      1
      0
      Votes
      1
      Posts
      530
      Views

      No one has replied

    • QWebView - need to use either firefox or google chrome as user agent?
      General and Desktop • qwebview qwebkit user agent • • nikki16  

      1
      0
      Votes
      1
      Posts
      781
      Views

      No one has replied

    • Problem evaluating javascript source with QWebView
      General and Desktop • qobject qwebview qwebframe • • Jelko  

      6
      0
      Votes
      6
      Posts
      1918
      Views

      It now works: QString scriptSource = "if (typeof Wizard_OnNext == 'function') { wizard.nextButtonClicked.connect(Wizard_OnNext); }"; ui.webView->page()->mainFrame()->evaluateJavaScript(scriptSource);
    • Visual Studio 2013 Web Linker Error
      Installation and Deployment • qwebview lnk2019 qwebframe • • TigerBunny  

      1
      0
      Votes
      1
      Posts
      691
      Views

      No one has replied

    • QQuickWidget move problem on Android
      Mobile and Embedded • qml error qwebview problem qquickwidget move move problem setgeometry drag problem qwebview qquick android qquickw • • MrKozmon  

      2
      0
      Votes
      2
      Posts
      1157
      Views

      @MrKozmon I'm having the exact same problem on Android. When I drag a QQuickWidget that is hosting a QML-based WebView on Android, the widget moves but the WebView is left in the original position. Wondering if there has been any progress or a workaround for this issue. I am using Qt 5.10.0, developing for an x86 Android platform.
    • WebGL
      QtWebEngine • qwebview qwebengineview webgl cesium • • kmbar2013  

      2
      0
      Votes
      2
      Posts
      2512
      Views

      Just an FYI, disabling network adapters (used by virtual machines) in Device Manager solved the sluggishness for me.
    • ‘QWebView’ does not name a type
      General and Desktop • qwebview • • ___Jan___  

      7
      0
      Votes
      7
      Posts
      3021
      Views

      @Jan said: the module name is WebKitWidgets? So find_package (Qt5 REQUIRED COMPONENTS Widgets Core WebKitWidgets) will work? I'm not sure, sorry. I don't use CMake. and then in the include: #include <QtWebKitWidgets> No need to include the whole module. Just include the class you want: #include <QWebView>
    • [ Solved] Print QWebView to PDF
      General and Desktop • qwebview pdf • • ASSeeger  

      5
      0
      Votes
      5
      Posts
      2462
      Views

      @ASSeeger Glad that you found the problem, Happy Coding ..
    • [SOLVED] QWebView doesn't display d3
      Qt WebKit • qwebview • • ALF-100  

      2
      0
      Votes
      2
      Posts
      1290
      Views

      When you load libraries ...(html code): <script src="http://... instead <script src="https://...
    • QWebView black background trying to visualize googlemaps results
      Qt WebKit • qt 5.4.1 qwebview • • maxmall  

      1
      0
      Votes
      1
      Posts
      692
      Views

      No one has replied

    • How to adapt the size of QWebView to its contents
      General and Desktop • pyqt5 pyqt qwebview • • mycityofsky  

      1
      0
      Votes
      1
      Posts
      1006
      Views

      No one has replied

    • Кривая печать таблицы в QWebView
      Russian • qwebview • • admsasha  

      1
      0
      Votes
      1
      Posts
      1447
      Views

      No one has replied

    • Trouble with videos and QWebView deployment
      Qt WebKit • qwebview loadfinished • • JADesktopDev  

      2
      0
      Votes
      2
      Posts
      986
      Views

      Maybe the following link is about the same topic.... http://stackoverflow.com/questions/27738508/qt5-deployed-qtwebengine-project-not-playing-html5-videos
    • How to compile qtwebkit-plugins?
      Qt WebKit • windows mingw qwebview qtwebkit spellcheck • • brcontainer  

      15
      0
      Votes
      15
      Posts
      5061
      Views

      @SGaist said: Strange… Let's check with @tekojo tomorrow I discovered, your account is moderator type (I think), my account is a normal user, so I'm not such a function, but @tekojo had an idea to use "tags" instead of this function, see: https://bugreports.qt.io/browse/QTWEBSITE-631