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

Getting keyboard focus with TabView

I’m trying to get the keyboard focus inside a tab. What am I doing wrong? import QtQuick 2.2 import QtQuick.Controls 1.1   ApplicationWindow {     id: main  ...

View Article


Getting keyboard focus with TabView

I managed to get activeFocus by using forceActiveFocus().

View Article


Reparent an item to an another from an other file

You can use: property alias someName: someItem I created a quick example based on your code main.qml import QtQuick 2.1 import QtQuick.Controls 1.1   Rectangle{     id:...

View Article

Style TextField of editable Combobox

AFAIK there isn’t. You could ask on the mailinglists [lists.qt-project.org] Qt developers hang out there. This forum is more user oriented.

View Article

The Listmodel is not efficient enough

Can you elaborate on your use case? Some code on how you are using the ListModel? If you give more information, it’s easier for us to help you.

View Article


Animated FastBlur causes Qt Quick application to crash on exit

Hello. I have a problem with animated ShaderEffect, FastBlur. When application exits after playing animation it crashes with following statement: “Error – RtlWerpReportException failed with status code...

View Article

QML Designer Custom Properties

https://bugreports.qt-project.org/browse/QTCREATORBUG-12100

View Article

QML Designer Custom Properties

Hello stevenceuppens, currently i am using custom designer templates for that. I will write you a tutorial on how to accomplish that in a few days because i have no time at the moment. You have to...

View Article


The Listmodel is not efficient enough

I need a list with such feature 1. The data background should be dynamic increase from from the bottom 2. The items in view should be grouped by category 3. The group title item could be...

View Article


QML plugin for QtFoum

Hi everyone! At last I’ve finished my plugin for Qt Forum. Now you can use it in you QML application. The plugin has a few methods: 1. Read all threads from all category. 2. Create a new topic and...

View Article

Animated FastBlur causes Qt Quick application to crash on exit

So it was a bug after all. Thanks for reporting. Hope it will be resolved in Qt 5.3.

View Article

[Solved] Reparent an item to an another from an other file

Thanks you very much. It’s works. I didn’t know that we can use alias with items.

View Article

QML plugin for QtFoum

Hi, good idea. :) Is there an official API or did you just parse the HTML page? I asked support team and they told to me, they don’t have API for forum. So I parse HTML to get all topic and posts. Also...

View Article


Define Object Types using QML from C++?

How can I register/define an object type from a string of QML in C++ not from JavaScript?

View Article

QML Combobox elements

Hi , I have taken one Combobox in Qml file . NOw i want to fill the combobox elements from Cpp file . can any one help me to do this . Thank you..

View Article


Images getting blurred inside GridLayout(Solved)

**Hi, I have used some images in a QML Gridlayout. I have seen that the images got distorted when i resized the whole application, below is the source code for adding the image “heading1.png” in the...

View Article

QML Combobox elements

this link [stackoverflow.com] will be helpfull wit a nice example.

View Article


Define Object Types using QML from C++?

QQmlEngine engine; QQmlComponent component(&engine); component.setData("import QtQuick 2.0\nText { text: \"Hello world!\" }", QUrl()); QQuickItem *item =...

View Article

Images getting blurred inside GridLayout(Solved)

you’re welcome happy coding

View Article

Drag Item from list clipping problem and drag and drop inside ScrollView

Hello guys I need some help with Drag ‘n’ Drop in qml. I have a ScrollView which hold a grid of users an assigned packages. I have to implement drag and drop functionality so that packages can be drag...

View Article
Browsing all 4972 articles
Browse latest View live