qwebview Questions
2
5
I am new in android and I am displaying a news link in a webview. News link contains a video. Problem is that, After opening a link i have to click on video then video is playing but i want that vi...
Tragedian asked 16/8, 2016 at 12:41
4
Solved
When running an application in Qt5 made using the QWebView, I accessed a page with a video player in HTML5, but the video does not play and qt/directshow shows the following error:
DirectShowP...
Inferno asked 29/11, 2013 at 14:13
2
Solved
I'm looking for the easiest way to display a simple html file (just a long html-formatted text) inside the Qt dialog.
Links, if any, should be opened in the external default system browser.
3
Solved
Context: I'm creating a small web browser with a custom on-screen keyboard.
It was working almost fine with Qt WebKit (QWeb* classes) but there were crashes attributed to bugs in WebKit... which w...
Anting asked 12/1, 2015 at 3:10
2
Solved
I've been looking for a while through documentation to find a way to accomplish this and haven't been successful yet. The basic idea is, that I have a piece of html that I load through Qt's webview...
Dijon asked 19/3, 2018 at 11:46
3
I want to load a webpage and list all loaded resources (javascript/images/css) for that page. I use this code to load the page:
from selenium import webdriver
driver = webdriver.PhantomJS()
driver...
3
3
I would like to use PyQt/QWebview to 1) load a specific url, 2) enter information into a form, 3) click buttons/links. Mechanize does not work because I need an actual browser.
Here's my code:
im...
Sandfly asked 16/6, 2012 at 3:2
3
I have a QWebView which loads some webpage, but the problem when mouse is pressed and dragged it selectes everything which comes in its way.
Is there any way I can get rid of this?? I dont want te...
1
Solved
I'm using plotly library in offline mode with python and what I'm trying to do is to create some plot, save them as local html and load in a second moment into a QWebView.
This is the code for a b...
Leyden asked 17/3, 2017 at 20:57
1
Solved
I'm trying to create a Dialog in Qt which loads a URL (which I do not want to expose to the end-user, hence a Dialog). Once the user has entered their credentials on the page, the server returns a ...
Scalp asked 28/10, 2016 at 16:12
3
Solved
Right now I'm just trying to get 'www.google.com' to load in a webview when a button is pressed. After I added the webview in the designer the linker starts going crazy. I'm using QT Creater 2.6.1 ...
Wooldridge asked 27/1, 2013 at 23:23
1
Solved
I am using Qt 5.6 with MinGW on Windows 10 64x for developing a cross platform app (desktop + mobile).
In Qt 5.5, I could use WebKit to make a cross platform app for showing web pages in my app, a...
Vacillate asked 25/4, 2016 at 22:39
1
Here's my problem: I want to load a local html file into a QWebView in Python.
EDIT: I use PySide as a Qt package.
My code:
class myWindow(QWidget):
def __init__(self, parent=None):
self.view ...
2
Solved
When the page loads through QWebView I've noticed that other elements of the program are beginning to run slowly, specifically the GUI.
What is the best solution for addressing this problem?
3
Solved
Our team is developing a complex application using Qt 4.7.4. One of the key functions we provide requires HTML+JS content rendered by QWebBrowser.
The problem is that loading of some pages leads t...
2
Solved
I use Qt QWebView component which uses flash-player for video playback. How to disable sound on flashplayer executed inside of my QWebView?
One approach that I consider is to execute some javascri...
2
Solved
I have a "start page" on my application that is just a QWebView widget that downloads a page from my server.
When the user clicks on a link I'd like it to open in their default browser, not in th...
2
Solved
I have a problem. I need to compile qt5 code on qt4. When I'm compiling it I have such error(on qt5 I haven't it):
QWebView: No Such File Or Directory
Here is my .pro file:
QT += core gui xml w...
0
Good afternoon
[First time to post on stackoverflow after years of reading. Exciting!]
I use bokeh to generate html code that I feed into a QWebView in a very simple PyQt4 GUI. The standard tools...
Jalisajalisco asked 27/3, 2015 at 15:6
1
I'm using qt5.3 and I googled a lot before I post.
I want to read data from QNetworkReply. I have a QWebView and I also need the http response to be read by QWebView to display the webpage. What I...
Lifelong asked 5/8, 2014 at 15:26
1
4
Solved
How to pass a function "pointer" from JavaScript to a slot?
in JavaScript:
function f1()
{
alert("f1");
}
qtclass.submit(f1);
and in Qt:
public slots:
void submit(void * ptr)
{
(void)ptr;...
Indemonstrable asked 12/2, 2011 at 1:16
1
Solved
Now this code works with the slot mechanism. However, I want to try out the signal way also. However, I am unable to do so? Any more ideas on it?
I want to call function f1 of the Javascript from ...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.