Re: [Interest] Map position of listview item

2013-11-21 Thread Mark Tucker
Hello, In this case it sounds like you want to be using either mapToItem() or mapFromItem(). Documentation for both here: http://doc-snapshot.qt-project.org/4.8/qml-item.html#mapFromItem-method Thanks Mark From: interest-bounces+mark.tucker=airborne.a...@qt-project.org

Re: [Interest] QML beautifier?

2014-05-15 Thread Mark Tucker
Though I would certainly make the order configurable, I'd suggest that the order provided on the QML Coding Conventions page is used as the default for any such tool: http://qt-project.org/doc/qt-5/qml-codingconventions.html#qml-object-declarations Mark -Original Message- From:

Re: [Interest] Strategies to create dialog boxes dynamically in Qml

2015-09-29 Thread Mark Tucker
Hello Nuno, In finishUIDDialogCreation() (after your check for it being null) you can connect the signals you're emitting from your dialog to another function of your choice, for instance if you had a function named "handleOKClicked" then you can do this:

Re: [Interest] Exposing nested visual properties in FocusScope (alias -> alias problem)

2016-03-21 Thread Mark Tucker
Hello, As long as your internal Text item has an id, then you can add the aliases in the FocusScope. This should work: FocusScope { property alias text: text.text property alias textPixelSize: text.font.pixelSize Rectangle { id: button focus: true width:

Re: [Interest] QML WebView modules

2017-04-05 Thread Mark Tucker
again! Mark From: Nibedit Dey [mailto:nibedit@gmail.com] Sent: 05 April 2017 05:50 To: Sze Howe Koh <szehowe@gmail.com> Cc: Mark Tucker <mark.tuc...@airborne.aero>; interest@qt-project.org Subject: Re: [Interest] QML WebView modules Dear Sze-Howe, I haven't worked much in Qt

[Interest] QML WebView modules

2017-04-04 Thread Mark Tucker
Hi, I'm currently trying to create a QML app that works on both a Linux platform and an Android platform. Due to the nature of my target platforms (embedded systems), I'm limited to Qt 5.5.1 and cannot upgrade. Note that my app is pure QML and I cannot write any C++ code to solve this. To get

Re: [Interest] QML WebView modules

2017-04-05 Thread Mark Tucker
Hi Kai, My problem is that despite having successfully compiled and installed both the qtwebkit and qtwebengine modules for Qt 5.5.1 on my desktop Linux platform, the QML statement import QtWebView 1.0 Reports as being uninstalled/not available when I attempt to run my QML app on my Linux

Re: [Interest] QML WebView modules

2017-04-05 Thread Mark Tucker
Where do I install it from? Is it a configure option? Mark -Original Message- From: Konstantin Tokarev [mailto:annu...@yandex.ru] Sent: 05 April 2017 14:53 To: Mark Tucker <mark.tuc...@airborne.aero>; Kai Koehne <kai.koe...@qt.io>; Nibedit Dey <nibedit@gmail.com

Re: [Interest] QML WebView modules

2017-04-05 Thread Mark Tucker
Awesome, I have it working, thanks very much for putting up with all my questions :D Mark -Original Message- From: Konstantin Tokarev [mailto:annu...@yandex.ru] Sent: 05 April 2017 15:13 To: Mark Tucker <mark.tuc...@airborne.aero>; Kai Koehne <kai.koe...@qt.io>; Nibedit

Re: [Interest] QML WebView modules

2017-04-05 Thread Mark Tucker
] Sent: 05 April 2017 15:02 To: Mark Tucker <mark.tuc...@airborne.aero>; Kai Koehne <kai.koe...@qt.io>; Nibedit Dey <nibedit@gmail.com>; Sze Howe Koh <szehowe@gmail.com> Cc: interest@qt-project.org Subject: Re: [Interest] QML WebView modules 05.04.2017, 16:58,

Re: [Interest] QML WebView modules

2017-04-05 Thread Mark Tucker
Ah, there's a 5.5.1 tag in there, presumably that's what I would need? Now I need to read up on how to use this from git :) Thanks Mark -Original Message- From: Konstantin Tokarev [mailto:annu...@yandex.ru] Sent: 05 April 2017 15:06 To: Mark Tucker <mark.tuc...@airborne.aero>

Re: [Interest] Updating NumberAnimation from/to at runtime

2017-07-14 Thread Mark Tucker
From my experience, once started, you cannot dynamically change the parameters (such as from, to, duration) of an animation in such a way, without restarting the animation. Doing so simply has no effect on the already running animation. In other words, the values are taken as an assignment at

Re: [Interest] Awkward Javascript problem

2017-11-30 Thread Mark Tucker
Hi Nuno, Are you attempting to access this "controller" property within a "Component.onCompleted" block of code? With Loaders I've found from experience that there's a brief period of time where the component has been created (and therefore its Component.onCompleted signal fires), but it has