[Solved] ListView: Modify the animation/rebound behaviour of snap mode
It works! Thank you!
View ArticleDefine a path (custom direction) for particles of an emitter
Maybe here [qt.gitorious.org] near the end of the file.
View ArticleStackView attached properties not visible in pushed objects
parent.view.push You can’t do parent.view.push, but you can do parent.push. But that’s not very convenient if you’re not in the root Item. I’ve found that the id: of the StackView is visible in its...
View ArticleQt Quick 5.3.2 wheel event cascade
Hi, Sounds like a strange behavior. You should try asking on the interest mailing list. You’ll find there Qt’s developers/maintainers (this forum is more user oriented)
View Articlejavascript to qml
I have a javascript script that works fine but I need it to work fine within Qt. Original ‘working’ JS script: var pusher = new Pusher("cb65d0a7a72cd94adf1f"); var channel =...
View ArticleHELP! There is no effect by calling QWindow::lower() on android device
This topic http://qt-project.org/forums/viewthread/47902/. I found the function QWindow::lower(), but nothing happened after calling it on a real android device. When I tested the application on PC, it...
View ArticleTrying to access properties inside a dynamically created qml component [ Solved]
Hi, I have a piece of code that dynamically generates (from javascript) a form. In the example below the form only contains one textfield but the use-case i have is more complicated. There is also a...
View ArticleStrange Lag of QML Garbage Collection
My game logic is written in JavaScript of QML, and drawing image api is realized in C++: Q_INVOKABLE void drawImage(ColorImage* img,qreal x,qreal y); The strange problem is if I create a big JS object:...
View ArticleTrying to access properties inside a dynamically created qml component [ Solved]
Thanks for the hint. I didnt realize that you could access the internal members (of the dynamic qml component) without referring to an id. Your currentAppForm.text doesnt bother about the actual id of...
View ArticleApp does not start in iOS simulator - error: module "qtquick.privatewidgets"...
Hi, my app which runs fine on desktop and android has problems when starting in iOS simulator: My enviroment: Qt 5.3.2 self built with SSL for iOS / XCode 6 / Mac OS 10.9.5 App comes up in simulator...
View ArticleTimeline (like Facebook) with GridView
Hi, I’m working on a timeline to present my data. There is on the left side content in the middle is a line and on the right side is content agin. A draft: http://de.tinypic.com/r/165c7r/8 What is the...
View ArticleHELP! There is no effect by calling QWindow::lower() on android device
OK, I got it! Thanks very much. :)
View ArticleProblem getting Screen.desktopAvailableHeight when Component.onCompleted
I have an common listview control just like the ‘LauncherList’ in Qt examples, and adding items at Component.onCompleted. Every item’s height is depending on the app window height which is same with...
View ArticleProblem getting Screen.desktopAvailableHeight when Component.onCompleted
Hi, If you are using a Loader to load a component you can bind the active [qt-project.org] property to Component.Ready state thus ensuring it will load when main component is ready. Or you can just use...
View ArticleMac deployment Qt Quick 2.0 Qt 5.3.1
Has anyone created a successful bundle for a Qt Quick 2.0 app for Qt5.3.1? I have scoured the web looking for a working script and I still am getting ‘QtQuick is not installed’ error messages after...
View ArticleQmlListProperty access in javascript
Hi, I have a C++ class which contains a list of objects. I want this list to be accessible in my QML interface, so a defined a property of type QQmlListProperty. When using this property as the model...
View ArticleQmlListProperty access in javascript
Hi, The qmllistproperties work slightly in a different way than regular. You need to implement a number of static functions to get everything working. Check the documentation, it has examples to get...
View ArticleQGraphicsTransform3D and QGraphicsTransform duality
Is there a reason for separating QGraphicsTransform3D and QGraphicsTransform? They seem to have nearly same APIs but they don’t share a common ancestor besides QObject. This makes transforming...
View ArticleMac deployment Qt Quick 2.0 Qt 5.3.1
Hi Shav: Awesome. Some usage questions: 1. Are the Mac Certs required just to make the package. 2. What is the entitlements path? 3. What is the application path? Is it the app folder? e.g. myapp.app...
View ArticleQGraphicsTransform3D and QGraphicsTransform duality
Hi, IIRC, the first one applies to the old Qt3d module (which was never officially released) while the other to the QGraphicsView and friends part of Qt Base. If you are interested by the Qt3d module,...
View Article