[Interest] devtools interaction - save HAR as Content

2018-08-02 Thread Kevin Mcintyre
In QT5.11 - I'm able to setInspectedPage - and everything looks good. But when I go to save network panel right click 'save HAR as Content'...nothing seems to happen. I've tried downloadRequested.connect but that doesn't seem to receive the signal. Any pointers would be appreciated.

[Interest] Include twitter-kit jar and/or cocopod

2018-01-22 Thread Kevin Mcintyre
Had a question about includes external libraries based on the build definition. I'm want to include twitter-kit. Is this possible for either Andoird or IOS platform. Thanks in advance, ___ Interest mailing list Interest@qt-project.org

[Interest] disable web security in QtWebEngine

2017-07-05 Thread Kevin Mcintyre
Has this been asked before? https://forum.qt.io/topic/60691/not-allowed-to-load-local-resource-for-iframe-how-to-disable-web-security/2 I'm looking to run QtWebEngine in a disable-web-security mode but I cannot find any working examples. QT 5.9 Thanks

[Interest] QWebEngine block domain

2017-06-13 Thread Kevin Mcintyre
Is it possible to block requests, like for instance to a specific domain. Is see QWebEngineUrlRequestInterceptor but this is only informational. Thanks in advance for any tips. ___ Interest mailing list Interest@qt-project.org

[Interest] 5.8.0 Segfault on setPersistentCookiesPolicy

2017-01-31 Thread Kevin Mcintyre
This is PyQt application, so that maybe the issue, but setting window = QWebEngineView() window.page().profile().setPersistentCookiesPolicy(QWebEngineProfile.NoPersistentCookies) generates segfault. This code worked fine under 5.7.1. Any thoughts appreciated.

[Interest] QWebEngine - No URLRequestContext for NSS HTTP handler

2016-12-08 Thread Kevin Mcintyre
I don't think this an issue specific to QT, I get the following warning: No URLRequestContext for NSS HTTP handler. host: ocsp.digicert.com But this occasionally stops my browser. Any pointers/suggestions/considerations greatly appreciated. Running on ubuntu 16.04

Re: [Interest] Using Qt Webengine to render to an image

2016-08-26 Thread Kevin Mcintyre
I do using pyqt. Sometimes it's necessary to use QWebChannel to set additional params like clipping properties. class App(QApplication): def initCapture(self): self.capture = True self.opengl = None def toImage(self, location = None): png = '/tmp/capture.png'

Re: [Interest] create delegate modelData

2016-07-18 Thread Kevin Mcintyre
rved". > > However, modelData mentioned here: > http://doc.qt.io/qt-5/qtquick-modelviewsdata-cppmodels.html > > And mentioned again here: > http://doc.qt.io/qt-5/qml-qtquick-repeater.html > > Cheers --Alan > > > > On Thu, Jul 14, 2016 at 10:07 PM, Kevin Mcinty

[Interest] create delegate modelData

2016-07-14 Thread Kevin Mcintyre
Below is psuedo code...am I doing something wrong - or is modelData reserved? //This works. -- ~repeater.qml Item { Repeater { model: [ ["example"], ] delegate: Qt.createComponent("maybe_delegate.qml") } } -- maybe_delegate.qml Item { objectName:

[Interest] video capture qwebenginepage

2016-07-10 Thread Kevin Mcintyre
wanted to share (or re-share) my mostly working project after updating to twisted 16.2, Qt 5.7 & PyQt -- so yeah not directly related. https://github.com/kmcintyre/morningoogle.com Using opencv to capture QWebEnginePage and post process with avconv the result of which is hosted here

Re: [Interest] how to install qt enterprise using command line only?

2016-07-06 Thread Kevin Mcintyre
I've been using the --script option to install on headless systems. --script qt.install.js --- qt.install.js --- function Controller() { installer.autoRejectMessageBoxes(); installer.installationFinished.connect(function() { gui.clickButton(buttons.NextButton); }) }

Re: [Interest] 5.8 Features?

2016-06-24 Thread Kevin Mcintyre
I had this issue after I installed QT a couple of times (the first time I didn't install with version with Android) So looking back on my notes I sent to "Interest" - I resolved "via export LD_LIBRARY_PATH=/home/ubuntu/Qt/5.6/gcc_64/lib in my .bashrc file." On Fri, Jun 24, 2016 at 12:59 PM,

Re: [Interest] universal builds on OS X

2016-06-22 Thread Kevin Mcintyre
Is it possible to build for IPhone from Ubuntu? Any tutorials of starter docs would be greatly appreciated. On Wed, Jun 22, 2016 at 3:51 AM, René J. V. wrote: > Hamish Moffatt wrote: > > > > Out of interest, for what purpose? There hasn't been a 32-bit Mac built > > since

Re: [Interest] linux 64 5.7.0 WebEngine segfault

2016-06-20 Thread Kevin Mcintyre
, 2016 at 5:50 AM, Kai Koehne <kai.koe...@qt.io> wrote: > Hi Kevin > > > -Ursprüngliche Nachricht- > > Von: Interest [mailto:interest-bounces+kai.koehne=qt...@qt-project.org] > > Im Auftrag von Kevin Mcintyre > > Gesendet: Freitag, 17. Juni 2016 1

Re: [Interest] linux 64 5.7.0 WebEngine segfault

2016-06-17 Thread Kevin Mcintyre
Follow-up - segfault was the result of trying to use QWebEngineUrlRequestInterceptor - a class I haven't been able to get working. On Fri, Jun 17, 2016 at 9:23 AM, Kevin Mcintyre <kebi...@gmail.com> wrote: > When starting webengine - I get this error, > > [0617/091642:ERROR:brows

[Interest] linux 64 5.7.0 WebEngine segfault

2016-06-17 Thread Kevin Mcintyre
When starting webengine - I get this error, [0617/091642:ERROR:browser_main_loop.cc(217)] Running without the SUID sandbox! See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_suid_sandbox_development.md for more information on developing with the sandbox on. followed by this

[Interest] 5.7 QWebChannel - question/observation

2016-05-31 Thread Kevin Mcintyre
With a webenginepage across page loads I needed to setWebChannel(None) setWebChannel(channel) # new channel between each request. Otherwise I would get an error message "qt is not defined" when executing the script. Are channels suppose to be available across the llifecycle of the

Re: [Interest] ListView won't fall in line.

2016-05-15 Thread Kevin Mcintyre
the ListView will > fill the remaining available space on the screen and it will eventually let > you scroll the content inside. > > Ciao, > Gianluca. > > > Il giorno 14/mag/2016, alle ore 23:24, Kevin Mcintyre <kebi...@gmail.com> > ha scritto: > > >

[Interest] ListView won't fall in line.

2016-05-14 Thread Kevin Mcintyre
// this seems wrong. ListView doesn't heed column/row -- change to repeater acts as expected. import QtQuick 2.5 import QtQuick.Controls 1.4 ApplicationWindow { width: 400 height: 400 visible: true Column { anchors.fill: parent Row { Label {

[Interest] localstorage metadata via sqlite_master

2016-05-10 Thread Kevin Mcintyre
I see that sqlite has table information via sqlite_master http://www.sqlite.org/faq.html#q7 Is this table available in Qt localstorage? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] ListView/ListModel optimization

2016-05-03 Thread Kevin Mcintyre
Given code like below where JSON data is used to populate a ListModel - I run into loading issues on mobile when the number of objects returned is greater than a couple thousand.s Once the item is rendered it performs as expected, but the time to ready is often beyond user acceptance. Any

[Interest] ListView in Column

2016-04-25 Thread Kevin Mcintyre
I would've thought the ListView would appear below the Text, but that doesn't prove to be the case for me. SplitView and GridView behave as expected...any feedback or minimal tweaks to get working is appreciated. Column { Text { text: 'test'} ListView {...} }

Re: [Interest] mediaplayer or soundeffect

2016-03-19 Thread Kevin Mcintyre
added the following conditional MediaPlayer if ( mediaPlayer.availability == 0 && mediaPlayer.playbackState == 0) { //only play here/ } On Fri, Mar 18, 2016 at 4:54 PM, Kevin Mcintyre <kebi...@gmail.com> wrote: > Hello - First time posting to QT mailing list so forgive me if th

[Interest] mediaplayer or soundeffect

2016-03-18 Thread Kevin Mcintyre
Hello - First time posting to QT mailing list so forgive me if this is the wrong channel. I have a simple QML application listening on a websocket, and want to play a chime on message. Initially I tried SoundEffect but my wav file didn't play correctly, so I opted for MediaPlayer which works,