Custom animation classes?
I’m interested in doing some sophisticated physics based animations of QML elements. I know I can perform the motion calculations to predict the path of the objects then use a PathAnimation object....
View ArticleAndroid Google Play Services integration with qt5.2
Hi. Take a look of this post How to add google play services lib to qt for android [qt-project.org]
View ArticleCannot playback any video on embedded linux
Hi, From the plugin log, it seems you only have the audio engine built. Do you have any other plugin in the same folder ? If not, do you have gstreamer built for your device ? If not, it’s probably the...
View ArticleGoogle Cloud Storage
Hi, Has anyone tried connecting to Google’s cloud storage using QML? Can it be done? thnx Brian
View ArticleTableView & Dynamic columns creation
Hello Friends. I have a doubt regarding dynamic objects creation for a QML TableView ( QtQuick Controls) Is it possible to insert a new column on TableView? Documentation describes that it has to be an...
View ArticleCustom animation classes?
Thank you Xander. Hopefully it’s easier to understand/refactor than to just re-invent!
View ArticleCannot playback any video on embedded linux
thanks for your time… I found out that my gstreamer-0.10 development package was not found during cross-compilation due to the fact that I was missing -sysroot in ./configure step… now I am...
View Articlewheel not work for ScrollView that lies in another ScrollView
The outer ScrollView always respond to mouse wheel event, no matter mouse pos is in inner ScrollView area or not. However, what i need is to scroll inner ScrollView when mouse is in it. Any help will...
View ArticleDisable font antialiasing in QtQuick Text element
You could probably do a similar approach even simpler by using QQuickPaintedItem or even just a Canvas item in QML. While it would technically work, I don’t think I would recommend it as you lose all...
View ArticleTableView & Dynamic columns creation
Thanks for your hints. I would like to comment that I modified the onCompleted() method as follows and seems to work but I do not like to use an additional empty ListModel as a buffer. ListModel {...
View ArticleThe deploy version of my app doesn't work
Hi everyone! I have a problem with create deploy version of my application using ‘macdeployqt’ tool. If I compile my application without this tool my application is run correct. But If I call command:...
View Articlewheel not work for ScrollView that lies in another ScrollView
Thanks! Hope it be fixed soon.
View Articlecan qml signal parameter MouseEvent be mapped to C++ class?
I’ve a qml signal with MouseEvent as parameter, for example, ‘clicked(var mouse)‘,and mouse is passed from MouseArea::onClicked(MouseEvent mouse). I tried to connect this signal to some slot in c++...
View Articlecan qml signal parameter MouseEvent be mapped to C++ class?
Hi, MouseEvent from QML is QQuickMouseEvent, not QMouseEvent. It’s a private class though, and I’m not sure if it’s meant to be used in C++. What are you trying to do?
View Articlecan qml signal parameter MouseEvent be mapped to C++ class?
I don’t think that will work if you use a custom event class. Why not use the arguments you need from the mouse event and only pass those to the c++ slot? e.g. only the position x/y as qreal or...
View ArticleThe deploy version of my app doesn't work
Hi everyone! At last I found the solution of my problem: macdeployqt <your_app_name>.app -verbose=1 -qmldir=../../<your_app_src_folder>/qml/...
View Articlewebcam background and a 3d object in foreground
Hi, thanks for replay, but got it working already. QML video is not good for me, because I’m working on augumented reality project and I have to use opencv for pre-processing the video. Implementation...
View Article[SOLVED] Connect QML and C++ via Signals and Slots (QML to C++ and C++ to QML)
Dont forget to add disconnect
View Article