mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
c9f1a449d8
Qt6 changed the mouse scroll wheel handling for QtQuick to a type that mimics how touch pads/screens work, which most people find feels very poor. KDE fixes this by creating a custom type which re-implements the QtWidgets handling (see https://invent.kde.org/frameworks/kirigami/-/merge_requests/415). On Matrix Nico has expressed a desire not to have to deal with compiling Kirigami for Windows and Mac, which is understandable. Linux users on the other hand almost always have kirigami available in their package repos which sidesteps that particular issue. We can search for Kirigami at build time and if present define a QML context property to allow it to be used, which should fix this issue for Linux users at least. Helps with nheko-reborn/nheko#1819 (which won't be completely resolved until this is working for Windows and Mac as well). Signed-off-by: Reilly Brogan <reilly@reillybrogan.com>
281 lines
9.8 KiB
QML
281 lines
9.8 KiB
QML
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import ".."
|
|
import "../components"
|
|
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import im.nheko 1.0
|
|
|
|
ApplicationWindow {
|
|
id: win
|
|
|
|
property Room room
|
|
property ImagePackListModel packlist
|
|
property int avatarSize: Math.ceil(fontMetrics.lineSpacing * 2.3)
|
|
property SingleImagePackModel currentPack: packlist.packAt(currentPackIndex)
|
|
property int currentPackIndex: 0
|
|
readonly property int stickerDim: 128
|
|
readonly property int stickerDimPad: 128 + Nheko.paddingSmall
|
|
|
|
title: qsTr("Image pack settings")
|
|
height: 600
|
|
width: 800
|
|
color: palette.base
|
|
modality: Qt.NonModal
|
|
flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
|
|
|
|
Component {
|
|
id: packEditor
|
|
|
|
ImagePackEditorDialog {
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: packDeleteDialog
|
|
ImagePackDeleteDialog {}
|
|
}
|
|
|
|
AdaptiveLayout {
|
|
id: adaptiveView
|
|
|
|
anchors.fill: parent
|
|
singlePageMode: false
|
|
pageIndex: 0
|
|
|
|
AdaptiveLayoutElement {
|
|
id: packlistC
|
|
|
|
visible: Settings.groupView
|
|
minimumWidth: 200
|
|
collapsedWidth: 200
|
|
preferredWidth: 300
|
|
maximumWidth: 300
|
|
|
|
ListView {
|
|
model: packlist
|
|
clip: true
|
|
|
|
Loader {
|
|
source: NHEKO_USE_KIRIGAMI ? "../components/KirigamiWheelHandler.qml" : ""
|
|
}
|
|
|
|
footer: ColumnLayout {
|
|
Button {
|
|
onClicked: {
|
|
var dialog = packEditor.createObject(timelineRoot, {
|
|
"imagePack": packlist.newPack(false)
|
|
});
|
|
dialog.show();
|
|
timelineRoot.destroyOnClose(dialog);
|
|
}
|
|
Layout.preferredWidth: packlistC.width
|
|
visible: !packlist.containsAccountPack
|
|
text: qsTr("Create account pack")
|
|
}
|
|
|
|
Button {
|
|
onClicked: {
|
|
var dialog = packEditor.createObject(timelineRoot, {
|
|
"imagePack": packlist.newPack(true)
|
|
});
|
|
dialog.show();
|
|
timelineRoot.destroyOnClose(dialog);
|
|
}
|
|
Layout.preferredWidth: packlistC.width
|
|
visible: room.permissions.canChange(MtxEvent.ImagePackInRoom)
|
|
text: qsTr("New room pack")
|
|
}
|
|
|
|
}
|
|
|
|
delegate: AvatarListTile {
|
|
id: packItem
|
|
|
|
property color background: palette.window
|
|
property color importantText: palette.text
|
|
property color unimportantText: palette.buttonText
|
|
property color bubbleBackground: palette.highlight
|
|
property color bubbleText: palette.highlightedText
|
|
required property string displayName
|
|
required property bool fromAccountData
|
|
required property bool fromCurrentRoom
|
|
required property bool fromSpace
|
|
required property string statekey
|
|
|
|
title: displayName
|
|
subtitle: {
|
|
if (fromAccountData)
|
|
return qsTr("Private pack");
|
|
else if (fromCurrentRoom)
|
|
return qsTr("Pack from this room");
|
|
else if (fromSpace)
|
|
return qsTr("Pack from parent community");
|
|
else
|
|
return qsTr("Globally enabled pack");
|
|
}
|
|
selectedIndex: currentPackIndex
|
|
roomid: statekey
|
|
|
|
TapHandler {
|
|
onSingleTapped: currentPackIndex = index
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
AdaptiveLayoutElement {
|
|
id: packinfoC
|
|
|
|
Rectangle {
|
|
color: palette.window
|
|
|
|
ColumnLayout {
|
|
id: packinfo
|
|
|
|
property string packName: currentPack ? currentPack.packname : ""
|
|
property string attribution: currentPack ? currentPack.attribution : ""
|
|
property string avatarUrl: currentPack ? currentPack.avatarUrl : ""
|
|
property string statekey: currentPack ? currentPack.statekey : ""
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Nheko.paddingLarge
|
|
spacing: Nheko.paddingLarge
|
|
|
|
Avatar {
|
|
url: packinfo.avatarUrl.replace("mxc://", "image://MxcImage/")
|
|
displayName: packinfo.packName
|
|
roomid: packinfo.statekey
|
|
Layout.preferredHeight: 100
|
|
Layout.preferredWidth: 100
|
|
Layout.alignment: Qt.AlignHCenter
|
|
enabled: false
|
|
}
|
|
|
|
MatrixText {
|
|
text: packinfo.packName
|
|
font.pixelSize: Math.ceil(fontMetrics.pixelSize * 1.1)
|
|
horizontalAlignment: TextEdit.AlignHCenter
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: packinfoC.width - Nheko.paddingLarge * 2
|
|
textFormat: TextEdit.PlainText
|
|
}
|
|
|
|
MatrixText {
|
|
text: packinfo.attribution
|
|
wrapMode: TextEdit.Wrap
|
|
horizontalAlignment: TextEdit.AlignHCenter
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: packinfoC.width - Nheko.paddingLarge * 2
|
|
textFormat: TextEdit.PlainText
|
|
}
|
|
|
|
GridLayout {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
visible: currentPack && currentPack.roomid != ""
|
|
columns: 2
|
|
rowSpacing: Nheko.paddingMedium
|
|
|
|
MatrixText {
|
|
text: qsTr("Enable globally")
|
|
}
|
|
|
|
ToggleButton {
|
|
ToolTip.text: qsTr("Enables this pack to be used in all rooms")
|
|
checked: currentPack ? currentPack.isGloballyEnabled : false
|
|
onCheckedChanged: currentPack.isGloballyEnabled = checked
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
Button {
|
|
text: qsTr("Edit")
|
|
enabled: currentPack.canEdit
|
|
onClicked: {
|
|
var dialog = packEditor.createObject(timelineRoot, {
|
|
"imagePack": currentPack
|
|
});
|
|
dialog.show();
|
|
timelineRoot.destroyOnClose(dialog);
|
|
}
|
|
}
|
|
Button {
|
|
text: qsTr("Remove")
|
|
enabled: currentPack.canEdit
|
|
onClicked: {
|
|
var dialog = packDeleteDialog.createObject(timelineRoot, {
|
|
"imagePack": currentPack
|
|
});
|
|
dialog.open();
|
|
timelineRoot.destroyOnClose(dialog);
|
|
}
|
|
}
|
|
}
|
|
|
|
GridView {
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
model: currentPack
|
|
cellWidth: stickerDimPad
|
|
cellHeight: stickerDimPad
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
clip: true
|
|
currentIndex: -1 // prevent sorting from stealing focus
|
|
cacheBuffer: 500
|
|
|
|
|
|
// Individual emoji
|
|
delegate: AbstractButton {
|
|
width: stickerDim
|
|
height: stickerDim
|
|
hoverEnabled: true
|
|
ToolTip.text: ":" + model.shortCode + ": - " + model.body
|
|
ToolTip.visible: hovered
|
|
|
|
contentItem: Image {
|
|
height: stickerDim
|
|
width: stickerDim
|
|
source: model.url.replace("mxc://", "image://MxcImage/") + "?scale"
|
|
fillMode: Image.PreserveAspectFit
|
|
}
|
|
|
|
background: Rectangle {
|
|
anchors.fill: parent
|
|
color: hovered ? palette.highlight : 'transparent'
|
|
radius: 5
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
footer: DialogButtonBox {
|
|
id: buttons
|
|
|
|
Button {
|
|
text: qsTr("Close")
|
|
DialogButtonBox.buttonRole: DialogButtonBox.AcceptRole
|
|
onClicked: win.close()
|
|
}
|
|
|
|
}
|
|
|
|
}
|