2019-02-01 16:57:30 +00:00
|
|
|
pragma Singleton
|
2019-04-11 01:17:29 +00:00
|
|
|
import QtQuick 2.9
|
2019-02-01 16:57:30 +00:00
|
|
|
|
|
|
|
Object {
|
|
|
|
|
2021-07-12 21:10:04 +00:00
|
|
|
//Font Awesome version 5.15.3
|
2019-02-01 16:57:30 +00:00
|
|
|
FontLoader {
|
2019-09-04 22:22:17 +00:00
|
|
|
id: regular
|
2021-07-12 21:10:04 +00:00
|
|
|
source: "./fa-regular-400.otf"
|
2019-09-03 18:41:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FontLoader {
|
|
|
|
id: brands
|
2021-07-12 21:10:04 +00:00
|
|
|
source: "./fa-brands-400.otf"
|
2019-09-03 18:41:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FontLoader {
|
|
|
|
id: solid
|
2021-07-12 21:10:04 +00:00
|
|
|
source: "./fa-solid-900.otf"
|
2019-02-01 16:57:30 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 22:22:17 +00:00
|
|
|
property string fontFamily: regular.name
|
2019-09-03 18:41:08 +00:00
|
|
|
property string fontFamilyBrands: brands.name
|
|
|
|
property string fontFamilySolid: solid.name
|
2019-02-01 16:57:30 +00:00
|
|
|
|
2021-07-12 21:10:04 +00: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 16:57:30 +00:00
|
|
|
property string addressBook : "\uf2b9"
|
|
|
|
property string arrowCircleRight : "\uf0a9"
|
|
|
|
property string arrowDown : "\uf063"
|
|
|
|
property string arrowLeft : "\uf060"
|
|
|
|
property string arrowRight : "\uf061"
|
2020-04-13 21:15:14 +00:00
|
|
|
property string cashRegister: "\uf788"
|
2021-09-02 16:16:27 +00:00
|
|
|
property string checkCircle: "\uf058"
|
2019-02-01 16:57:30 +00: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 21:10:04 +00:00
|
|
|
property string houseUser : "\ue065"
|
2021-02-05 15:28:01 +00:00
|
|
|
property string infinity : "\uf534"
|
2019-02-01 16:57:30 +00:00
|
|
|
property string info : "\uf129"
|
|
|
|
property string key : "\uf084"
|
|
|
|
property string language : "\uf1ab"
|
2022-03-13 00:24:08 +00:00
|
|
|
property string lock : "\uf023"
|
2019-02-01 16:57:30 +00:00
|
|
|
property string minus : "\uf068"
|
|
|
|
property string minusCircle : "\uf056"
|
|
|
|
property string moonO : "\uf186"
|
2021-07-12 21:10:04 +00:00
|
|
|
property string monero : "\uf3d0"
|
2019-02-01 16:57:30 +00: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"
|
2021-06-23 00:28:48 +00:00
|
|
|
property string shieldAlt : "\uf3ed"
|
2019-09-16 21:59:54 +00:00
|
|
|
property string signOutAlt : "\uf2f5"
|
2019-02-01 16:57:30 +00:00
|
|
|
property string times : "\uf00d"
|
|
|
|
}
|