Files
noctalia-shell/Widgets/NIconPicker.qml

168 lines
4.2 KiB
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick.Window
import qs.Commons
import qs.Widgets
Popup {
id: root
modal: true
property string selectedIcon: ""
property string initialIcon: ""
signal iconSelected(string iconName)
width: Math.round(900 * Style.uiScaleRatio)
height: Math.round(700 * Style.uiScaleRatio)
anchors.centerIn: Overlay.overlay
padding: Style.marginXL
property string query: ""
property var allIcons: Object.keys(Icons.icons)
property var filteredIcons: {
if (query === "")
return allIcons;
var q = query.toLowerCase();
return allIcons.filter(name => name.toLowerCase().includes(q));
}
readonly property int columns: 6
readonly property int cellW: Math.floor(grid.width / columns)
readonly property int cellH: Math.round(cellW * 0.7 + 36)
onOpened: {
selectedIcon = initialIcon;
query = initialIcon;
searchInput.forceActiveFocus();
}
background: Rectangle {
color: Color.mSurface
radius: Style.radiusL
border.color: Color.mPrimary
border.width: Style.borderM
}
ColumnLayout {
anchors.fill: parent
spacing: Style.marginM
// Title row
RowLayout {
Layout.fillWidth: true
NText {
text: I18n.tr("widgets.icon-picker.title")
pointSize: Style.fontSizeL
font.weight: Style.fontWeightBold
color: Color.mPrimary
Layout.fillWidth: true
}
NIconButton {
icon: "close"
tooltipText: I18n.tr("tooltips.close")
onClicked: root.close()
}
}
NDivider {
Layout.fillWidth: true
}
RowLayout {
Layout.fillWidth: true
spacing: Style.marginS
NTextInput {
id: searchInput
Layout.fillWidth: true
label: I18n.tr("widgets.icon-picker.search.label")
placeholderText: I18n.tr("placeholders.search-icons")
text: root.query
onTextChanged: root.query = text.trim().toLowerCase()
}
}
// Icon grid
NGridView {
id: grid
Layout.fillWidth: true
Layout.fillHeight: true
Layout.margins: Style.marginM
cellWidth: root.cellW
cellHeight: root.cellH
model: root.filteredIcons
delegate: Rectangle {
width: grid.cellWidth
height: grid.cellHeight
radius: Style.radiusS
color: (root.selectedIcon === modelData) ? Qt.alpha(Color.mPrimary, 0.15) : Color.transparent
border.color: (root.selectedIcon === modelData) ? Color.mPrimary : Color.transparent
border.width: (root.selectedIcon === modelData) ? Style.borderS : 0
MouseArea {
anchors.fill: parent
onClicked: root.selectedIcon = modelData
onDoubleClicked: {
root.selectedIcon = modelData;
root.iconSelected(root.selectedIcon);
root.close();
}
}
ColumnLayout {
anchors.fill: parent
anchors.margins: Style.marginS
spacing: Style.marginS
Item {
Layout.fillHeight: true
Layout.preferredHeight: 4
}
NIcon {
Layout.alignment: Qt.AlignHCenter
icon: modelData
pointSize: 42
}
NText {
Layout.alignment: Qt.AlignHCenter
Layout.fillWidth: true
Layout.topMargin: Style.marginXS
elide: Text.ElideRight
wrapMode: Text.NoWrap
maximumLineCount: 1
horizontalAlignment: Text.AlignHCenter
color: Color.mOnSurfaceVariant
pointSize: Style.fontSizeXS
text: modelData
}
Item {
Layout.fillHeight: true
}
}
}
}
RowLayout {
Layout.fillWidth: true
spacing: Style.marginM
Item {
Layout.fillWidth: true
}
NButton {
text: I18n.tr("widgets.icon-picker.cancel")
outlined: true
onClicked: root.close()
}
NButton {
text: I18n.tr("widgets.icon-picker.apply")
icon: "check"
enabled: root.selectedIcon !== ""
onClicked: {
root.iconSelected(root.selectedIcon);
root.close();
}
}
}
}
}