Add two test images, use them for tooltips

This commit is contained in:
Sebastian Kügler 2013-04-04 05:01:57 +02:00
parent c739f3ae58
commit c2b868fa56
3 changed files with 43 additions and 12 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -89,19 +89,50 @@ PlasmaComponents.Page {
text: "ToolTip" text: "ToolTip"
} }
Row {
spacing: _s
PlasmaCore.IconItem { PlasmaCore.IconItem {
id: akonadiIcon
source: "akonadi" source: "akonadi"
width: parent.width width: height
height: _h*2 height: _h*2
anchors.horizontalCenter: parent.horizontalCenter //anchors.horizontalCenter: parent.horizontalCenter
// Rectangle { color: "orange"; opacity: 0.3; anchors.fill: parent; }
PlasmaCore.ToolTip { PlasmaCore.ToolTip {
anchors.fill: parent anchors.fill: parent
mainText: "Fish sighted" visualParent: akonadiIcon
iconSource: "klipper"
mainText: "Fish sighted in the wild, in the wild, a fish was seen."
subText: "A mean-looking grouper swam by." subText: "A mean-looking grouper swam by."
} }
} }
Image {
height: _h*2
width: height
fillMode: Image.PreserveAspectFit
source: "../images/surfboard.jpg"
PlasmaCore.ToolTip {
anchors.fill: parent
// visualParent: akonadiIcon
image: parent.source
mainText: "Surfboard"
subText: "A surfboard on the beach. <br />The photo shows the Waal river's north beach, \
across the water from Nijmegen, Netherlands. It was taken during the summer festivals a few years back."
}
}
Image {
height: _h*2
width: height
fillMode: Image.PreserveAspectFit
source: "../images/bridge.jpg"
PlasmaCore.ToolTip {
anchors.fill: parent
// visualParent: akonadiIcon
image: parent.source
mainText: "Bridge"
subText: "Waalbrug."
}
}
}
} }
} }