ToolButton clicked() signal is not emitted on Windows 8
I have a toolbar with custom ToolButton buttons: // main.qml ApplicationWindow { toolBar: ToolBar { RowLayout {...
View ArticleSpinBox Wheel Event
Hi, It has value [qt-project.org] property so you can use onValueChanged handler.
View ArticleThe way to go with complex animations
Hello, When developing a complex graphical application in QML what is the best approach with complex animations? Usually, when developing a new application our designer creates all the screens,...
View ArticleChange HTML Style in QML
Hi, Which HTML style are you asking for ? Can you explain with some more details ?
View Article[SOLVED] "YouTube view example" doesn't display video on OSX – known issue?...
I’ve searched the forums but didn’t see any mention of this: Running the “YouTube view example” from Qt 5.3 on OSX 10.9.3, the project loads and the youTube videos play but only the audio works – the...
View ArticleImporting files with evaluate() function
This still doesn’t work from with this code: QQmlEngine engine; QJSValue res = engine.evaluate(".import \"test.js\" as Test"); if(res.isError())...
View ArticleIs there a Qt Quick example like 40000 Chips?
There’s a Widget example called 40000 chips that shows a bunch of graphical navigation and interaction features. http://qt-project.org/doc/qt-5/qtwidgets-graphicsview-chip-example.html Is there a...
View ArticleQtQuick 2 stuttering problem.
Hello all Qt friends :) It is my first writing here, and it starts sadly with some problem. I am writing some game with my friend as a university project and from the beginning of development we...
View ArticleUnexpected behavior of operator= in Qml/JavaScript
I have defined a couple of context variables from C++, something like this: class MyClass : public QObject { Q_OBJECT Q_PROPERTY(QString name ...) }; MyClass...
View ArticleThe way to go with complex animations
Hmmm, lots of graphical elements around the number ok, but they are also animated like the numbers? Sorry can’t imagine that
View ArticleSpinBox Wheel Event
Hi, It is invoked even when the value is changed by the program, and it doesn’t have any properties to get the way the value changes (mouse wheel, table model or keyboard)
View ArticleImporting files with evaluate() function
Thanks for the pointers. The app I’m working on is heavily GPU oriented. I tried to use QML, but it doesn’t play well with OpenGL 3 or 4 right now. Supposedly this will change in Qt 5.4? I’m trying to...
View ArticleChange HTML Style in QML
div id=“container” style=“min-width: 310px; height: 400px; margin: 0 auto”>/div
View ArticleLooking at throughput in Qt Quick
You might find this interesting: http://www.sletta.org/apps/blog/show/42708211-looking-at-throughput-in-qt-quick
View ArticleQDialog not display
Try this. I don’t really understand your problem. import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Dialogs 1.2 ApplicationWindow { id:root ...
View ArticleThe way to go with complex animations
Hmm, the butterflies should be a animated sprite [qt-project.org] for the butterfly animation itself. For moving the butterflies i would use the animation elements from qt. Hope this help. Another...
View ArticleUnexpected behavior of operator= in Qml/JavaScript
Yes, it would work to specify the values one at a time, the problem is that I would like to copy all of the values from myVar2 to myVar1, which means I need to write myVar1.name = myVar2.name;...
View ArticleImport directory in QML
Hello, I’ve been reading the documentation on importing directories in QML: http://qt-project.org/doc/qt-5/qtqml-syntax-directoryimports.html and what I am trying to do is not working. I have a QML...
View ArticleQtQuick 2 stuttering problem.
Thank you for reply. When I finished reading what you have written, I started doing some tests. Unfortunately I don’t know if I’ve got ANGLE build and I found no information how to check it. But I run...
View ArticleImport directory in QML
Hello, thanks for your reply. I tried to import the directory and place an identifier or local namespace, as you explained, but it’s also not working :(
View Article