web browser inside frame with buttons to go to diferente pages Programming Software Development by razstec …__init__() self.browser = QWebEngineView() self.browser.setUrl(QUrl(url)) self.setCentralWidget(self.browser) self.showNormal() #…) def navigate_home(self): self.browser.setUrl(QUrl(url)) def navigate_to_url(self): url = … help with qt flash elearning tool Programming Software Development by syd919 …]#include <QApplication> #include <QWebView> #include <QUrl> #include <QWebSettings> int main(int argc, char…: 7px ; color:rgb(255,255,255)"); view->load(QUrl("file:///home/mary/eLearning/flash/Problem%20loading%20page.xhtml… Swapping Source of a QDeclarativeView Programming Software Development by tjsail33 …QString fileName) { this->ui->declarativeView->setSource(QUrl::fromLocalFile("Test.qml")); } [/code] I …fileName) { QDeclarativeView *view = new QDeclarativeView; view->setSource(QUrl::fromLocalFile(fileName)); ui->declarativeView = view; ui->declarativeView… PyQt QWebKit frame bug? Programming Software Development by GatorAlli … Main(self): self.webView = QtWebKit.QWebView() self.webView.load(QtCore.QUrl("http://www.msnbc.msn.com/id/41197838/ns/us_news… FTP Upload using QNetworkAccessManager [QT] Programming Software Development by replax … access the FTP Server without using any security measures. [CODE] QUrl uploadurl("ftp://ftp.drivehq.com/wwwhome/"); uploadurl.setUserName… Accessing C++ methods in main.cpp from QML Programming Software Development by dshiells …;stdFuncs", &stdFuncs); view.setResizeMode(QDeclarativeView::SizeRootObjectToView); view.setSource(QUrl::fromLocalFile("qml/ConverterLite/main.qml")); view.show(); return… [QT] QNetworkAccessManager in QThread Programming Software Development by 9tontruck ….setPeerVerifyMode(QSslSocket::VerifyNone); QNetworkRequest request; string target = IM_url_getData; request.setUrl(QUrl(target.c_str())); request.setRawHeader("User-Agent", "DK… Re: Python GUI Programming Programming Software Development by vegaseat … = QWebView() url = "http://qt.nokia.com/" view.load(QUrl(url)) view.show() # run the application event loop app.exec_… Re: Python 2 vs Python 3 Programming Software Development by vegaseat … = QWebView() url = "http://qt.nokia.com/" view.load(QUrl(url)) view.show() # run the application event loop app.exec_… Re: QT signal to change the GUI out side the main thread Programming Software Development by nabla2 …;, "QString","QTextStream", "QTime", "QUrl", "QVariant"] API_VERSION = 2 for name in API_NAMES… Re: pyqt QTableView printing ( c++ translate to python) Programming Software Development by HiHe …,url, parent=None): QtWebKit.QWebView.__init__(self,parent) self.setUrl(QUrl(url)) self.preview = QPrintPreviewDialog() self.connect(self.preview, SIGNAL("… Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by Schol-R-LEA Just what do you mean by 'changeable'? Does it have to be able to view different websites, rather than the hardcoded one? Or something else? Also, are you sure you want to be mixing TkInter and Qt like that? I'm not certain that that would really work consistently. If you need the Qt browser tool, I would use Qt for the whole UI. Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by razstec hi, it doesnt need to be qt, i just cant find a way to do this with tkinter. the thing is when ever i click a button the browser frame would reload, it will always be the same site but with diferent parameters for logtrail search. Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by Schol-R-LEA Sorry for the delay in getting back to you, I'll see what I can find out. Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by razstec hi, sorry to bother you, been trying the past weeks, is there a way this can be done? im starting to think that it cant be done :( can you just point me in the right way, im always looking in dead ends :s thanks Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by Schol-R-LEA I'm sure there's a way to do it, but I've been otherwise occupied and haven't had a chance to address the question. Sorry. I did test it, and it seems to work well enough, if not exactly the most sophisticated - I tried using Google search's "I'm Feeling Lucky" and it let me select a page to load. I'm not sure what the problem you are … Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by Schol-R-LEA I did notice that editing the URL only set it to "about:blank", but that doesn't seem to be what you actually were referring to. Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by razstec this is what i need, maybe its easier like this ![Captura_de_ecrã_2021-08-25,_às_09_29_24.png](https://static.daniweb.com/attachments/4/82623346994d32b14776748acdd03180.png) this seems to work https://github.com/cztomczak/cefpython/blob/master/examples/tkinter_.py or https://pythonprogramming.altervista.org/python-goes-to-the-web-… Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by razstec this is complicated :s do you think i can clean this code? i think there many features that are not even implemented yet :s # Example of embedding CEF Python browser using Tkinter toolkit. # This example has two widgets: a navigation bar and a browser. # # NOTE: This example often crashes on Mac (Python 2.7, Tk 8.5/8.6)… Re: web browser inside frame with buttons to go to diferente pages Programming Software Development by razstec made some changes its still confusing :s you need to manually resize the window for the browser to show.... dont ask me why :( # Example of embedding CEF Python browser using Tkinter toolkit. # This example has two widgets: a navigation bar and a browser. # # NOTE: This example often crashes on Mac (Python 2.7, Tk …