mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
23 lines
600 B
QML
23 lines
600 B
QML
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import "../"
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 2.1
|
|
import im.nheko 1.0
|
|
import im.nheko.EmojiModel 1.0
|
|
|
|
ImageButton {
|
|
id: emojiButton
|
|
|
|
property var colors: currentActivePalette
|
|
property var emojiPicker
|
|
property string event_id
|
|
|
|
image: ":/icons/icons/ui/smile.png"
|
|
onClicked: emojiPicker.visible ? emojiPicker.close() : emojiPicker.show(emojiButton, function(emoji) {
|
|
room.input.reaction(event_id, emoji);
|
|
TimelineManager.focusMessageInput();
|
|
})
|
|
}
|