tutorial on Qt quick designer
There is also a video just about using Qt Quick Desgner, which explains some of the more advanced features.
View ArticleQQuickView not active before being clicked once
Yes, that it is. Quite logical, if a widow is maximized, it must have focus.
View Articleclearing FrameBuffer
Hello i draw on a FBO with QPainter in an animation loop. The problem is i need to clear the FBO in every frame but this doesn’t work. The only way to get it work is to use a background color like...
View ArticleLoad new View
Thanks for your replay, my start view (timeline.qml) is always on top so that my second view, if I push the button is behind my start view. Is there any propertie for the loader that the first view...
View ArticleUnable to change parent and child window Z order after calling loader
I think what happens is once you reload, the main window becomes active. Then calling raise and lower is raising and lower the main window (and its child) relative to the other windows in the OS. I...
View ArticleMVVM / MVP and QML
Hi, I got the exact same feeling that Qt/QML and .NET/WPF cover the same pattern and that MVVM could be implemented in Qt/QML as well. I found an example on the web, that tries to give an example of...
View ArticleQQuickView not active before being clicked once
No, raise() does not help. I´ve tried lots of things on QQuickItem , setFocus, forceActiveFocus, setAcceptedMouseButtons…and even sending MouseButtonPress/Release events. But nothing works… Thans for...
View Article[SOLVED] clearing FrameBuffer
OK, i solved the problem. The magical part is this: this->_fbo->bind(); glClear(GL_COLOR_BUFFER_BIT); this->_fbo->release();
View Article[SOLVED]Does XMLHttpRequest read local files, that are not declared in...
I see. That’s not exactly what I wanted, as it is not going to work starting program with Component.onCompleted: Apparently XMLHttpRequest can read local files directly when they are included in...
View ArticleLoad new View
Thanks, it works ;-) the z values did the trick! ApplicationWindow { id: applicationWindow1 visible: true width: 1200 ...
View ArticleCan't use keyboard commands in QtQuick.Controls.Menubar on Windows 8.1
I tested it in other computer with windows 8.1 and the error remains. This error also happens with the standard qtquick application that QtCreator generates when we create a new project. I can’t use...
View ArticleHow to delete qml object from Qt slot?
Hi, My application has mixed with QML & Qt. Launching heap based QQuickView object from Qt Slot. How to gracefully delete the QQuickView object when use click on close button (‘X’ button next...
View ArticleHow to delete qml object from Qt slot?
Hi Pass the parent object to QQuickView and it will be deleted on quit.
View ArticleHow to control refreshing qml view?
Ok. You’re Welcome :) Please mark the post as solved.
View ArticleDelete Images from Stored Path in qml
How do i delete the images stored on drive from qml?Is there a way to do it or should we pass the source to Qt and remove the file? My need is i am capturing an image from Qml using camera and it gets...
View Article[SOLVED] Prevent all mouse events from propagating to items below
Hello! Just getting properly into Qt Quick and QML now, the initial learning curve pain is subsiding. Alas, I have a question I thought I’d find an answer to with the power of Google, but couldn’t find...
View ArticleDelete Images from Stored Path in qml
Well, atleast from what all i have explored i found no way.
View Article[SOLVED] Prevent all mouse events from propagating to items below
I like it when a solution is that simple. Thanks a lot!
View ArticleObject rotating twice on Transition
Hi, I’ve been having problems with animating an object’s rotation. I have a component which has a State with a rotation change using a random value inside a PropertyChange and whenever I try to use a...
View Article