mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
fix get size with screen ratio function fix chat sending area ui #LINQT-2068 print debug logs in linphone files for futur debugging fix call history details ui when no video conference factory set use remote name of each call if in local conference #LINQT-2058
264 lines
11 KiB
QML
264 lines
11 KiB
QML
/*
|
|
* MIT License
|
|
|
|
Copyright (c) 2023 AmirHosseinCH
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Linphone
|
|
import UtilsCpp
|
|
import 'qrc:/qt/qml/Linphone/view/Control/Tool/Helper/utils.js' as Utils
|
|
|
|
// import EmojiModel
|
|
|
|
ColumnLayout {
|
|
id: mainItem
|
|
property var editor
|
|
property EmojiModel model: EmojiModel {
|
|
id: emojiModel
|
|
iconsPath: "image://emoji/emojiSvgs/"
|
|
iconsType: '.svg'
|
|
}
|
|
property var categories: ['Smileys & Emotion', 'People & Body', 'Animals & Nature',
|
|
'Food & Drink', 'Activities', 'Travel & Places', 'Objects', 'Symbols', 'Flags']
|
|
property var searchModel: ListModel {}
|
|
property bool searchMode: false
|
|
property int skinColor: -1
|
|
|
|
signal emojiClicked(string emoji)
|
|
|
|
function changeSkinColor(index) {
|
|
if (index !== skinColors.current) {
|
|
skinColors.itemAt(skinColors.current + 1).scale = 0.6
|
|
skinColors.itemAt(index + 1).scale = 1
|
|
skinColors.current = index
|
|
mainItem.skinColor = index
|
|
}
|
|
}
|
|
function refreshSearchModel() {
|
|
searchModel.clear()
|
|
var searchResult = model.search(searchField.text, skinColor)
|
|
for (var i = 0; i < searchResult.length; ++i) {
|
|
searchModel.append({path: searchResult[i]})
|
|
}
|
|
}
|
|
RowLayout {
|
|
id: categoriesRow
|
|
Layout.preferredWidth: parent.width - Math.round(15 * DefaultStyle.dp)
|
|
Layout.preferredHeight: Math.round(35 * DefaultStyle.dp)
|
|
Layout.leftMargin: Math.round(5 * DefaultStyle.dp)
|
|
Layout.alignment: Qt.AlignCenter
|
|
spacing: searchField.widthSize > 0 ? Math.round(7 * DefaultStyle.dp) : Math.round(17 * DefaultStyle.dp)
|
|
clip: true
|
|
Image {
|
|
id: searchIcon
|
|
source: "image://emoji/icons/search.svg"
|
|
sourceSize: Qt.size(Math.round(21 * DefaultStyle.dp), Math.round(21 * DefaultStyle.dp))
|
|
visible: !mainItem.searchMode
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
mainItem.searchMode = true
|
|
searchField.widthSize = categoriesRow.width - Math.round(25 * DefaultStyle.dp)
|
|
list.model = 1
|
|
searchField.focus = true
|
|
}
|
|
}
|
|
}
|
|
Image {
|
|
id: closeIcon
|
|
source: "image://emoji/icons/close.svg"
|
|
sourceSize: Qt.size(Math.round(21 * DefaultStyle.dp), Math.round(21 * DefaultStyle.dp))
|
|
visible: mainItem.searchMode
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
mainItem.searchMode = false
|
|
searchField.widthSize = 0
|
|
list.model = mainItem.categories
|
|
searchField.clear()
|
|
}
|
|
}
|
|
}
|
|
TextField {
|
|
id: searchField
|
|
property int widthSize: 0
|
|
Layout.preferredWidth: widthSize
|
|
Layout.preferredHeight: Math.round(28 * DefaultStyle.dp)
|
|
visible: widthSize > 0 ? true : false
|
|
placeholderText: 'Search Emoji'
|
|
Behavior on widthSize {
|
|
NumberAnimation {
|
|
duration: 400
|
|
}
|
|
}
|
|
background: Rectangle {
|
|
radius: Math.round(10 * DefaultStyle.dp)
|
|
border.color: DefaultStyle.main1_500_main
|
|
}
|
|
onTextChanged: {
|
|
text.length > 0 ? mainItem.refreshSearchModel() : mainItem.searchModel.clear()
|
|
}
|
|
}
|
|
Repeater {
|
|
id: cateIcons
|
|
property var blackSvg: ['emoji-smiley.svg', 'emoji-people.svg', 'emoji-animal.svg', 'emoji-food.svg',
|
|
'emoji-activity.svg', 'emoji-travel.svg', 'emoji-object.svg', 'emoji-symbol.svg', 'emoji-flag.svg']
|
|
property var blueSvg: ['emoji-smiley-blue.svg', 'emoji-people-blue.svg', 'emoji-animal-blue.svg',
|
|
'emoji-food-blue.svg', 'emoji-activity-blue.svg', 'emoji-travel-blue.svg', 'emoji-object-blue.svg',
|
|
'emoji-symbol-blue.svg', 'emoji-flag-blue.svg']
|
|
property int current: 0
|
|
model: 9
|
|
delegate: Image {
|
|
id: icon
|
|
source: "image://emoji/icons/" + cateIcons.blackSvg[index]
|
|
sourceSize: Qt.size(Math.round(20 * DefaultStyle.dp), Math.round(20 * DefaultStyle.dp))
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
if (cateIcons.current !== index) {
|
|
icon.source = "image://emoji/icons/" + cateIcons.blueSvg[index]
|
|
cateIcons.itemAt(cateIcons.current).source = "image://emoji/icons/" + cateIcons.blackSvg[cateIcons.current]
|
|
cateIcons.current = index
|
|
}
|
|
list.positionViewAtIndex(index, ListView.Beginning)
|
|
}
|
|
}
|
|
}
|
|
Component.onCompleted: {
|
|
itemAt(0).source = "image://emoji/icons/" + cateIcons.blueSvg[0]
|
|
}
|
|
}
|
|
}
|
|
ListView {
|
|
id: list
|
|
width: mainItem.width
|
|
height: Math.round(250 * DefaultStyle.dp)
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
model: mainItem.categories
|
|
spacing: Math.round(30 * DefaultStyle.dp)
|
|
topMargin: Math.round(7 * DefaultStyle.dp)
|
|
bottomMargin: Math.round(7 * DefaultStyle.dp)
|
|
leftMargin: Math.round(12 * DefaultStyle.dp)
|
|
clip: true
|
|
delegate: GridLayout {
|
|
id: grid
|
|
property string category: mainItem.searchMode ? 'Search Result' : modelData
|
|
property int columnCount: Math.round(list.width / 50 * DefaultStyle.dp)
|
|
property int sc: grid.category === 'People & Body' ? mainItem.skinColor : -1
|
|
columns: columnCount
|
|
width: list.width
|
|
columnSpacing: Math.round(5 * DefaultStyle.dp)
|
|
Text {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: Math.round(20 * DefaultStyle.dp)
|
|
text: grid.category
|
|
color: Qt.rgba(0, 0, 0, 0.5)
|
|
font.pixelSize: Math.round(15 * DefaultStyle.dp)
|
|
horizontalAlignment: Text.AlignLeft
|
|
leftPadding: Math.round(6 * DefaultStyle.dp)
|
|
Layout.columnSpan: grid.columnCount != 0 ? grid.columnCount : 1
|
|
Layout.bottomMargin: Math.round(8 * DefaultStyle.dp)
|
|
}
|
|
Repeater {
|
|
model: mainItem.searchMode ? mainItem.searchModel : mainItem.model.count(grid.category)
|
|
delegate: Rectangle {
|
|
property alias es: emojiSvg
|
|
Layout.preferredWidth: Math.round(40 * DefaultStyle.dp)
|
|
Layout.preferredHeight: Math.round(40 * DefaultStyle.dp)
|
|
radius: Math.round(40 * DefaultStyle.dp)
|
|
color: mouseArea.containsMouse ? '#e6e6e6' : '#ffffff'
|
|
Image {
|
|
id: emojiSvg
|
|
source: mainItem.searchMode ? path : mainItem.model.path(grid.category, index, grid.sc)
|
|
sourceSize: Qt.size(Math.round(30 * DefaultStyle.dp), Math.round(30 * DefaultStyle.dp))
|
|
anchors.centerIn: parent
|
|
asynchronous: true
|
|
}
|
|
MouseArea {
|
|
id: mouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
property string imageUrl: emojiSvg.source
|
|
onClicked: {
|
|
var emojiInFont = Utils.codepointFromFilename(UtilsCpp.getFilename(emojiSvg.source))
|
|
if (mainItem.editor) mainItem.editor.insert(mainItem.editor.cursorPosition, emojiInFont)
|
|
mainItem.emojiClicked(emojiInFont)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
onContentYChanged: {
|
|
var index = list.indexAt(0, contentY + 15)
|
|
if (index !== -1 && index !== cateIcons.current) {
|
|
cateIcons.itemAt(index).source = "image://emoji/icons/" + cateIcons.blueSvg[index]
|
|
cateIcons.itemAt(cateIcons.current).source = "image://emoji/icons/" + cateIcons.blackSvg[cateIcons.current]
|
|
cateIcons.current = index
|
|
}
|
|
}
|
|
}
|
|
RowLayout {
|
|
Layout.preferredHeight: Math.round(35 * DefaultStyle.dp)
|
|
Layout.alignment: Qt.AlignCenter
|
|
spacing: 10
|
|
Repeater {
|
|
id: skinColors
|
|
property var colors: ['#ffb84d', '#ffdab3', '#d2a479', '#ac7139', '#734b26', '#26190d']
|
|
property int current: -1
|
|
model: 6
|
|
delegate: Rectangle {
|
|
id: colorRect
|
|
Layout.preferredWidth: Math.round(30 * DefaultStyle.dp)
|
|
Layout.preferredHeight: Math.round(30 * DefaultStyle.dp)
|
|
Layout.bottomMargin: Math.round(3 * DefaultStyle.dp)
|
|
radius: Math.round(30 * DefaultStyle.dp)
|
|
scale: 0.65
|
|
color: skinColors.colors[index]
|
|
Behavior on scale {
|
|
NumberAnimation {
|
|
duration: 100
|
|
}
|
|
}
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
mainItem.changeSkinColor(index - 1)
|
|
if (mainItem.searchMode) {
|
|
mainItem.refreshSearchModel();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Component.onCompleted: {
|
|
itemAt(0).scale = 1
|
|
}
|
|
}
|
|
}
|
|
}
|