QML Scrolling Digits: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Snippets]] | [[Category:Snippets]] | ||
[[Category:HowTo]] | |||
[[Category:Developing_with_Qt::Qt Quick]] | |||
[[Category:Developing_with_Qt::Qt Quick::QML]] | |||
'''English''' [[QML_Scrolling_Digits_Bulgarian|Български]] | '''English''' [[QML_Scrolling_Digits_Bulgarian|Български]] | ||
[toc align_right= | [toc align_right="yes" depth="3"] | ||
= How to create scrolling digits component = | = How to create scrolling digits component = | ||
Line 17: | Line 20: | ||
=== Digit.qml === | === Digit.qml === | ||
<code> | <code> | ||
import QtQuick 1.1 | |||
Rectangle { | Rectangle { | ||
id: digitItem | |||
width: size | |||
height: size | |||
clip: true | clip: true | ||
gradient: Gradient { | gradient: Gradient { | ||
GradientStop { | |||
position: 0.0 | |||
color: "black" | |||
} | |||
GradientStop { | GradientStop { | ||
position: 0.5 | |||
color: "#222222" | |||
} | |||
GradientStop { | GradientStop { | ||
position: 1.0 | |||
color: "black" | |||
} | |||
} | |||
border.color: | border.color: "black" | ||
border.width: 1 | |||
property int digit: 0 | property int digit: 0 | ||
property int size: 20 | |||
onDigitChanged: { digitPath.currentIndex = digit; } | onDigitChanged: { digitPath.currentIndex = digit; } | ||
PathView { | PathView { | ||
id: digitPath | |||
width: digitItem.size | width: digitItem.size | ||
height: digitItem.size * 10 | |||
interactive: false | interactive: false | ||
Line 45: | Line 67: | ||
model: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ] | model: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ] | ||
delegate: Text { | delegate: Text { | ||
width: digitItem.size | |||
height: digitItem.size | |||
text: modelData; | text: modelData; | ||
color: | color: "white"; | ||
horizontalAlignment: Text.AlignHCenter; | horizontalAlignment: Text.AlignHCenter; | ||
verticalAlignment: Text.AlignVCenter; | |||
font.pointSize: digitItem.size-4; | font.pointSize: digitItem.size-4; | ||
} | |||
preferredHighlightBegin: 0.5 | preferredHighlightBegin: 0.5 | ||
preferredHighlightEnd: 0.5 | |||
path: Path { | path: Path { | ||
startX: digitPath.width / 2 | |||
startY: 0 | |||
PathLine { x: digitPath.width / 2; y: digitPath.height } | PathLine { x: digitPath.width / 2; y: digitPath.height } | ||
} | |||
} | |||
} | |||
</code> | |||
The component is just a ''Rectangle'' with gradient. In its center we place a ''PathView'' and set clipping to true, so only the selected digit will be visible. | The component is just a ''Rectangle'' with gradient. In its center we place a ''PathView'' and set clipping to true, so only the selected digit will be visible. | ||
Line 67: | Line 100: | ||
=== ScrollingDigits.qml === | === ScrollingDigits.qml === | ||
<code> | <code> | ||
import QtQuick 1.1 | |||
Row { | Row { | ||
id: scrollingDigits | |||
property int number: 0 | property int number: 0 | ||
property int positions: 5 | |||
Repeater { | Repeater { | ||
id: rep | |||
model: scrollingDigits.positions | model: scrollingDigits.positions | ||
Digit { | Digit { | ||
} | |||
} | |||
onNumberChanged: { | onNumberChanged: { | ||
Line 83: | Line 122: | ||
var tmp = number | var tmp = number | ||
for( var i = 0; i | for( var i = 0; i < positions; ++i ) { | ||
rep.itemAt( positions - i - 1).digit = tmp % 10 | |||
tmp = Math.floor( tmp / 10 ) | |||
} | |||
} | |||
} | |||
</code> | |||
We add two properties to ''Row'': '''number''' and '''positions''' . '''number''' contains the number we want to display and '''positions''' is the number of digits we want. | We add two properties to ''Row'': '''number''' and '''positions''' . '''number''' contains the number we want to display and '''positions''' is the number of digits we want. | ||
Line 91: | Line 136: | ||
=== main.qml === | === main.qml === | ||
<code> | <code> | ||
import QtQuick 1.1 | |||
Rectangle | Rectangle | ||
{ | |||
width: 400 | |||
height: 400 | |||
color: | color: "gray" | ||
ScrollingDigits { | ScrollingDigits { | ||
anchors.centerIn: parent | |||
positions: 4 | positions: 4 | ||
NumberAnimation on number { | NumberAnimation on number { | ||
from: 15; to: 100 | |||
duration: 50000 | |||
} | |||
} | |||
} | |||
</code> |
Revision as of 10:55, 25 February 2015
English Български
[toc align_right="yes" depth="3"]
How to create scrolling digits component
Here is one way to easily create a scrolling digits component.
[YouTubeID:KLE4FdGc12U]
Code
First we create a component for digits:
Digit.qml
import QtQuick 1.1
Rectangle {
id: digitItem
width: size
height: size
clip: true
gradient: Gradient {
GradientStop {
position: 0.0
color: "black"
}
GradientStop {
position: 0.5
color: "#222222"
}
GradientStop {
position: 1.0
color: "black"
}
}
border.color: "black"
border.width: 1
property int digit: 0
property int size: 20
onDigitChanged: { digitPath.currentIndex = digit; }
PathView {
id: digitPath
width: digitItem.size
height: digitItem.size * 10
interactive: false
anchors.centerIn: parent
model: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ]
delegate: Text {
width: digitItem.size
height: digitItem.size
text: modelData;
color: "white";
horizontalAlignment: Text.AlignHCenter;
verticalAlignment: Text.AlignVCenter;
font.pointSize: digitItem.size-4;
}
preferredHighlightBegin: 0.5
preferredHighlightEnd: 0.5
path: Path {
startX: digitPath.width / 2
startY: 0
PathLine { x: digitPath.width / 2; y: digitPath.height }
}
}
}
The component is just a Rectangle with gradient. In its center we place a PathView and set clipping to true, so only the selected digit will be visible.
Than we create the ScrollingDigits component:
ScrollingDigits.qml
import QtQuick 1.1
Row {
id: scrollingDigits
property int number: 0
property int positions: 5
Repeater {
id: rep
model: scrollingDigits.positions
Digit {
}
}
onNumberChanged: {
var tmp = number
for( var i = 0; i < positions; ++i ) {
rep.itemAt( positions - i - 1).digit = tmp % 10
tmp = Math.floor( tmp / 10 )
}
}
}
We add two properties to Row: number and positions . number contains the number we want to display and positions is the number of digits we want.
Example
main.qml
import QtQuick 1.1
Rectangle
{
width: 400
height: 400
color: "gray"
ScrollingDigits {
anchors.centerIn: parent
positions: 4
NumberAnimation on number {
from: 15; to: 100
duration: 50000
}
}
}