Re: [Interest] Multiple QML WebEngineView instances on one QQmlEngine

2016-01-28 Thread Joerg Bornemann
On 27-Jan-16 13:24, Jani Tykka wrote: I have one QQmlEngine instance which holds multiple QML WebEngine instances. Is this supported approach? I'm experiencing random WebEngine crashes which makes me think this could be the culprit. Could you please create a bug report for those crashes on

Re: [Interest] how to add a buton to the hovered item from a qtreeview

2016-01-28 Thread Tony Rietwyk
> Sent: Friday, 29 January 2016 2:45 PM > > Hi > I have a `QTreeView`, I control the background colors of items trough a css. > When the pointer is over an item his background is greyed. > > I use the signal `entered` to detect which item, aka `QModelIndex`, aka row, > is hovered. If I use that

Re: [Interest] how to add a buton to the hovered item from a qtreeview

2016-01-28 Thread Elvis Stansvik
Den 29 jan 2016 4:47 fm skrev "Nicolas Jäger" : > > Hi > I have a `QTreeView`, I control the background colors of items trough a css. When the pointer is > over an item his background is greyed. > > I use the signal `entered` to detect which item, aka `QModelIndex`, aka

Re: [Interest] Local version control with Qt Creator on Linux

2016-01-28 Thread Thiago Macieira
On Thursday 28 January 2016 22:55:44 Bernhard Lindner wrote: > Hi! > > I am experimenting with Qt5 + Qt Creator on Linux Kubuntu. I would like to > try using the version management integration of Qt Creator. > > I don't want to use a public server so I need to setup something local. Git. > I

[Interest] Compiling Qt 5.5.1 from source for OSX, iOS

2016-01-28 Thread Jason H
I did a in-place build, then realized I wanted to do both OSX and iOS, so I make the build directories. When I try to compile: You cannot make a shadow build from a source tree containing a previous build. Cannot proceed. I've run: make clean What do I need to do to be able to build again?

Re: [Interest] Compiling Qt 5.5.1 from source for OSX, iOS

2016-01-28 Thread Thiago Macieira
On Thursday 28 January 2016 23:50:30 Jason H wrote: > I did a in-place build, then realized I wanted to do both OSX and iOS, so I > make the build directories. > > When I try to compile: > You cannot make a shadow build from a source tree containing a previous > build. Cannot proceed. > > I've

Re: [Interest] Compiling Qt 5.5.1 from source for OSX, iOS

2016-01-28 Thread Jason H
Ah, nevermind. man git-clean > Sent: Thursday, January 28, 2016 at 6:00 PM > From: "Jason H" > To: "Thiago Macieira" > Cc: interest@qt-project.org > Subject: Re: [Interest] Compiling Qt 5.5.1 from source for OSX, iOS > > > > Or, better: git clean -x

Re: [Interest] Local version control with Qt Creator on Linux

2016-01-28 Thread Bob Hood
On 1/28/2016 2:55 PM, Bernhard Lindner wrote: What version management software should I try to install in your opinion? Mercurial. https://www.mercurial-scm.org/ It has a lot of the features of git, but it's design decisions actually makes sense, especially if you're coming from

[Interest] Local version control with Qt Creator on Linux

2016-01-28 Thread Bernhard Lindner
Hi! I am experimenting with Qt5 + Qt Creator on Linux Kubuntu. I would like to try using the version management integration of Qt Creator. I don't want to use a public server so I need to setup something local. I am not an expert in Linux administration... setting up the server side and

Re: [Interest] Compiling Qt 5.5.1 from source for OSX, iOS

2016-01-28 Thread Jason H
> Or, better: git clean -x -d -f. If you're not using git, rm -rf and unpack > the > tarball again. Thanks. I have changes to QtMultimedia. Will those git options keep my changes? ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Local version control with Qt Creator on Linux

2016-01-28 Thread Jason H
> I have experiences in using SVN (as client side user with Tortoise and other > clients) and I am very satisfied with it. I am a single user and there are no > plans of any team work. > > What version management software should I try to install in your opinion? Perforce is free for 20 users /

Re: [Interest] Local version control with Qt Creator on Linux

2016-01-28 Thread Thiago Macieira
On Friday 29 January 2016 01:48:06 Jason H wrote: > Perforce is free for 20 users / 20 workspaces. I really like it. The only > issue is by default files not checked out are readonly. This causes > problems when building for iOS/Android as the manifest files can't be > changed without a checkout.

[Interest] Does QNAM / XMLHttpRequest understand 100?

2016-01-28 Thread Jason H
We are talking about using a long-polling technique. As a result, the server will send `100 continue` until there is data available for the client. Is this supported in Qt? ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Local version control with Qt Creator on Linux

2016-01-28 Thread Thiago Macieira
On Thursday 28 January 2016 16:13:47 Bob Hood wrote: > It has a lot of the features of git, but it's design decisions actually > makes sense, especially if you're coming from Subversion. There are also > extensions that let you inter-operate with git if you need to. I'd argue that, these days,

Re: [Interest] Does QNAM / XMLHttpRequest understand 100?

2016-01-28 Thread Thiago Macieira
On Friday 29 January 2016 01:42:56 Jason H wrote: > We are talking about using a long-polling technique. As a result, the server > will send `100 continue` until there is data available for the client. Yes, QNAM handles 100 Continue. -- Thiago Macieira - thiago.macieira (AT) intel.com

Re: [Interest] [Development] Setup CI service

2016-01-28 Thread Ben Lau
On 27 January 2016 at 18:18, Koehne Kai wrote: > (moving this from development@ to interest@) > > -Original Message- > > From: Ben Lau [mailto:xben...@gmail.com] > > Sent: Wednesday, January 27, 2016 11:14 AM > > To: Koehne Kai >

Re: [Interest] [Development] Setup CI service

2016-01-28 Thread Koehne Kai
> -Original Message- > From: Ben Lau [mailto:xben...@gmail.com] > Sent: Thursday, January 28, 2016 11:08 AM > To: Koehne Kai > Cc: Qt Interest (interest@qt-project.org) > Subject: Re: [Development] Setup CI service > > > > On 27

Re: [Interest] how to add a buton to the hovered item from a qtreeview

2016-01-28 Thread Nicolas Jäger
Hi, > I think that you will need to use WA_TransparentForMouseEvents, and then > handle the MouseDown event in MyTreeView to check where along the row the > user has clicked to see if it is within the button. in that case I won't really clicked on the button right? in that case I won't have

Re: [Interest] Multiple QML WebEngineView instances on one QQmlEngine

2016-01-28 Thread Jérôme Godbout
Hi, Not sure if this is related, but take care, object are related to a single QQmlEngine and cannot be used inside another one. One thing to consider is singleton in qml, they are created only once and belong to the first engine that request it, other QQmlEngine will fail when using them. In C++

[Interest] how to add a buton to the hovered item from a qtreeview

2016-01-28 Thread Nicolas Jäger
Hi I have a `QTreeView`, I control the background colors of items trough a css. When the pointer is over an item his background is greyed. I use the signal `entered` to detect which item, aka `QModelIndex`, aka row, is hovered. If I use that signal, is because I have to show a `QPushButton`

Re: [Interest] how to add a buton to the hovered item from a qtreeview

2016-01-28 Thread Nicolas Jäger
I may have found one solution: http://doc.qt.io/qt-5/qtreewidget.html#setItemWidget I'll look more at this tomorrow. regards, Nicolas ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest