monero-gui/fonts/FontAwesome/FontAwesome.qml

77 lines
2.5 KiB
QML
Raw Permalink Normal View History

2019-02-01 17:57:30 +01:00
pragma Singleton
2019-04-11 03:17:29 +02:00
import QtQuick 2.9
2019-02-01 17:57:30 +01:00
Object {
2021-07-12 23:10:04 +02:00
//Font Awesome version 5.15.3
2019-02-01 17:57:30 +01:00
FontLoader {
id: regular
2021-07-12 23:10:04 +02:00
source: "./fa-regular-400.otf"
2019-09-03 20:41:08 +02:00
}
FontLoader {
id: brands
2021-07-12 23:10:04 +02:00
source: "./fa-brands-400.otf"
2019-09-03 20:41:08 +02:00
}
FontLoader {
id: solid
2021-07-12 23:10:04 +02:00
source: "./fa-solid-900.otf"
2019-02-01 17:57:30 +01:00
}
property string fontFamily: regular.name
2019-09-03 20:41:08 +02:00
property string fontFamilyBrands: brands.name
property string fontFamilySolid: solid.name
2019-02-01 17:57:30 +01:00
2021-07-12 23:10:04 +02:00
// Icons used in Monero GUI (Font Awesome version 5.15.3)
// To add new icons, check unicodes in Font Awesome Free's Cheatsheet:
// https://fontawesome.com/v5/cheatsheet/free/solid
// https://fontawesome.com/v5/cheatsheet/free/regular
// https://fontawesome.com/v5/cheatsheet/free/brands
2019-02-01 17:57:30 +01:00
property string addressBook : "\uf2b9"
property string arrowCircleRight : "\uf0a9"
property string arrowDown : "\uf063"
property string arrowLeft : "\uf060"
property string arrowRight : "\uf061"
2020-04-13 23:15:14 +02:00
property string cashRegister: "\uf788"
property string checkCircle: "\uf058"
2019-02-01 17:57:30 +01:00
property string clipboard : "\uf0ea"
property string clockO : "\uf017"
property string cloud : "\uf0c2"
property string desktop : "\uf108"
property string edit : "\uf044"
property string ellipsisH : "\uf141"
property string exclamationCircle : "\uf06a"
property string eye : "\uf06e"
property string eyeSlash : "\uf070"
property string folderOpen : "\uf07c"
property string globe : "\uf0ac"
property string home : "\uf015"
2021-07-12 23:10:04 +02:00
property string houseUser : "\ue065"
property string infinity : "\uf534"
2019-02-01 17:57:30 +01:00
property string info : "\uf129"
property string key : "\uf084"
property string language : "\uf1ab"
property string lock : "\uf023"
property string magnifyingGlass : "\uf002"
2019-02-01 17:57:30 +01:00
property string minus : "\uf068"
property string minusCircle : "\uf056"
property string moonO : "\uf186"
2021-07-12 23:10:04 +02:00
property string monero : "\uf3d0"
2019-02-01 17:57:30 +01:00
property string paste : "\uf0ea"
property string pencilSquare : "\uf14b"
property string plus : "\uf067"
property string plusCircle : "\uf055"
property string productHunt : "\uf288"
property string qrcode : "\uf029"
property string questionCircle : "\uf059"
property string random : "\uf074"
property string repeat : "\uf01e"
property string searchPlus : "\uf00e"
property string server : "\uf233"
property string shieldAlt : "\uf3ed"
2019-09-16 23:59:54 +02:00
property string signOutAlt : "\uf2f5"
2019-02-01 17:57:30 +01:00
property string times : "\uf00d"
}