QML (Qt Meta-Object Language) is a declarative language designed to describe the user interface of a program.
0
votes
0answers
16 views
QML, how to access sub-meta object
There are Widget.qml, Button.qml, Label.qml..
In Widget.qml, there is a Button meta, and In Button.qml, there is Label mata...
How can i access Label by Button in Widget...
0
votes
0answers
11 views
Cursor shape changed even over an overlapping rectangle in QML
With the following code, the green rectangle entirely overlaps the green rectangle, but when the mouse is over the (hidden) green rectangle, my cursor shape is still changed.
Any idea to prevent this ...
0
votes
1answer
19 views
Share equally the horizontal space in a QML Row
I need to share equally the horizontal space between all "buttons" in my Row.
I use this code with a Repeater.
Component {
id: buttonComponent
Rectangle {
height: buttonRow.height
...
-1
votes
0answers
58 views
Poor performance with Qt5 on a 'powerful' platform
I am trying to run some example codes using Qt 5.0.2 :
Basic OpenGl examples (eg. Boxes, Framebuffer object 2 example, overpainting etc)
With all these I am getting very poor performance and CPU ...
0
votes
1answer
18 views
Loading an Image into StandardListItem inside ListView BB10
I want to display a list of contacts inside a StandardListItem. The data is retrieved from sql with QArrayBytes representing the Image.
The StandardListItem accepts a title, status, description and ...
0
votes
1answer
17 views
Error when convert datetime to milliseconds in qml blackberry
I got an error while i convert datetime to millisecond in qml.
I use javascript function but doesn't work.
here my code:
var data = new Date(Date.parse("2012-01-01", "yyyy-mm-dd")).getTime();
but ...
0
votes
1answer
18 views
QML - Control border width and color on any one side of Rectangle element
Currently i had a requirement of drawing a delegate rectangle with the help of ListView control. I was able to draw a series of rectangle either horizontal or vertical within the list view but the ...
0
votes
2answers
35 views
Getting focus/activeFocus status from QML ListView
I've a two column layout with a ListView in the left column. With the Left/Right Keys I can change focus between the two parts of the app.
The active focus of the left column is delegated to the ...
0
votes
2answers
26 views
qml takes mouse click but not taking touch events
I have a Qwidget inside of which, I have multiple children in the form of QmlApplicationViewer objects, each pointing to a different qml file.
Problem is, when I use mouse, all the qml files take ...
0
votes
1answer
21 views
How to float an image right so it stays right when window is resized?
When I put an image in a rectangle, it's position is top-left. How can I anchor it top-right in a manner where it will remain there upon resizing the window?
import QtQuick 2.0
Rectangle {
id: ...
0
votes
1answer
41 views
Get signal from when media has ended Qt.Multimedia and QML
I'm creating a music app using only QML and it's going really well and I'm now working on the track queue. I'm using Qt.Multimedia to play the tracks and there is a property that could be used to play ...
0
votes
1answer
27 views
How to set a image source outside Component
I have a image showing up in a Dialog in my QML app, and I want to be able to change that image later on using onClicked, which I pass by a function to check if the variable I want in the new source ...
0
votes
1answer
35 views
Error: Cannot assign QObject* to QQuickItem*
I get this error when I try to show either a dialog or a popup in a tab. I don't understand why. In other apps I've made, it works, but I cannot see the difference between them.
What am I doing ...
1
vote
1answer
23 views
Dictionary in QML
I have a python code that sending a dictionary to my QML. I want to know how could I have keys of dictionary and length of dictionary in QML?
0
votes
2answers
28 views
Get meta data from delegated files using QML
I'm creating a music player for Ubuntu Touch in QML and I have some things I would appreciate some help with since I'm new to QML.
I have a list of tracks from a directory, but I want to show the ...
0
votes
1answer
23 views
Recursevly go trough delegated maps in FolderListModel (QML)
I'm creating a music player for Ubuntu Touch in QML and I have some things I would appreciate some help with since I'm new to QML.
The app are able to play tracks listed in the selected directory, ...
0
votes
1answer
15 views
does the first element in a qml listview behave differently?
I'm currently facing a strange problem: I'm showing images in a listview. As a nice additional thing I want to show the exif data of the images also.
Therefore I came up with the following ...
1
vote
1answer
33 views
Get $HOME and/or username in QML
I need to know how to get the user name and/or home directory of the users. I've googled around for a while but can only find the variables for C++ or BASH.
How do I get the user name or home ...
1
vote
0answers
28 views
Bitmap fonts in qt QML
I've a png bitmap with many "glyphs" drawn one after another and a text file that relates an ascii number with a position and size in this bitmap. The glyphs are hand-drawn using different colors and ...
0
votes
1answer
23 views
wait until Sheet is closed in blackberry 10
I am currently working a bb10 app.
I have QML document main.qml. It contains a button.
On the click of the button I am calling a function HandleClickEvent().
Inside HandleClickEvent() I am calling ...
0
votes
0answers
31 views
How to access ListView's current item from qml
I have an application that stores and edits notes. The list of notes is displayed in a listview like this:
Page {
id: noteList
title: i18n.tr("QNote")
visible: false
...
0
votes
2answers
46 views
Cascades NavigationPane: connect to an object signal into another qml file
I've created a blackberry application using the wizard with NavigationPane template, and added some components on the DetailsPage.qml (like a Button and a TextField).
I want to connect a slot ...
0
votes
0answers
11 views
Font's clutter when make execute for windows with py2exe
I have an application that wroten by PySide and QML.
But I make an exe for windows os my application font's don't show correctly!
my setup.py
from distutils.core import setup
import py2exe
setup(
...
0
votes
0answers
20 views
Bounds of Flickable.contentY in QML
What is the correct way of asking the bounds of Flickable.contentY? I need that for a scrollbar.
Experimentally I have discovered that
offsetY <= contentY <= offsetY + contentHeight - height
...
0
votes
1answer
25 views
QT QML: Keyboard and mouse does not work together to change the source image
I am struggling with a problem, I guess its not so difficult but I am not able to solve it. My experience with QML is very small. I will appreciate your help.
I have three radio buttons as images. ...
0
votes
1answer
55 views
PySide QML project on android
I have made an application over pyside and qml for pc and I am interested to know how I can run this on android tablet.
P.S.: My Program uses socket, threading and mongodb too.
0
votes
1answer
29 views
How to add scroll bar for an item that is larger than the screen resolution in qml?
I use QtQuick 1.1 and I have an item like this below:
Item {
id: myItem
width: 12345
height: 12345
//...
}
When I run my qml project, it doesn't show any scroll bar for this item ...
0
votes
0answers
21 views
qml animatedimage : error reading animated gif image
The programe in PC that is not issue,it display gif image correctly.
Bbut download in the arm band ,it prompt qml animatedimage : error reading animated gif image
I already add the plugins( ...
0
votes
0answers
20 views
How build and element after destroy in QML?
For example think I have element like this
Rectangle {
id: test
}
I want to destroy it then load it again(reload)
How could I do this?
0
votes
1answer
36 views
In BlackBerry 10 how can I read a QML object's property from the C++ code?
I know how to make a propertyalias in the QML
property alias workisvis: blahblah.visible
and then set a property for it using
root->setProperty(workisvis,false)
from my C++ code. But how do ...
0
votes
1answer
37 views
Connect C++ with UI button BlackBerry
. . . . . . . . .. .. . . . .
What I am doing wrong? When I press a button on UI, I want to change text in label.
.qml:
Page {
property alias lala: ...
0
votes
0answers
34 views
How do you scrolling the ListView by percentage programmatically
I want to scrolling the QML's ListView in C++. So I decided to write a function to get the position of ListView in percentage, and write another function to set the position by percentage.
I found I ...
0
votes
1answer
44 views
Cascades layout issue - can't scroll a ListView in a DockLayout
I'm trying to display an ActivityIndicator while my list data is loading. Here's my Page QML:
Page {
signal articleClicked(variant article)
id: root
titleBar: TitleBar {
title: ...
0
votes
1answer
64 views
Sort a QAbstractListModel derived model by role in QML ListView
I've created a QAbstractListModel derived model based on an underlying QHash. Since I need to use the model in QML, I cannot make use of the sorting functionality Qt widgets and views have integrated.
...
0
votes
1answer
26 views
I need to connect a ComponetA Signal to a method of another ComponentB
i need to create a ComponentC dynamically when a button of ComponentA is clicked and the ComponentC must be created in ComponentB that is not accessible through id from ComponentA.
So how is this ...
0
votes
0answers
86 views
Building QT3D on QT5.0.2 plantform windows8 64 bits
16:37:20: Running steps for project quick3d...
16:37:20: Starting: "C:\QtCommercial\QtCommercial5.0.2\5.0.2\mingw47_32\bin\qmake.exe" C:\Users\satapanapipat\Documents\qt-quick3d\quick3d.pro -r -spec ...
0
votes
0answers
39 views
get Item of QVariantList in QML
I send a QVariantList from pyside slot to my qml file
But i want to get QVariantList[0] and QVariantList[1]
(I want to get elements of it)
my qml file:
TextBox{
id: phoneNumber
...
0
votes
1answer
14 views
tried creating new project in V-play and running it but got 383 linking errors?
tried creating new project under "empty V-play project" and running it but got 383 errors.. all starting with "declspec(dllimport)"
btw I followed this guide to a T in setting up V-play if it helps..
...
0
votes
2answers
62 views
MouseArea stole QML element's mouse events
If I put a MouseArea on a QML element, then MouseArea will steal all mouse events.
Thus, TextEdit will be uneditable and unselectable.
TextEdit {
// some properties
MouseArea {
// ...
0
votes
0answers
22 views
Multiple users interacting in QtQuick2
Does anyone knows if it is possible to have two interactive Flickable items simultaneously?
In other words, I want two users interacting each with one ListView in a multi-touch screen.
It seems that ...
0
votes
1answer
39 views
Load one UI on top of another
I am Developing a BB10 app.
I have one QML file which contains a Login Button.
When user clicks on the Login Button another QML file containing the username and password textboxes and two buttons ...
0
votes
0answers
35 views
How to access Datasource JSON blackberry qml
How i access on datasource and litsview blackberry QML these json. I want view title and published date.
I have try but always fail.
this my datasource:
DataSource {
id: serviceDataSource
...
0
votes
0answers
19 views
Access qabstracttablemodel in qml [closed]
I really don't know how to use qabstracttablemodel and using it in qml.
Can anyone post me the example code of accessing qabstracttablemodel in qml?
0
votes
1answer
40 views
Make a private C++ function visible to Qml
I have been making my C++ functions callable from Qml by following the approach given in Qt documentation.
This require one of these conditions to be fulfilled :
Make the C++ function public and ...
0
votes
0answers
33 views
Logging issue due to slogger2 buffer handle not initialized
I have a list. On clicking list item I am calling function to run the corresponding test. First time I run the the CPPUNIT_ASSERT_EQUAL results are not printed but second time I click the same item it ...
0
votes
0answers
39 views
How do I paint selectable text (a.k.a Very slow TextEdit)
I use ListView and a custom delegate to display the timeline, but user can not select a piece of text and copy it.
Text {
id: statusText
color: "#333333"
text: {
if (tweetType == ...
0
votes
1answer
71 views
ListView and Data Models - Blackberry
I'm developing for the Blackberry 10.
I'm attempting to save and load a JSON data model into a listview in my app. It loads up initially via a couple lines of C++ in the app.cpp file before switching ...
0
votes
2answers
48 views
QString exchange in qml through c++
this example is supposed to read the string from TextInput and display it in another Rectangle on click of the mouse. However, it does not. Why?
//mainwindow.h
#ifndef MAINWINDOW_H
#define ...
0
votes
0answers
51 views
Simple acces of C++ object data from QML
I'm making a board game in Qt/C++ using qml. All the important game data is represented in a single class. My intention is to have the qml sheets access this one object and draw the game board ...
0
votes
2answers
292 views
{ Qt5.0.2/QML/QtQuick2.0/C++ } Example Projects that run without errors?
My setup is Qt5.0.2 MinGW 32-bit.
I am looking for { Qt5.0.2 / QML / QtQuick2.0 / C++ } code project examples (not Qt Quick 1.0) that have actual C++ classes or at least a main.cpp .
I ran ...




