icon_definitions
Icon definitions.
There are multiple places where icons are defined for UI.
AYONUrlIcon dataclass
Bases: IconBase
Relative url to an image file on AYON server.
Instead of using full url use relative path to image file on AYON server. - 'https://studio.ayon.app/addons/1.0.0/public/icon.png' - 'addons/1.0.0/public/icon.png'
The main difference from 'UrlIcon' is that this approach also has access to endpoints that do require authentication.
Source code in client/ayon_core/lib/icon_definitions.py
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | |
AwesomeFontIcon dataclass
Bases: IconBase
Awesome Font icon.
Source code in client/ayon_core/lib/icon_definitions.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | |
IconBase
Bases: ABC
Base class for icon definition.
The base class is meant to be used for type validation of icon definition passed to functions.
Source code in client/ayon_core/lib/icon_definitions.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | |
MaterialSymbolsIcon dataclass
Bases: IconBase
Material Symbols icon.
Source code in client/ayon_core/lib/icon_definitions.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |
PathIcon dataclass
Bases: IconBase
Path to image file on disk.
Source code in client/ayon_core/lib/icon_definitions.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 | |
TransparentIcon dataclass
Bases: IconBase
Transparent icon.
Source code in client/ayon_core/lib/icon_definitions.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 | |
UrlIcon dataclass
Bases: IconBase
Url to an image file.
Source code in client/ayon_core/lib/icon_definitions.py
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | |