I have a crash with ListView
Hi everyone! Today I’ve tried to load new QtCreator from master [download.qt-project.org] and get the same crash after load QtCreator. The full crash log you can find here [dshav.com]. I’ve tried load...
View ArticleHow to detect Menu closed or dismissal?
Haven’t found any resolution yet. I am assuming that this might just be a bug with the new Qt 5.3 (at least on Windows); another person on the #qt-quick IRC channel had the same assumption. So logged a...
View ArticleThe new MenuStyle in Qt 5.3 doesn't show sub menu indicator Image
Hi, I’m trying to apply custom style to the Menu [qt-project.org] object, with the new MenuStyle [qt-project.org]. The “checkmarkIndicator” shows up (although, the indentation and layout seems...
View Article[SOLVED] Pagestack alternative for Windows/Linux program : Menu navigation...
Hi, I am designing a large fullscreen touch application for windows/linux, and I’m looking for an elegant solution : I have a main ‘front screen’ with a top information bar and a bottom button bar I...
View ArticleHow to pass JS function to a ListModel
Hi, i want to append objects to a ListModel. In the delegate there is a MouseArea.onClicked handle. This handle should call a function that I want to pass to the model. I tried to pass it to an object...
View ArticleThe new MenuStyle in Qt 5.3 doesn't show sub menu indicator Image
Haven’t found any response / solution yet; reported the following bug so that I don’t forget later on: https://bugreports.qt-project.org/browse/QTBUG-39758
View ArticleBinding C++ Class to QML to create dynamic ListViews, NoGo :-(
——updated dynamic part to at least compile, updated code and download ——- Hello ! (Using Qt 5.3) I tried to create a compact sample, but its still too big to post all the files here separately. Here is...
View ArticleBinding C++ Class to QML to create dynamic ListViews, NoGo :-(
Ooops: IF you dare to follow the uploaded link and run my sample you can see one more glitch. It displays 2 Windows, one QQQuickWIndow and a Widget. In the Widget i can change the indexes as well as in...
View Article[SOLVED] Pagestack alternative for Windows/Linux program : Menu navigation...
OK, stackview seems to work. I can load qml frames onto the stack. I now include a button bar in each frame, this has all context information. to close a frame simply stackview.pop(). This is what i...
View Article[SOLVED]using XMLHttpRequest from imported javascript file produces...
This might be obvious to Javascript programmers, but this is a problem for fresh JavaScript programmers. The code opens txt file(size is 2MB, but that doesn’t matter – might be even bigger – and can be...
View ArticleScreen orientation QML ApplicationWindow
Hi, is it possible to change orientation on ApplicationWindow? I’m using qml+qt in windows
View ArticleQt Quick GridView variable cellWidth depending on Model is not working
My model is called ContactModel.qml with this code: import QtQuick 2.2 ListModel { ...
View Article[SOLVED]using XMLHttpRequest from imported javascript file produces...
Ok, it seems, that suggestion by SGaist about installing OpenSSL was a solution(since Qt Creator in Windows supports only 32-bit projects, I installed 32-bit OpenSSL version), but I would like to know...
View ArticlePinch and Zoom Camera object in Qml
Hi, Have you tried using pincharea [qt-project.org] and passing your camera obj to pinch.target [qt-project.org] property ? To mention I have not used it personally.
View ArticleComponent in pure QML or C++ : What is the fastest rendering solution?
Eventually pure QML ends up invoking code written in C++, perhaps with GLSL and assembly language thrown in. You’ll never beat going directly to the source with added layers of indirection. Whether the...
View Article[solved]QQmlApplicationEngine: Moving from 5.2 to 5.3
Nice, thanks for thorough explanation, it also helped me learn something :D
View ArticleReleasing in QObjectList-based model
Hello, In document “Using C++ Models with Qt Quick Views” I’ve found description of an QObjectList-based model, which mostly looks cool for easy usage when you need to provide some data into QML,...
View ArticleScreen orientation QML ApplicationWindow
I am using this item as container to force a portrait on a landscape OS. import QtQuick 2.0 Item { anchors.left: parent.left; anchors.top:...
View ArticleReleasing in QObjectList-based model
If the objects are needed for the whole duration of the execution, then no parent is strictly needed: the memory will be cleaned by the operating system after you close the application. It would be...
View Article