Connect To Remote Webservice using Soap
Hi and welcome to devnet, if ( (sslCertificateFile.open(QIODevice::ReadOnly)) && ...
View ArticleQML-Designer and external Components
Did you try QML2_IMPORT_PATH in environment? Not QML_IMPORT_PATH. For the pro file, try full path for QML_IMPORT_PATH first, instead of using MW_ROOT_PATH. Eg: QML_IMPORT_PATH +=...
View ArticleExpanding the Window when clicked
I’m trying to figure out how to get the window to expand when I click on it. If some one can point me in the right direction as far documentation goes it would be greatly appreciated. Thanks
View ArticleQML Mouse onReleased Happening before onClicked(Solved)
Below is my code, what I want to do is change color of button while clicking and releasing button. But it seems that onReleased Happening before onClicked when I print to console. MouseArea{ ...
View ArticleFlickable onMouseXChanged
How can I catch this event in a flickable item? I can’t find a method to get access to the flickables mousearea item
View ArticleExpanding the Window when clicked
Well i see multiple issues here, 1. The handler is onDoubleClicked and not doubleClicked so change it. 2. Since you want to change the height of Rectangle you must refer to it in MouseArea using the id...
View ArticleQML Mouse onReleased Happening before onClicked(Solved)
Ok, thank you all, I will do it.
View ArticleFlickable onMouseXChanged
Just add MouseArea in it like you add in others. Flickable { MouseArea { } }
View Articleqml sandboxing of components
Hi, I am new to Qt/QML. I was wondering if there is a way to sandbox qml components that are loaded from external qml files (either using Loader or javascript – createComponent/createObject) in the...
View ArticleHow to surpress QML plugins to be built statically?
Currently my problem is somewhat the same as the following bug report: https://bugreports.qt-project.org/browse/QTBUG-39462 Now, I have to work around it by explicitly setting code for it. #include...
View ArticleBack button functionality and multiple times statement execution in...
Hi, I am developing an app which is for now mainly for Android. There are 1-2 points that I want to discuss, which are as follows: 1. Back button functionality in app For this I have searched and tried...
View ArticleImport data (XML file) from URL
Maybe the same as above says. Download html file via QNetworkAccessManager, and deal it using C++ string functions yourself, then bring it to QML.
View ArticleGet application binary path using QML
How can I get application binary path using QML? Thanks.
View ArticleQT Creator Mouse
i want to make a video in my gui wth a mouse click invisible. i dont know how to integrate this in my code: void Live_Window::mousePressEvent ( QMouseEvent * event ) { ...
View ArticleMulti touch qml list view and path view
Hi All, I have wrote a simple horizontal qml list view and I have created two instances of the component side by side. I want to be able to interact with each listview at the same time. it seems list...
View ArticleGet application binary path using QML
Hi, AFAIK if you are not loading the QML file from qrc then you can use Qt.resolvedUrl(”.”) directly to get the current path but if loading from qrc then you will need to get it from C++ using...
View ArticleAlter property from component via javascript
Hi there I try to change the location from several comonents via code, but it always shows me TypeError (its the js type number). Any tips how to do it correct? Thanks
View Articleqml sandboxing of components
Thanks. Actually what i meant to ask was – is there a way to prevent the loaded component/object from accessing the parent object or its siblings?
View ArticleTips for a good QML library
Hello :) I wish to develop some QML libs. For each component, I describe its UI with a .qml file and the logic with a C++ class. I use qmlRegisterType. These components are part of a QML extension...
View ArticleAlter property from component via javascript
Hi and Welcome, Can you show some of your code ? What have you tried ?
View Article