Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Browsing all 4972 articles
Browse latest View live

Connect To Remote Webservice using Soap

Hi and welcome to devnet, if ( (sslCertificateFile.open(QIODevice::ReadOnly)) &&        ...

View Article


QML-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 Article


Expanding 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 Article

QML 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 Article

Flickable 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 Article


Expanding 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 Article

QML Mouse onReleased Happening before onClicked(Solved)

Ok, thank you all, I will do it.

View Article

Flickable onMouseXChanged

Just add MouseArea in it like you add in others. Flickable {    MouseArea {    } }

View Article


qml 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 Article


How 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 Article

Back 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 Article

Import 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 Article

Get application binary path using QML

How can I get application binary path using QML? Thanks.

View Article


QT 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 Article

Multi 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 Article


Get 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 Article

Alter 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 Article


qml 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 Article

Tips 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 Article

Alter property from component via javascript

Hi and Welcome, Can you show some of your code ? What have you tried ?

View Article
Browsing all 4972 articles
Browse latest View live