Icons: more icons

This commit is contained in:
LemmyCook 2025-09-08 17:53:55 -04:00
parent 97c7fd8073
commit 4c9e89915e
3 changed files with 36 additions and 31 deletions

View file

@ -24,7 +24,7 @@ Item {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
rightOpen: BarWidgetRegistry.getNPillDirection(root) rightOpen: BarWidgetRegistry.getNPillDirection(root)
icon: "keyboard_alt" icon: FontService.icons["keyboard"]
iconCircleColor: Color.mPrimary iconCircleColor: Color.mPrimary
collapsedIconColor: Color.mOnSurface collapsedIconColor: Color.mOnSurface
autoHide: false // Important to be false so we can hover as long as we want autoHide: false // Important to be false so we can hover as long as we want

View file

@ -14,11 +14,11 @@ Singleton {
property bool fontsLoaded: false property bool fontsLoaded: false
property var icons: { property var icons: {
"sunny": "\ue30d", "sunny": "\uF1D2",
"partly_cloudy": "\uF2BE", "partly_cloudy": "\uF2BE",
"cloud": "\uF2C3", "cloud": "\uF2C3",
"foggy": "\uF2A7", "foggy": "\uF2A7",
"rainy": "\uf29c", "rainy": "\uF29C",
"snowy": "\uF2BC", "snowy": "\uF2BC",
"thunderstom": "\uF2AC", "thunderstom": "\uF2AC",
"battery_empty": "\uF188", "battery_empty": "\uF188",
@ -36,52 +36,57 @@ Singleton {
"wifi_low": "\uF619", "wifi_low": "\uF619",
"wifi_half": "\uF61A", "wifi_half": "\uF61A",
"wifi_full": "\uF61C", "wifi_full": "\uF61C",
"power": "\uf011", "power": "\uF4FF",
"gear": "\uF3E2", "gear": "\uF3E5",
"close": "\uF62A", "close": "\uF659",
"check": "\uF272", "check": "\uF272",
"panel": "\uF28C", "panel": "\uF2CD",
"memory": "\uF2D5", "memory": "\uF2D5",
"trash": "\uF014", "trash": "\uF78B",
"image": "\uF03E",
"refresh": "\uF021",
"video_camera": "\uF21C", "video_camera": "\uF21C",
"ethernet": "\uF2EB", "ethernet": "\uF2EB",
"speed": "\uF66B", "speed": "\uF66B",
"leaf": "\uF90B", "leaf": "\uF90B",
"microphone": "\uED03", "microphone": "\uF490",
"microphone_muted": "\uF48F",
"coffee": "\uF7EA", "coffee": "\uF7EA",
"thermometer": "\uE350", "refresh": "\uF130",
"contrast": "\uF042", "image": "\uF429",
"skull": "\uEE15", "contrast": "\uF288",
"paint_brush": "\uEE26", "thermometer": "\uF908", // FIXME
"paint_bucket": "\uEE3F", "paint_brush": "\uEE26",
"paint_drop": "\uF30C", "paint_drop": "\uF30C",
"yin_yang": "\uEEE9", "yin_yang": "\uF8E7",
"record": "\uEFFA", "record": "\uF518",
"pause": "\uF04C", "pause": "\uF4C1",
"play": "\uF04B", "play": "\uF4F2",
"stop": "\uEFFB", "stop": "\uF590",
"next": "\uF051", "prev": "\uF561",
"prev": "\uF048", "next": "\uF55B",
"lightning": "\uF0E7",
"arrow_drop_down": "\uF229", "arrow_drop_down": "\uF229",
"warning": "\uF334", "warning": "\uF334",
"info": "\uF26A", "info": "\uF26A",
"upload": "\uF296", "upload": "\uF296",
"download": "\uF294", "download": "\uF294",
"album": "\uF2FE", "album": "\uF2FE",
"link": "\uF0C1", "link": "\uF0C1",
"plus": "\uF067", "plus": "\uF64D",
"minus": "\uF068", "minus": "\uF63B",
"eyedropper": "\uF342", "eyedropper": "\uF342",
"bell": "\uF189", "bell": "\uF189",
"bell_striked": "\uF631", "bell_striked": "\uF631",
"drive": "\uF410", "drive": "\uF412",
"bluetooth": "\uF682", "bluetooth": "\uF682",
"person": "\uEE15", "person": "\uF4DA",
"bar": "\uF52B", "bar": "\uF52B",
"launcher": "\uF843" "launcher": "\uF843",
"palette": "\uF4B1",
"moon": "\uF494",
"gauge": "\uF580",
"lightning": "\uF46C",
"keyboard": "\uF451",
// another contrast \uF8F3 \uF8DA
} }
// ------------------------------------------- // -------------------------------------------

View file

@ -4,7 +4,7 @@ import qs.Commons
import qs.Widgets import qs.Widgets
Text { Text {
text: "\uEE15" // fallback/default to skull icon text: "\uF706" // fallback/default to balloon icon
font.family: "bootstrap-icons" font.family: "bootstrap-icons"
font.pointSize: Style.fontSizeL * scaling font.pointSize: Style.fontSizeL * scaling
color: Color.mOnSurface color: Color.mOnSurface