2014-05-28 16:28:12 +02:00
|
|
|
/*
|
2020-08-13 21:08:54 +02:00
|
|
|
SPDX-FileCopyrightText: 2014 David Edmundson <davidedmundson@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2014-05-28 16:28:12 +02:00
|
|
|
|
2014-05-28 15:26:48 +02:00
|
|
|
import QtQuick 2.2
|
|
|
|
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "white"
|
|
|
|
width: 600
|
|
|
|
height: 800
|
|
|
|
|
|
|
|
Column {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
spacing: 4
|
|
|
|
|
|
|
|
PlasmaCore.ToolTipArea {
|
|
|
|
width: 300
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
mainText: "This is some really really really really long text that should be truncated"
|
|
|
|
subText: "subtext"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "red"
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.fill: parent
|
|
|
|
text: "long tooltip"
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaCore.ToolTipArea {
|
|
|
|
width: 300
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
mainText: "A"
|
|
|
|
subText: "B"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "red"
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.fill: parent
|
|
|
|
text: "short tooltip"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaCore.ToolTipArea {
|
|
|
|
width: 300
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
mainText: "A"
|
|
|
|
subText: "Lorem ipsum dolor sit amet, consectetur adipiscing spaghetti italiano random cheesecake blah blah"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "red"
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.fill: parent
|
|
|
|
text: "long subtext"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-29 07:52:04 +02:00
|
|
|
PlasmaCore.ToolTipArea {
|
|
|
|
width: 300
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
active: false
|
|
|
|
|
|
|
|
mainText: "A"
|
|
|
|
subText: "B"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "red"
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.fill: parent
|
|
|
|
text: "tooltip exists but inactive"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-25 11:23:40 +01:00
|
|
|
PlasmaCore.ToolTipArea {
|
|
|
|
width: 300
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
icon: "document-edit"
|
|
|
|
mainText: "A title"
|
|
|
|
subText: "A subtext"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "red"
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.fill: parent
|
|
|
|
text: "with icon"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaCore.ToolTipArea {
|
|
|
|
width: 300
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
image: "/usr/share/icons/oxygen/128x128/devices/multimedia-player.png"
|
|
|
|
mainText: "A title"
|
|
|
|
subText: "A subtext"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "red"
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.fill: parent
|
|
|
|
text: "with image"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-05 15:09:29 +01:00
|
|
|
PlasmaCore.ToolTipArea {
|
|
|
|
width: 300
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
icon: "kde"
|
|
|
|
mainText: "Notifications"
|
|
|
|
subText: "Display notifications and jobs"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "red"
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
anchors.fill: parent
|
|
|
|
text: "Notification applet tooltip"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-28 15:26:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|