Auto-reformatting rows based on number of QML Elements
As far as I know, you have no control over alignment in Flow. Maybe there is some way by – example – using attached properties, but I doubt it. You can probably achieve good results by carefully sizing...
View ArticleMaps in QtQuick (Qt 5.3)
Hi, I would like to write QtQuick application that contains among others maps. It is desktop application, it doesn’t get location from anywhere, it should draw map on area that I wants, be able to...
View Article[SOLVED] QPaintedItem : Update don't call paint()
Hi! I’m trying to do something like this tuto : http://qt-project.org/doc/qt-5/qtquick-customitems-painteditem-example.html But with an explicit use of update function in c++. update() never call...
View Article[SOLVED] Devices management in ListView
Hi all. My current task is the implementation of a software to monitor wi-fi devices. Each device is represented by a C++ object embedding the socket used to comunicate with it. The object has...
View ArticleScrollView drag event
I need to detect the frame movement and get the Y,X shifts, but I can’t find this signal and where this shifts stored
View ArticleQtQuick 2 multiple processes
Hello! thanks for the warm welcome! It’s the other way round. QWindow::fromWinId() lets the master find the window ID of the child, and take ownership of it. I see, I can’t seem to get a QWindow to be...
View Article[SOLVED] Devices management in ListView
Thanks! Love so much the Qt community full of kind and helpful people. :)
View Article[SOLVED] QSGVertexColorMaterial alpha value not working?
That makes sense. Thanks for the answer :) I confirmed what you said by switching the background color to white (so I can see a black line) and the vertex color to r=0, g=0, b=0, a=0 (invisible black)....
View ArticleGrid behavior when there are too many items?
This looks like a bug to me. If there are more items, it should clip the last item. It is odd that it starts putting the items at the top corner again.
View ArticleScrollView drag event
which frame you are talking about ? Is it the ScrollBar slider you are talking ?
View ArticleDraw texture in QQuickPaintedItem
Why use QPainter? QtQuick already has helper methods for drawing textures, no need to dive into QPainter and OpenGL code. You can see an example here: link [github.com].
View ArticleHow to choose a Qt Quick componenet set ?
Hello , I’m going to devolop an application using Qt Quick but I didn’t know what is the suitable Qt Quick component set to use : 1) Qt Quick controls 1.1 2) Qt Quick controls 1.0 3) Qt Quick 2.2 4) Qt...
View ArticleQML import path
Hi, Please excuse the newb question. I suspect it’s already been answered somewhere but I’m not really sure what to search for. I’ve followed the instructions to make and install Bacon2D [github.com]...
View ArticleCrash Simple QtQuick App
Hi Create New Project QtQuick, Run this project and crash. Compiled project but crash in run.Qt Widget App is ok. My Qt 5.3.1 with MinGW in Windows 8.1. thanks
View ArticleQML import path
Hi, I use this code: int main(int argc, char *argv[]) { Application app(argc, argv); QtQuick2ControlsApplicationViewer viewer; ...
View ArticleCrash Simple QtQuick App
Create new project : New Project -> Qt Quick Application -> Qt Quick Controls 1.1 -> Desktop Qt 5.3 MinGW 32bit QML Code : import QtQuick 2.2 import QtQuick.Controls 1.1 ...
View Article