Ktam3874/pitx software guide – Kontron KTAM3874-pITX User Manual
Page 256

KTD-S0057-I
Page 252 Linux® Programming Examples (DebianTM)
KTAM3874/pITX Software Guide
File ScrollBar.qml (header with Qt
TM
license see 'main.cpp'):
import QtQuick 1.0
Item
{
id:
container
property variant flickableArea
Rectangle
{
radius:
5
color:
"black"
opacity:
0.3
border.color:
"white"
border.width:
2
x:
0
y: flickableArea.visibleArea.yPosition * container.height
width:
parent.width
height:
flickableArea.visibleArea.heightRatio * container.height
}
states:
[
State
{
name:
"show"
when:
flickableArea.movingVertically
PropertyChanges
{
target:
container
opacity:
1
}
}
]
transitions:
[
Transition
{
from:
"*"
to:
"*"
NumberAnimation
{
target:
container
properties:
"opacity"
duration:
400
}
}
]
}