Re: [Interest] Problems with QCamera/QML Camera when trying to porting a desktop application to android tablet

2018-11-13 Thread Roman Wüger
Hello everyone, I tried it also with the last 5.12 Version without any positive changes. Does anyone else have an idea? Regards > Am 11.09.2018 um 23:47 schrieb Roman Wüger : > > Hi tony, > > Sorry for the delayed answer, but I was on vacation. > The same dialog works a expected on Windows an

[Interest] efficient natural sorting

2018-11-13 Thread Frank Rueter | OHUfx
Hi, I need to use the QSortFilterProxyModel to sort strings with numbers in them, i.e. perform natural sorting. I found this snippet online: |import re def atoi(text): return int(text) if text.isdigit() else text def natural_keys(text): return [atoi(c) for c in re.split('(\d+)', text)] l = [

[Interest] Akward touch behaviour on Windows with MouseArea and MultipointTouchArea

2018-11-13 Thread Nuno Santos
Hi, I have recently acquired a touch screen. After spending many years developing touch applications for iOS and Android, I have finally acquired a touchscreen for windows touch development. I’m writing to this list because I’m facing an awkward issue with MouseArea and MultipointTouchArea.

Re: [Interest] Disable highlighting in QTreeView

2018-11-13 Thread Igor Mironchik
Hi, You can override [virtual protected] voidQTreeView::drawRow(QPainter*painter, const QStyleOptionViewItem&option, const QModelIndex&index) const On 13.11.2018 18:12, Nicolas Krieger wrote: Hi, Another question about QTreeView, how to disable row highlighting ? I could'nt find any solut

[Interest] Disable highlighting in QTreeView

2018-11-13 Thread Nicolas Krieger
Hi, Another question about QTreeView, how to disable row highlighting ? I could'nt find any solution without using css. -- *Nicolas Krieger* ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Qt3D QAbstractItemModel to watch QEntity's

2018-11-13 Thread Philip Schuchardt
Yea, it would be really useful to have more add/remove signals. I think having a way to see if QNode are added/removed to another QNode. There's currently no way to see if the QNode tree has been modified structurally at the moment. Aspects can see these changes, via QSceneChanges, but other that t

Re: [Interest] TreeView cells background color with delegate

2018-11-13 Thread Nicolas Krieger
I have made a mistake in my explanations, there are delegates for columns, not rows. Le 13/11/2018 à 12:21, Nicolas Krieger a écrit : Hello, I have a QTreeView with delegates for some rows, but not all rows. I would like to unified the colors in the rows. In the capture, there is only a del

[Interest] TreeView cells background color with delegate

2018-11-13 Thread Nicolas Krieger
Hello, I have a QTreeView with delegates for some rows, but not all rows. I would like to unified the colors in the rows. In the capture, there is only a delegate for the first column. I display informations the way I want, but I can not find the good way to display the background when the ro

Re: [Interest] Qt3D QAbstractItemModel to watch QEntity's

2018-11-13 Thread Paul Lemire via Interest
Hi, Have you looked into using the signals: void QComponent::addedToEntity(QEntity *entity); void QComponent::removedFromEntity(QEntity *entity); That would be up to you to write a table you would update based on these signals to keep track of which entities reference which components. There's

Re: [Interest] Qt3d and Webassembly

2018-11-13 Thread Morten Sørvig
> On 11 Nov 2018, at 15:56, Pierre Chicoine wrote: > > Is anyone working on getting Qt3d working on Webassembly, and, if so, any > idea of when it will be applied? > ___ Hi, Qt3d makes good use of threads, which is not yet supported by Qt for Weba