78 lines
2.6 KiB
QML
78 lines
2.6 KiB
QML
/*
|
|
SPDX-FileCopyrightText: 2018 Marco Martin <mart@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
pragma Singleton
|
|
|
|
import QtQuick 2.1
|
|
import QtQuick.Layouts 1.2
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Controls 2.15
|
|
import org.kde.kirigami 2.5 as Kirigami
|
|
|
|
Popup {
|
|
id: root
|
|
|
|
property Item controlRoot
|
|
parent: controlRoot ? controlRoot.Window.contentItem : undefined
|
|
modal: false
|
|
focus: false
|
|
closePolicy: Popup.NoAutoClose
|
|
property bool shouldBeVisible: false
|
|
|
|
x: {
|
|
if (!controlRoot || !controlRoot.Window.contentItem) {
|
|
return 0;
|
|
}
|
|
return Math.min(Math.max(0, controlRoot.mapToItem(root.parent, controlRoot.positionToRectangle(controlRoot.selectionStart).x, 0).x - root.width/2), controlRoot.Window.contentItem.width - root.width);
|
|
}
|
|
|
|
y: {
|
|
if (!controlRoot || !controlRoot.Window.contentItem) {
|
|
return 0;
|
|
}
|
|
var desiredY = controlRoot.mapToItem(root.parent, 0, controlRoot.positionToRectangle(controlRoot.selectionStart).y).y - root.height;
|
|
|
|
if (desiredY >= 0) {
|
|
return Math.min(desiredY, controlRoot.Window.contentItem.height - root.height);
|
|
} else {
|
|
return Math.min(Math.max(0, controlRoot.mapToItem(root.parent, 0, controlRoot.positionToRectangle(controlRoot.selectionEnd).y + Math.round(Kirigami.Units.gridUnit*1.5)).y), controlRoot.Window.contentItem.height - root.height);
|
|
}
|
|
}
|
|
|
|
|
|
visible: controlRoot ? shouldBeVisible && Qt.platform.os !== "android" && Kirigami.Settings.tabletMode && (controlRoot.selectedText.length > 0 || controlRoot.canPaste) : false
|
|
|
|
width: contentItem.implicitWidth + leftPadding + rightPadding
|
|
|
|
contentItem: RowLayout {
|
|
ToolButton {
|
|
focusPolicy: Qt.NoFocus
|
|
icon.name: "edit-cut"
|
|
visible: controlRoot && controlRoot.selectedText.length > 0 && (!controlRoot.hasOwnProperty("echoMode") || controlRoot.echoMode === TextInput.Normal)
|
|
onClicked: {
|
|
controlRoot.cut();
|
|
}
|
|
}
|
|
ToolButton {
|
|
focusPolicy: Qt.NoFocus
|
|
icon.name: "edit-copy"
|
|
visible: controlRoot && controlRoot.selectedText.length > 0 && (!controlRoot.hasOwnProperty("echoMode") || controlRoot.echoMode === TextInput.Normal)
|
|
onClicked: {
|
|
controlRoot.copy();
|
|
}
|
|
}
|
|
ToolButton {
|
|
focusPolicy: Qt.NoFocus
|
|
icon.name: "edit-paste"
|
|
visible: controlRoot && controlRoot.canPaste
|
|
onClicked: {
|
|
controlRoot.paste();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|