|
|
@ -65,7 +65,7 @@ Popup { |
|
|
|
cellWidth: 52 |
|
|
|
cellWidth: 52 |
|
|
|
cellHeight: 52 |
|
|
|
cellHeight: 52 |
|
|
|
|
|
|
|
|
|
|
|
boundsBehavior: Flickable.DragOverBounds |
|
|
|
boundsBehavior: Flickable.StopAtBounds |
|
|
|
|
|
|
|
|
|
|
|
clip: true |
|
|
|
clip: true |
|
|
|
|
|
|
|
|
|
|
@ -147,9 +147,9 @@ Popup { |
|
|
|
onVisibleChanged: if (visible) forceActiveFocus() |
|
|
|
onVisibleChanged: if (visible) forceActiveFocus() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
ScrollBar.vertical: ScrollBar { |
|
|
|
ScrollBar.vertical: ScrollBar { |
|
|
|
id: emojiScroll |
|
|
|
id: emojiScroll |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Separator |
|
|
|
// Separator |
|
|
@ -188,12 +188,19 @@ Popup { |
|
|
|
horizontalAlignment: Image.AlignHCenter |
|
|
|
horizontalAlignment: Image.AlignHCenter |
|
|
|
verticalAlignment: Image.AlignVCenter |
|
|
|
verticalAlignment: Image.AlignVCenter |
|
|
|
fillMode: Image.Pad |
|
|
|
fillMode: Image.Pad |
|
|
|
smooth: true |
|
|
|
|
|
|
|
sourceSize.width: 32 |
|
|
|
sourceSize.width: 32 |
|
|
|
sourceSize.height: 32 |
|
|
|
sourceSize.height: 32 |
|
|
|
source: "image://colorimage/" + model.image + "?" + (hovered ? colors.highlight : colors.buttonText) |
|
|
|
source: "image://colorimage/" + model.image + "?" + (hovered ? colors.highlight : colors.buttonText) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MouseArea |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
id: mouseArea |
|
|
|
|
|
|
|
anchors.fill: parent |
|
|
|
|
|
|
|
onPressed: mouse.accepted = false |
|
|
|
|
|
|
|
cursorShape: Qt.PointingHandCursor |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
background: Rectangle { |
|
|
|
background: Rectangle { |
|
|
|
anchors.fill: parent |
|
|
|
anchors.fill: parent |
|
|
|
|
|
|
|
|
|
|
@ -265,12 +272,20 @@ Popup { |
|
|
|
anchors.right: parent.right |
|
|
|
anchors.right: parent.right |
|
|
|
horizontalAlignment: Image.AlignHCenter |
|
|
|
horizontalAlignment: Image.AlignHCenter |
|
|
|
verticalAlignment: Image.AlignVCenter |
|
|
|
verticalAlignment: Image.AlignVCenter |
|
|
|
fillMode: Image.Pad |
|
|
|
|
|
|
|
smooth: true |
|
|
|
|
|
|
|
sourceSize.width: 32 |
|
|
|
sourceSize.width: 32 |
|
|
|
sourceSize.height: 32 |
|
|
|
sourceSize.height: 32 |
|
|
|
|
|
|
|
fillMode: Image.Pad |
|
|
|
|
|
|
|
smooth: true |
|
|
|
source: "image://colorimage/:/icons/icons/ui/search.png?" + (parent.hovered ? colors.highlight : colors.buttonText) |
|
|
|
source: "image://colorimage/:/icons/icons/ui/search.png?" + (parent.hovered ? colors.highlight : colors.buttonText) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MouseArea |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
id: mouseArea |
|
|
|
|
|
|
|
anchors.fill: parent |
|
|
|
|
|
|
|
onPressed: mouse.accepted = false |
|
|
|
|
|
|
|
cursorShape: Qt.PointingHandCursor |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|