Multi touch qml list view and path view
Yes, sorry I should have been clearer. Thats exactly what I want to be able to do.
View ArticlePrivate properties in QML
It seems like all instanciated objects in QML inherits all properties from the object it has been instanciated from. What if you want a property in a parent that should not be accessible from a child?...
View ArticleMulti touch qml list view and path view
Sorry but i’m confused now. Can you post an example showing what you are trying to achieve ?
View Articlebest way to delegate through sqlite data for qml list view
Hey, I am searching for a simple way to get data from sqlite and put it in my list view. solutions i found so far is to include a model from c++ or use javascript to get the data. when i use the...
View Articlebest way to delegate through sqlite data for qml list view
Hi, This [stackoverflow.com] might help you
View ArticlePrivate properties in QML
I’m not sure what the view being referred to is. Is this an observed or a speculative problem? A property in a child will hide property with the same name in the parent. main.qml import QtQuick 2.2...
View ArticleQML file from extension plugin ->"Unknown component"
Hi all, I still manage to build properly a custom QML lib, so I built an extension plugin. Everything works fine except…code completion within QtCreator. But it works during execution. My custom QML...
View ArticleHow to define a custom group property?
This page in the documentation http://qt-project.org/doc/qt-5/qtqml-syntax-objectattributes.html explains how to instantiate group properties (e.g. anchors{…}). It is silently about how to create your...
View ArticleDrag and Drop in separate windows
I’m trying to do drag and drop between different windows. Code drag the same as in еxample externaldraganddrop. Problem: If after dragging one element from window to window to try to drag the other is...
View ArticleQML file from extension plugin ->"Unknown component"
Well well well… It works…partially :p Firstly, I got a…warning (in french) : “The QML module contains some C++ modules, reading type informations…”. So, GridMenu is recognized by the code model, but if...
View ArticleA page Loding a Listview that has a C++ binding
Hello all, I have a question of how to load a qml Listview that has a C++ binding. any idea of the concepts to use ? Thanks in advances
View ArticleDrag and Drop in separate windows
Hi, It’s not really clear. Could you show an example of what is happening ?
View Article[Solved] best way to delegate through sqlite data for qml list view
I realized it just some seconds ago. thanks anyways. here is my current implementation: #ifndef SQLQUERYMODEL_H #define SQLQUERYMODEL_H #include <QtSql> #include...
View ArticlePrivate properties in QML
I agree that enforcing a cleaner interface would be nice. As is, property use takes a little more discipline
View ArticleQtAV: how to import QtAV 1.3 and add new CODEC (e.g H.265) to QtAV
Hi, You should rather contact the author of this library directly, QtAV is not part of the Qt project but uses Qt.
View ArticleA page Loding a Listview that has a C++ binding
This is not the most important. Because I am using simple qml to c++ binding for the listview. The question is : Is the call source : "mail.qml" the right way to call the...
View ArticleAndroid/ios image picker
Hi, thank you so this code should work under Qt…and for android Do you know something or not? I didn’t see any plan for this feature and it is very strange such lack in a mobile sdk!
View ArticleTextArea auto new line problem
Hi, Does it happen if you put some space characters? If don’t, it happens because there is no way to know when to break a word or a number. So, Qt start a new line just when find a space character. []‘s
View ArticleCreate Qt Quick Controls fully programmatically?
Hi guy’s is it possible to create qt quick controls without using QML files? Therefore fully programmatically by Qt C++ Code?
View Article