Serial-Studio/app/qml/Dialogs/IconPicker.qml
2024-11-07 22:54:25 -05:00

178 lines
5.1 KiB
QML

/*
* Copyright (c) 2024 Alex Spataru <https://github.com/alex-spataru>
*
* 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.Window
import QtQuick.Layouts
import QtQuick.Controls
Window {
id: root
//
// Custom properties
//
signal iconSelected(var icon)
property string selectedIcon: ""
//
// Window options
//
width: minimumWidth
height: minimumHeight
minimumWidth: 320 + 32
maximumWidth: 320 + 32
minimumHeight: 480 + 32
maximumHeight: 480 + 32
title: qsTr("Select Icon")
//
// Make window stay on top
//
Component.onCompleted: {
root.flags = Qt.Dialog |
Qt.WindowTitleHint |
Qt.WindowStaysOnTopHint |
Qt.WindowCloseButtonHint
}
//
// Close shortcut
//
Shortcut {
sequences: [StandardKey.Close]
onActivated: root.close()
}
//
// Use page item to set application palette
//
Page {
anchors.fill: parent
palette.mid: Cpp_ThemeManager.colors["mid"]
palette.dark: Cpp_ThemeManager.colors["dark"]
palette.text: Cpp_ThemeManager.colors["text"]
palette.base: Cpp_ThemeManager.colors["base"]
palette.link: Cpp_ThemeManager.colors["link"]
palette.light: Cpp_ThemeManager.colors["light"]
palette.window: Cpp_ThemeManager.colors["window"]
palette.shadow: Cpp_ThemeManager.colors["shadow"]
palette.accent: Cpp_ThemeManager.colors["accent"]
palette.button: Cpp_ThemeManager.colors["button"]
palette.midlight: Cpp_ThemeManager.colors["midlight"]
palette.highlight: Cpp_ThemeManager.colors["highlight"]
palette.windowText: Cpp_ThemeManager.colors["window_text"]
palette.brightText: Cpp_ThemeManager.colors["bright_text"]
palette.buttonText: Cpp_ThemeManager.colors["button_text"]
palette.toolTipBase: Cpp_ThemeManager.colors["tooltip_base"]
palette.toolTipText: Cpp_ThemeManager.colors["tooltip_text"]
palette.linkVisited: Cpp_ThemeManager.colors["link_visited"]
palette.alternateBase: Cpp_ThemeManager.colors["alternate_base"]
palette.placeholderText: Cpp_ThemeManager.colors["placeholder_text"]
palette.highlightedText: Cpp_ThemeManager.colors["highlighted_text"]
//
// Window controls
//
ColumnLayout {
spacing: 4
anchors.fill: parent
anchors.margins: 16
Rectangle {
radius: 2
border.width: 1
Layout.fillWidth: true
Layout.fillHeight: true
color: Cpp_ThemeManager.colors["groupbox_background"]
border.color: Cpp_ThemeManager.colors["groupbox_border"]
GridView {
clip: true
cellWidth: 48
cellHeight: 48
anchors.margins: 4
anchors.fill: parent
model: Cpp_JSON_ProjectModel.availableActionIcons
ScrollBar.vertical: ScrollBar {}
delegate: Item {
width: 48
height: 48
Rectangle {
width: 42
height: 42
anchors.centerIn: parent
color: root.selectedIcon === modelData ?
Cpp_ThemeManager.colors["highlight"] : "transparent"
}
Image {
anchors.centerIn: parent
sourceSize: Qt.size(32, 32)
source: "qrc:/rcc/actions/" + modelData + ".svg"
MouseArea {
anchors.fill: parent
onClicked: root.selectedIcon = modelData
onDoubleClicked: {
root.selectedIcon = modelData
root.iconSelected(root.selectedIcon)
root.close()
}
}
}
}
}
}
Item {
implicitHeight: 4
}
RowLayout {
spacing: 4
Layout.fillWidth: true
Item {
Layout.fillWidth: true
}
Button {
text: qsTr("OK")
highlighted: true
onClicked: {
root.iconSelected(root.selectedIcon)
root.close()
}
}
Button {
text: qsTr("Cancel")
onClicked: root.close()
}
}
}
}
}