Icon Rendering Module¶
Unified icon rendering system with theme support, caching, and IDE autocompletion.
Quick Start¶
from src.shared_services.rendering.icons.api import (
Icons,
IconColors,
render_svg,
)
# Render an icon (theme-aware)
pixmap = render_svg(Icons.Action.Home, size=24, color=IconColors.Primary)
button.setIcon(QIcon(pixmap))
# Error icon
pixmap = render_svg(Icons.Action.Delete, size=24, color=IconColors.Error)
When to Use What¶
| Use Case | What to Use |
|---|---|
| One-off icon rendering | render_svg() |
| Icons that update on theme change | IconRegistry |
| Custom icon fonts (IcoMoon/TTF) | IconFontRenderer |
SVG Renderer¶
Renders SVG files as high-quality QPixmaps with automatic color tinting.
from src.shared_services.rendering.icons.api import Icons, IconColors, render_svg
# Basic usage
pixmap = render_svg(Icons.Action.Save, size=24)
# With color
pixmap = render_svg(Icons.Action.Delete, size=24, color=IconColors.Error)
# Multiple sizes at once
from src.shared_services.rendering.icons.api import render_svg_multi_size
pixmaps = render_svg_multi_size(Icons.Action.Home, sizes=[16, 24, 32])
Features: - 2x internal rendering for crisp output - Automatic color tinting based on theme - Results cached automatically
Icon Registry¶
Tracks widgets and updates their icons automatically when theme changes.
from src.shared_services.rendering.icons.api import IconRegistry, IconColors
registry = IconRegistry.instance()
# Register widgets
registry.register(home_btn, Icons.Action.Home, color=IconColors.Primary)
registry.register(delete_btn, Icons.Action.Delete, color=IconColors.Error)
# Switch theme - all registered icons update automatically
registry.set_theme("dark")
How it works:
1. Stores weak references to widgets (no memory leaks)
2. On set_theme(): clears cache, re-renders all icons with new colors
3. Dead widgets are cleaned up automatically
Icon Colors¶
Theme-aware color constants with IDE autocompletion.
from src.shared_services.rendering.icons.api import IconColors
# Direct access (returns hex string for current theme)
color = IconColors.Primary # "#0F172A" in light, "#D4D4D4" in dark
color = IconColors.Error # "#DC2626" in light, "#F87171" in dark
# Change theme
IconColors.set_theme("dark")
| Color | Light Theme | Dark Theme | Purpose |
|---|---|---|---|
Primary |
Dark text | Light text | Main icons |
Secondary |
Medium gray | Light gray | Muted icons |
Disabled |
Light gray | Dark gray | Disabled state |
Error |
Red | Light red | Errors/danger |
Success |
Green | Light green | Success states |
Warning |
Orange | Light orange | Warnings |
Info |
Cyan | Light cyan | Information |
Cache¶
LRU cache (500 items) for rendered pixmaps. Managed automatically.
from src.shared_services.rendering.icons.api import IconCache
# Clear cache (done automatically on theme change)
IconCache.clear()
# Check cache stats
count = IconCache.size()
When cache is cleared:
- On IconRegistry.set_theme()
- On IconColors.set_theme() (manual)
- On IconCache.clear() (manual)
Font Renderer¶
For custom TTF icon fonts (IcoMoon style).
from src.shared_services.rendering.icons.api import IconFontRenderer
renderer = IconFontRenderer.instance()
# Load font with IcoMoon demo.html
renderer.load_font(
"plant_design",
"path/to/font.ttf",
"path/to/demo.html" # For icon name -> unicode mapping
)
# Use in widgets
font = renderer.get_font("plant_design", size=16)
char = renderer.get_icon_char("plant_design", "Pumpe")
label.setFont(font)
label.setText(char)
Files¶
| File | Purpose |
|---|---|
api.py |
Public API exports |
svg_renderer.py |
SVG rendering with color tinting |
colors.py |
Theme-aware color constants |
icon_registry.py |
Widget registration for theme updates |
cache.py |
LRU pixmap cache |
font_renderer.py |
TTF icon font support |
Architecture¶
User Code
|
v
render_svg(icon, color=IconColors.Primary)
|
+---> IconColors.resolve(color) --> ColorSystem
|
+---> IconCache.get(key)
| |
| +--> Cache hit? Return cached pixmap
|
+---> _render_svg_internal()
| |
| +--> QSvgRenderer (load SVG)
| +--> QPainter (render + tint)
|
+---> IconCache.put(key, pixmap)
|
v
QPixmap (ready to use)
API Reference¶
src.shared_services.rendering.icons.api
¶
Unified Icon Rendering System - Public API.
This module provides the public API for the icon rendering system. Import from here for all icon-related functionality.
IconRegistry
For any icon displayed on a widget (QLabel, QPushButton, etc.), always use IconRegistry.register(). This is the ONLY way icons will automatically update when the application theme changes.
Using render_svg() or set_widget_icon() directly will render the icon correctly for the current theme, but the icon will NOT update when the user switches themes at runtime.
USAGE
from src.shared_services.rendering.icons.api import ( Icons, IconColors, IconRegistry, )
registry = IconRegistry.instance()
QPushButton - icon updates automatically on theme change¶
registry.register(button, Icons.Action.Settings, color=IconColors.Primary)
QLabel - use as_pixmap=True for setPixmap() instead of setIcon()¶
registry.register(label, Icons.Action.Info, size=24, as_pixmap=True)
Dynamic icons (icon changes based on state):¶
unregister first, then re-register with the new icon¶
registry.unregister(widget) registry.register(widget, Icons.Action.CheckCircle, as_pixmap=True)
Use icon fonts¶
from src.shared_services.rendering.icons.api import IconFontRenderer renderer = IconFontRenderer.instance() renderer.load_font("plant_design", "path/to/font.ttf", "path/to/demo.html")
WHEN TO USE render_svg() DIRECTLY: Only use render_svg() for icons that are NOT displayed on a widget, e.g. when building a QIcon for custom painting (paintCell, delegates) or generating pixmaps for non-widget contexts. In these cases, listen for theme changes via StylesheetManager.on_theme_change() and re-render manually.
QUICK REFERENCE:
IconRegistry.instance()
Primary API. Register widgets for theme-aware icon management.
Icons.Action.Home, Icons.Navigation.Menu, ...
Icon path definitions organized by category.
IconColors.Primary, IconColors.Error, IconColors.Success, ...
Theme-aware icon colors with IDE autocompletion.
render_svg(icon, size, color)
Low-level: render an SVG icon as QPixmap. No theme tracking.
set_widget_icon(widget, icon, size=None, color="primary")
Low-level: set icon on a widget. No theme tracking.
IconCache.clear()
Clear the icon cache (called automatically on theme change).
IconCache
¶
LRU cache for rendered icon pixmaps.
This cache stores rendered pixmaps keyed by (path, size, color) tuples. When the cache exceeds its maximum size, the least recently used entries are automatically evicted.
The cache should be cleared when the theme changes, as cached pixmaps will have the wrong colors for the new theme.
Attributes:
| Name | Type | Description |
|---|---|---|
_cache |
OrderedDict
|
Internal OrderedDict storing cached pixmaps. |
_max_size |
int
|
Maximum number of items to cache. |
Example
Basic usage::
key = ("icons/home.svg", 24, "#FFFFFF")
cached = IconCache.get(key)
if cached is None:
pixmap = render(...)
IconCache.put(key, pixmap)
Source code in src\shared_services\rendering\icons\cache.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | |
clear()
classmethod
¶
Clear the entire cache.
This should be called when the theme changes, as cached pixmaps will have colors from the old theme.
Example::
IconColors.set_theme("dark")
IconCache.clear() # Invalidate old colors
Source code in src\shared_services\rendering\icons\cache.py
contains(key)
classmethod
¶
Check if a key is in the cache without affecting LRU order.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
CacheKey
|
Cache key to check. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if key is cached, False otherwise. |
Source code in src\shared_services\rendering\icons\cache.py
get(key)
classmethod
¶
Get a cached pixmap.
If found, the entry is moved to the end of the cache (marking it as most recently used).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
CacheKey
|
Cache key tuple, typically (path, size, color). |
required |
Returns:
| Type | Description |
|---|---|
Optional[QPixmap]
|
Cached QPixmap if found, None otherwise. |
Example::
pixmap = IconCache.get(("home.svg", 24, "#FFF"))
if pixmap is not None:
button.setIcon(QIcon(pixmap))
Source code in src\shared_services\rendering\icons\cache.py
put(key, pixmap)
classmethod
¶
Cache a rendered pixmap.
If the cache exceeds the maximum size, the oldest (least recently used) entries are automatically evicted.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
CacheKey
|
Cache key tuple, typically (path, size, color). |
required |
pixmap
|
QPixmap
|
Rendered pixmap to cache. |
required |
Example::
pixmap = render_svg(path, size, color)
IconCache.put((path, size, color), pixmap)
Source code in src\shared_services\rendering\icons\cache.py
set_max_size(size)
classmethod
¶
Set the maximum cache size.
If the new size is smaller than the current cache size, oldest entries are immediately evicted.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
size
|
int
|
Maximum number of items to cache. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If size is less than 1. |
Example::
IconCache.set_max_size(1000) # Increase cache
Source code in src\shared_services\rendering\icons\cache.py
size()
classmethod
¶
Get the current number of cached items.
Returns:
| Type | Description |
|---|---|
int
|
Number of items currently in the cache. |
IconColors
¶
Theme-aware icon color names with IDE autocompletion support.
Each property returns a semantic key string (e.g. "primary", "error") that is resolved to the actual hex color at render time by resolve(). This ensures colors are always correct for the current theme, even when stored in the IconRegistry for later re-rendering.
Available Colors
Primary, Secondary, Tertiary, Disabled Icon state colors mapped to text colors for contrast.
Error, Success, Warning, Info Semantic colors for status indication.
Hover, Active Interactive state colors.
OnPrimary, OnSecondary, OnSurface, Accent Special purpose colors for specific backgrounds.
Example
Usage with render_svg::
render_svg(Icons.Action.Home, color=IconColors.Primary)
Usage with IconRegistry (theme-aware)::
registry = IconRegistry.instance()
registry.register(button, Icons.Action.Home, color=IconColors.Primary)
Resolving to hex when needed::
hex_color = IconColors.resolve(IconColors.Primary)
Source code in src\shared_services\rendering\icons\colors.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | |
get_theme()
staticmethod
¶
Get the current theme.
Returns:
| Type | Description |
|---|---|
str
|
Current theme name ("light" or "dark"). |
resolve(color, theme=None)
staticmethod
¶
Resolve a color value, supporting both hex colors and property names.
This method is used internally by the rendering system to resolve color parameters that may be hex values or property name strings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
color
|
str
|
Hex color ("#RRGGBB"), rgb color, or property name string (e.g., "Primary", "Error"). Note: for property names, use the direct property access (IconColors.Error) when possible. |
required |
theme
|
Optional[str]
|
Optional theme override. |
None
|
Returns:
| Type | Description |
|---|---|
str
|
Hex color string. |
Example::
IconColors.resolve("#FF0000") # Returns: '#FF0000' (passthrough)
IconColors.resolve("error") # Returns: '#DC2626' (resolves to error color)
Source code in src\shared_services\rendering\icons\colors.py
set_theme(theme)
staticmethod
¶
Set the current theme for icon colors.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
theme
|
str
|
Theme name, must be "light" or "dark". |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If theme is not "light" or "dark". |
Example::
IconColors.set_theme("dark")
# Now resolve("primary") returns the dark theme hex color
hex_color = IconColors.resolve("primary")
Source code in src\shared_services\rendering\icons\colors.py
IconFontRenderer
¶
Bases: QObject
Manages multiple TTF icon fonts with Unicode character mapping.
This class provides a centralized way to load and use icon fonts throughout the application. It supports IcoMoon-style fonts with demo.html for character mapping, as well as JSON mapping files.
Signals
font_loaded(str): Emitted when a font is successfully loaded. Args: str: The font_id of the loaded font.
Example
Basic usage::
renderer = IconFontRenderer.instance()
# Load a font
success = renderer.load_font(
"plant_design",
"fonts/plant_design.ttf",
"fonts/demo.html"
)
if success:
font = renderer.get_font("plant_design", size=16)
char = renderer.get_icon_char("plant_design", "Pumpe")
label.setFont(font)
label.setText(char)
Note
This class is a singleton. Use IconFontRenderer.instance() to get the shared instance.
Source code in src\shared_services\rendering\icons\font_renderer.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 | |
__init__()
¶
get_available_icons(font_id)
¶
Get list of available icon names for a font.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
font_id
|
str
|
Identifier of the loaded font. |
required |
Returns:
| Type | Description |
|---|---|
List[str]
|
List of icon names, or empty list if font not found. |
Example::
icons = renderer.get_available_icons("plant_design")
print(icons)
# Output: ['Pumpe', 'Ventil', 'Motor', ...]
Source code in src\shared_services\rendering\icons\font_renderer.py
get_font(font_id, size=16)
¶
Get a QFont configured for icon rendering.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
font_id
|
str
|
Identifier of the loaded font. |
required |
size
|
int
|
Font size in points. |
16
|
Returns:
| Type | Description |
|---|---|
QFont
|
Configured QFont for rendering icons. |
QFont
|
Returns a default QFont if the font_id is not found. |
Example::
font = renderer.get_font("plant_design", size=24)
label.setFont(font)
Source code in src\shared_services\rendering\icons\font_renderer.py
get_icon_char(font_id, icon_name)
¶
Get the Unicode character for an icon name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
font_id
|
str
|
Identifier of the loaded font. |
required |
icon_name
|
str
|
Name of the icon (as defined in mapping file). |
required |
Returns:
| Type | Description |
|---|---|
str
|
Unicode character for the icon, or fallback character if not found. |
Example::
char = renderer.get_icon_char("plant_design", "Pumpe")
label.setText(char)
Source code in src\shared_services\rendering\icons\font_renderer.py
get_loaded_fonts()
¶
Get list of all loaded font identifiers.
Returns:
| Type | Description |
|---|---|
List[str]
|
List of font_id strings for all loaded fonts. |
instance()
classmethod
¶
Get the singleton instance.
Returns:
| Type | Description |
|---|---|
IconFontRenderer
|
The shared IconFontRenderer instance. |
Example::
renderer = IconFontRenderer.instance()
renderer.load_font("my_font", "path/to/font.ttf")
Source code in src\shared_services\rendering\icons\font_renderer.py
is_loaded(font_id)
¶
Check if a font is loaded.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
font_id
|
str
|
Identifier to check. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the font is loaded, False otherwise. |
Source code in src\shared_services\rendering\icons\font_renderer.py
load_font(font_id, ttf_path, mapping_source=None, fallback_char='?')
¶
Load a TTF icon font.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
font_id
|
str
|
Unique identifier for this font (e.g., "plant_design"). Used to reference the font in other methods. |
required |
ttf_path
|
str
|
Path to the .ttf file. |
required |
mapping_source
|
Optional[str]
|
Optional path to demo.html or JSON mapping file. If not provided, only the font is loaded without icon mappings. |
None
|
fallback_char
|
str
|
Character to use when requested icon is not found. |
'?'
|
Returns:
| Type | Description |
|---|---|
bool
|
True if the font was loaded successfully, False otherwise. |
Example::
renderer = IconFontRenderer.instance()
success = renderer.load_font(
"plant_design",
"fonts/plant_design.ttf",
"fonts/demo.html"
)
if success:
print("Font loaded!")
Source code in src\shared_services\rendering\icons\font_renderer.py
unload_font(font_id)
¶
Unload a font from the renderer.
Note that the font remains in Qt's font database; this only removes it from the renderer's tracking.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
font_id
|
str
|
Identifier of the font to unload. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the font was unloaded, False if not found. |
Source code in src\shared_services\rendering\icons\font_renderer.py
IconRegistry
¶
Manages icon registration for widgets with automatic theme updates.
This class tracks widgets that display icons and automatically updates their icons when the application theme changes. It uses weak references to avoid memory leaks from deleted widgets.
Example
Basic usage::
registry = IconRegistry.instance()
# Register widgets
registry.register(home_button, Icons.Action.Home, size=24)
registry.register(settings_button, Icons.Action.Settings, size=24)
# Later, switch theme
registry.set_theme("dark") # All icons update automatically
Note
This class is a singleton. Use IconRegistry.instance() to get the shared instance.
Source code in src\shared_services\rendering\icons\icon_registry.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 | |
__init__()
¶
cleanup()
¶
Remove references to deleted widgets.
This method removes any entries for widgets that have been garbage collected. It is called automatically during updates, but can be called manually to free memory.
Source code in src\shared_services\rendering\icons\icon_registry.py
get_registered_count()
¶
Get the number of registered widgets.
Note that this includes widgets that may have been deleted but not yet cleaned up.
Returns:
| Type | Description |
|---|---|
int
|
Number of registered entries. |
Source code in src\shared_services\rendering\icons\icon_registry.py
get_theme()
¶
Get the current theme.
Returns:
| Type | Description |
|---|---|
str
|
Current theme name ("light" or "dark"). |
instance()
classmethod
¶
Get the singleton instance.
Returns:
| Type | Description |
|---|---|
IconRegistry
|
The shared IconRegistry instance. |
register(widget, icon, size=24, color='primary', as_pixmap=False)
¶
Register a widget for icon management.
The widget will have its icon set immediately and will be automatically updated when the theme changes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
widget
|
QWidget
|
The widget to set icon on. Must have setIcon() or setPixmap() method. |
required |
icon
|
Union[PathDef, str]
|
PathDef from icon constants, or path string. |
required |
size
|
int
|
Icon size in pixels. |
24
|
color
|
str
|
Semantic color name ("primary", "error", etc.) or hex color ("#RRGGBB"). |
'primary'
|
as_pixmap
|
bool
|
If True, use setPixmap() instead of setIcon(). Use this for QLabel widgets. |
False
|
Example::
registry = IconRegistry.instance()
registry.register(button, Icons.Action.Home)
registry.register(label, Icons.Action.Info, as_pixmap=True)
Source code in src\shared_services\rendering\icons\icon_registry.py
set_theme(theme)
¶
Switch theme and update all registered icons.
This method changes the current theme and re-renders all registered icons with the new theme colors.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
theme
|
str
|
Theme name ("light" or "dark"). |
required |
Example::
registry.set_theme("dark") # All icons update to dark theme
Source code in src\shared_services\rendering\icons\icon_registry.py
unregister(widget)
¶
Unregister a widget from icon management.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
widget
|
QWidget
|
The widget to unregister. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the widget was found and unregistered, False otherwise. |
Source code in src\shared_services\rendering\icons\icon_registry.py
update_all()
¶
Force update all registered icons.
This can be used to refresh icons after changing color settings or when widgets need to be refreshed.
Icons
¶
Application icons organized by Material Design category.
Source code in src\shared_services\rendering\icons\icon_paths.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 | |
AV
¶
Audio, video, and media playback icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 | |
ControlCamera = PathDef(f'{_MATERIAL_ICONS}/av/control_camera.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Camera control with arrows.
FastForward = PathDef(f'{_MATERIAL_ICONS}/av/fast_forward.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Double right arrows for fast forward.
FastRewind = PathDef(f'{_MATERIAL_ICONS}/av/fast_rewind.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Double left arrows for rewind.
Mic = PathDef(f'{_MATERIAL_ICONS}/av/mic.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Microphone.
MicOff = PathDef(f'{_MATERIAL_ICONS}/av/mic_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Muted microphone.
Note = PathDef(f'{_MATERIAL_ICONS}/av/note.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Musical note.
Pause = PathDef(f'{_MATERIAL_ICONS}/av/pause.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two vertical bars for pause.
PlayArrow = PathDef(f'{_MATERIAL_ICONS}/av/play_arrow.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Triangle pointing right for play.
Replay = PathDef(f'{_MATERIAL_ICONS}/av/replay.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Counter-clockwise arrow for replay.
SkipNext = PathDef(f'{_MATERIAL_ICONS}/av/skip_next.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Triangle with line for skip next.
SkipPrevious = PathDef(f'{_MATERIAL_ICONS}/av/skip_previous.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Triangle with line for skip previous.
Speed = PathDef(f'{_MATERIAL_ICONS}/av/speed.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Speedometer for playback speed.
Stop = PathDef(f'{_MATERIAL_ICONS}/av/stop.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Square for stop.
Videocam = PathDef(f'{_MATERIAL_ICONS}/av/videocam.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Video camera.
VideocamOff = PathDef(f'{_MATERIAL_ICONS}/av/videocam_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Disabled video camera.
VolumeDown = PathDef(f'{_MATERIAL_ICONS}/av/volume_down.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Speaker with one wave for low volume.
VolumeMute = PathDef(f'{_MATERIAL_ICONS}/av/volume_mute.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Speaker without waves for mute.
VolumeOff = PathDef(f'{_MATERIAL_ICONS}/av/volume_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Speaker with X for muted.
VolumeUp = PathDef(f'{_MATERIAL_ICONS}/av/volume_up.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Speaker with multiple waves for high volume.
Action
¶
Action and interaction icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 | |
AccountBalance = PathDef(f'{_MATERIAL_ICONS}/action/account_balance.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Bank or financial institution building.
AccountBalanceWallet = PathDef(f'{_MATERIAL_ICONS}/action/account_balance_wallet.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Wallet for payment or financial transactions.
AccountBox = PathDef(f'{_MATERIAL_ICONS}/action/account_box.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
User profile in a square box.
AccountCircle = PathDef(f'{_MATERIAL_ICONS}/action/account_circle.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
User profile in a circle.
AddShoppingCart = PathDef(f'{_MATERIAL_ICONS}/action/add_shopping_cart.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shopping cart with plus sign.
AdminPanelSettings = PathDef(f'{_MATERIAL_ICONS}/action/admin_panel_settings.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shield with gear for admin settings.
Alarm = PathDef(f'{_MATERIAL_ICONS}/action/alarm.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Alarm clock.
AlarmOff = PathDef(f'{_MATERIAL_ICONS}/action/alarm_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Disabled alarm clock.
AlarmOn = PathDef(f'{_MATERIAL_ICONS}/action/alarm_on.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Active alarm clock with checkmark.
Analytics = PathDef(f'{_MATERIAL_ICONS}/action/analytics.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Analytics chart or statistics.
Api = PathDef(f'{_MATERIAL_ICONS}/action/api.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
API or programming interface.
Article = PathDef(f'{_MATERIAL_ICONS}/action/article.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Document or article with text.
AspectRatio = PathDef(f'{_MATERIAL_ICONS}/action/aspect_ratio.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Screen aspect ratio adjustment.
Autorenew = PathDef(f'{_MATERIAL_ICONS}/action/autorenew.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Circular refresh or auto-renewal.
Backup = PathDef(f'{_MATERIAL_ICONS}/action/backup.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Cloud backup with upload arrow.
Bookmark = PathDef(f'{_MATERIAL_ICONS}/action/bookmark.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Single bookmark flag.
Bookmarks = PathDef(f'{_MATERIAL_ICONS}/action/bookmarks.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Multiple bookmarks.
Build = PathDef(f'{_MATERIAL_ICONS}/action/build.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Wrench for building or configuration.
Cached = PathDef(f'{_MATERIAL_ICONS}/action/cached.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Circular arrows for cache or refresh.
CalendarMonth = PathDef(f'{_MATERIAL_ICONS}/action/calendar_month.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Calendar with month view.
CalendarToday = PathDef(f'{_MATERIAL_ICONS}/action/calendar_today.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Calendar showing today's date.
CheckCircle = PathDef(f'{_MATERIAL_ICONS}/action/check_circle.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Checkmark in a circle for success.
Code = PathDef(f'{_MATERIAL_ICONS}/action/code.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Code brackets for programming.
ContactPage = PathDef(f'{_MATERIAL_ICONS}/action/contact_page.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Contact information page.
CreditCard = PathDef(f'{_MATERIAL_ICONS}/action/credit_card.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Credit or payment card.
CurrencyExchange = PathDef(f'{_MATERIAL_ICONS}/action/currency_exchange.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Currency exchange or conversion.
Dashboard = PathDef(f'{_MATERIAL_ICONS}/action/dashboard.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Dashboard or control panel.
DateRange = PathDef(f'{_MATERIAL_ICONS}/action/date_range.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Date range selection.
Delete = PathDef(f'{_MATERIAL_ICONS}/action/delete.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Trash bin for deletion.
Description = PathDef(f'{_MATERIAL_ICONS}/action/description.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Document with description text.
DisplaySettings = PathDef(f'{_MATERIAL_ICONS}/action/display_settings.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Display or screen settings.
Dns = PathDef(f'{_MATERIAL_ICONS}/action/dns.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
DNS or server stack.
Done = PathDef(f'{_MATERIAL_ICONS}/action/done.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Single checkmark for completion.
DoneAll = PathDef(f'{_MATERIAL_ICONS}/action/done_all.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Double checkmark for all completed.
DonutLarge = PathDef(f'{_MATERIAL_ICONS}/action/donut_large.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Large donut chart.
DonutSmall = PathDef(f'{_MATERIAL_ICONS}/action/donut_small.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Small donut chart.
DragIndicator = PathDef(f'{_MATERIAL_ICONS}/action/drag_indicator.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Six dots for drag handle.
Event = PathDef(f'{_MATERIAL_ICONS}/action/event.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Calendar event or appointment.
ExitToApp = PathDef(f'{_MATERIAL_ICONS}/action/exit_to_app.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow exiting a box.
Explore = PathDef(f'{_MATERIAL_ICONS}/action/explore.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Compass for exploration.
Extension = PathDef(f'{_MATERIAL_ICONS}/action/extension.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Puzzle piece for extensions.
ExtensionOff = PathDef(f'{_MATERIAL_ICONS}/action/extension_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Disabled extension.
FactCheck = PathDef(f'{_MATERIAL_ICONS}/action/fact_check.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Document with verification checkmarks.
Favorite = PathDef(f'{_MATERIAL_ICONS}/action/favorite.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Heart for favorites.
FilePresent = PathDef(f'{_MATERIAL_ICONS}/action/file_present.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
File with checkmark for presence.
FilterAlt = PathDef(f'{_MATERIAL_ICONS}/action/filter_alt.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Funnel for filtering.
FitScreen = PathDef(f'{_MATERIAL_ICONS}/action/fit_screen.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Fit content to screen.
Help = PathDef(f'{_MATERIAL_ICONS}/action/help.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Question mark for help.
History = PathDef(f'{_MATERIAL_ICONS}/action/history.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Clock with counter-clockwise arrow.
Home = PathDef(f'{_MATERIAL_ICONS}/action/home.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
House for home screen.
HourglassEmpty = PathDef(f'{_MATERIAL_ICONS}/action/hourglass_empty.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Empty hourglass for waiting.
HourglassFull = PathDef(f'{_MATERIAL_ICONS}/action/hourglass_full.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Full hourglass.
Info = PathDef(f'{_MATERIAL_ICONS}/action/info.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Information circle.
Input = PathDef(f'{_MATERIAL_ICONS}/action/input.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow entering a box for input.
IntegrationInstructions = PathDef(f'{_MATERIAL_ICONS}/action/integration_instructions.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Code document for integration.
Label = PathDef(f'{_MATERIAL_ICONS}/action/label.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Tag or label.
LabelOff = PathDef(f'{_MATERIAL_ICONS}/action/label_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Disabled label.
Language = PathDef(f'{_MATERIAL_ICONS}/action/language.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Globe for language selection.
Leaderboard = PathDef(f'{_MATERIAL_ICONS}/action/leaderboard.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Bar chart podium for rankings.
Lightbulb = PathDef(f'{_MATERIAL_ICONS}/action/lightbulb.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Light bulb for ideas or tips.
Lock = PathDef(f'{_MATERIAL_ICONS}/action/lock.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Closed padlock for security.
LockOpen = PathDef(f'{_MATERIAL_ICONS}/action/lock_open.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Open padlock for unlocked state.
Login = PathDef(f'{_MATERIAL_ICONS}/action/login.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow entering door for login.
Logout = PathDef(f'{_MATERIAL_ICONS}/action/logout.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow exiting door for logout.
ManageAccounts = PathDef(f'{_MATERIAL_ICONS}/action/manage_accounts.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
User with gear for account management.
OpenInFull = PathDef(f'{_MATERIAL_ICONS}/action/open_in_full.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Expand arrows for fullscreen.
OpenInNew = PathDef(f'{_MATERIAL_ICONS}/action/open_in_new.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow pointing to external window.
Outbox = PathDef(f'{_MATERIAL_ICONS}/action/outbox.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Outbox tray with arrow.
Paid = PathDef(f'{_MATERIAL_ICONS}/action/paid.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Dollar sign in circle for payment.
Pending = PathDef(f'{_MATERIAL_ICONS}/action/pending.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Three dots for pending status.
Pin = PathDef(f'{_MATERIAL_ICONS}/action/keep_pin.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Pin it marker.
PinOff = PathDef(f'{_MATERIAL_ICONS}/action/keep_pin_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Pin off marker.
Print = PathDef(f'{_MATERIAL_ICONS}/action/print.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Printer for printing.
PrivacyTip = PathDef(f'{_MATERIAL_ICONS}/action/privacy_tip.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shield with info for privacy.
PublishedWithChanges = PathDef(f'{_MATERIAL_ICONS}/action/published_with_changes.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Document with circular arrows.
Receipt = PathDef(f'{_MATERIAL_ICONS}/action/receipt.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Receipt or invoice.
RemoveShoppingCart = PathDef(f'{_MATERIAL_ICONS}/action/remove_shopping_cart.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shopping cart with remove sign.
Reorder = PathDef(f'{_MATERIAL_ICONS}/action/reorder.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Horizontal lines for reordering.
Rule = PathDef(f'{_MATERIAL_ICONS}/action/rule.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Check and X marks for validation.
Schedule = PathDef(f'{_MATERIAL_ICONS}/action/schedule.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Clock for scheduling.
Search = PathDef(f'{_MATERIAL_ICONS}/action/search.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Magnifying glass for search.
Sensors = PathDef(f'{_MATERIAL_ICONS}/action/sensors.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Signal waves for sensors.
Settings = PathDef(f'{_MATERIAL_ICONS}/action/settings.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Gear for settings.
SettingsApplications = PathDef(f'{_MATERIAL_ICONS}/action/settings_applications.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Gear in a box for app settings.
SettingsInputComponent = PathDef(f'{_MATERIAL_ICONS}/action/settings_input_component.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Component connectors for hardware settings.
ShoppingCart = PathDef(f'{_MATERIAL_ICONS}/action/shopping_cart.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shopping cart.
SpellCheck = PathDef(f'{_MATERIAL_ICONS}/action/spellcheck.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Spell check icon.
SpellCheckLetter = PathDef(f'{_MATERIAL_ICONS}/action/spellcheck_letter.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Spell check icon -- letter A only (for dual-color rendering).
SpellCheckMark = PathDef(f'{_MATERIAL_ICONS}/action/spellcheck_mark.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Spell check icon -- checkmark only (for dual-color rendering).
Store = PathDef(f'{_MATERIAL_ICONS}/action/store.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Store or shop front.
SupervisorAccount = PathDef(f'{_MATERIAL_ICONS}/action/supervisor_account.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two users for team supervision.
TaskAlt = PathDef(f'{_MATERIAL_ICONS}/action/task_alt.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Checkmark in circle for completed task.
Terminal = PathDef(f'{_MATERIAL_ICONS}/action/terminal.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Command line terminal.
ThumbDown = PathDef(f'{_MATERIAL_ICONS}/action/thumb_down.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Thumbs down for dislike.
ThumbUp = PathDef(f'{_MATERIAL_ICONS}/action/thumb_up.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Thumbs up for like.
Timeline = PathDef(f'{_MATERIAL_ICONS}/action/timeline.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Line chart for timeline.
Today = PathDef(f'{_MATERIAL_ICONS}/action/today.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Calendar with today highlighted.
TrackChanges = PathDef(f'{_MATERIAL_ICONS}/action/track_changes.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Target with arrow for tracking.
Translate = PathDef(f'{_MATERIAL_ICONS}/action/translate.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Translation or language.
TrendingDown = PathDef(f'{_MATERIAL_ICONS}/action/trending_down.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Downward trend arrow.
TrendingFlat = PathDef(f'{_MATERIAL_ICONS}/action/trending_flat.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Flat or stable trend arrow.
TrendingUp = PathDef(f'{_MATERIAL_ICONS}/action/trending_up.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Upward trend arrow.
Update = PathDef(f'{_MATERIAL_ICONS}/action/update.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Clock with arrow for updates.
Verified = PathDef(f'{_MATERIAL_ICONS}/action/verified.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Badge with checkmark for verification.
VerifiedUser = PathDef(f'{_MATERIAL_ICONS}/action/verified_user.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shield with checkmark for verified user.
ViewAgenda = PathDef(f'{_MATERIAL_ICONS}/action/view_agenda.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Agenda or list view.
ViewColumn = PathDef(f'{_MATERIAL_ICONS}/action/view_column.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Column layout view.
ViewList = PathDef(f'{_MATERIAL_ICONS}/action/view_list.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
List view with lines.
ViewModule = PathDef(f'{_MATERIAL_ICONS}/action/view_module.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Grid or module view.
Visibility = PathDef(f'{_MATERIAL_ICONS}/action/visibility.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Open eye for visible.
VisibilityOff = PathDef(f'{_MATERIAL_ICONS}/action/visibility_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Crossed eye for hidden.
Webhook = PathDef(f'{_MATERIAL_ICONS}/action/webhook.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Webhook or integration hook.
ZoomIn = PathDef(f'{_MATERIAL_ICONS}/action/zoom_in.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Magnifying glass with plus for zoom in.
ZoomOut = PathDef(f'{_MATERIAL_ICONS}/action/zoom_out.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Magnifying glass with minus for zoom out.
Alert
¶
Warning and error notification icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
Communication
¶
Communication and messaging icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 | |
Call = PathDef(f'{_MATERIAL_ICONS}/communication/call.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Phone handset.
Chat = PathDef(f'{_MATERIAL_ICONS}/communication/chat.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two chat bubbles.
ChatBubble = PathDef(f'{_MATERIAL_ICONS}/communication/chat_bubble.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Single chat bubble.
Comment = PathDef(f'{_MATERIAL_ICONS}/communication/comment.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Comment or speech bubble.
ContactPhone = PathDef(f'{_MATERIAL_ICONS}/communication/contact_phone.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Contact card with phone.
Forum = PathDef(f'{_MATERIAL_ICONS}/communication/forum.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Three chat bubbles for forum.
Hub = PathDef(f'{_MATERIAL_ICONS}/communication/hub.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Central hub with connections.
Key = PathDef(f'{_MATERIAL_ICONS}/communication/key.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Key for access or authentication.
LocationOff = PathDef(f'{_MATERIAL_ICONS}/communication/location_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Disabled location marker.
MarkEmailRead = PathDef(f'{_MATERIAL_ICONS}/communication/mark_email_read.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Envelope with checkmark for read.
MarkEmailUnread = PathDef(f'{_MATERIAL_ICONS}/communication/mark_email_unread.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Envelope with dot for unread.
QrCode = PathDef(f'{_MATERIAL_ICONS}/communication/qr_code.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
QR code.
QrCodeScanner = PathDef(f'{_MATERIAL_ICONS}/communication/qr_code_scanner.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
QR code with scan frame.
ScreenShare = PathDef(f'{_MATERIAL_ICONS}/communication/screen_share.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Monitor with arrow for screen sharing.
VpnKey = PathDef(f'{_MATERIAL_ICONS}/communication/vpn_key.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
VPN key for secure connection.
Content
¶
Content manipulation and editing icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 | |
Add = PathDef(f'{_MATERIAL_ICONS}/content/add.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Plus sign for adding.
AddBox = PathDef(f'{_MATERIAL_ICONS}/content/add_box.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Plus sign in a box.
AddCircle = PathDef(f'{_MATERIAL_ICONS}/content/add_circle.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Plus sign in a circle.
Biotech = PathDef(f'{_MATERIAL_ICONS}/content/biotech.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Microscope for biotechnology.
Block = PathDef(f'{_MATERIAL_ICONS}/content/block.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Circle with line for blocked.
Bolt = PathDef(f'{_MATERIAL_ICONS}/content/bolt.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Lightning bolt.
Calculate = PathDef(f'{_MATERIAL_ICONS}/content/calculate.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Calculator.
ContentCopy = PathDef(f'{_MATERIAL_ICONS}/content/content_copy.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two overlapping pages for copy.
ContentCut = PathDef(f'{_MATERIAL_ICONS}/content/content_cut.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Scissors for cut.
ContentPaste = PathDef(f'{_MATERIAL_ICONS}/content/content_paste.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Clipboard for paste.
Deselect = PathDef(f'{_MATERIAL_ICONS}/content/deselect.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Crossed selection box for deselect.
Drafts = PathDef(f'{_MATERIAL_ICONS}/content/drafts.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Open envelope for drafts.
FileCopy = PathDef(f'{_MATERIAL_ICONS}/content/file_copy.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two documents for file copy.
FilterList = PathDef(f'{_MATERIAL_ICONS}/content/filter_list.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Horizontal lines for filter list.
Flag = PathDef(f'{_MATERIAL_ICONS}/content/flag.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Flag for marking or flagging.
Inbox = PathDef(f'{_MATERIAL_ICONS}/content/inbox.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Inbox tray.
Insights = PathDef(f'{_MATERIAL_ICONS}/content/insights.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Chart with lightbulb for insights.
Inventory = PathDef(f'{_MATERIAL_ICONS}/content/inventory.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Box with checkmark for inventory.
Inventory2 = PathDef(f'{_MATERIAL_ICONS}/content/inventory_2.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Open box for inventory.
Link = PathDef(f'{_MATERIAL_ICONS}/content/link.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Chain links for hyperlink.
LinkOff = PathDef(f'{_MATERIAL_ICONS}/content/link_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Broken chain for unlinked.
LowPriority = PathDef(f'{_MATERIAL_ICONS}/content/low_priority.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow curving down for low priority.
Mail = PathDef(f'{_MATERIAL_ICONS}/content/mail.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Envelope for email.
PushPin = PathDef(f'{_MATERIAL_ICONS}/content/push_pin.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Pin for pinning content.
Redo = PathDef(f'{_MATERIAL_ICONS}/content/redo.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Curved arrow right for redo.
Remove = PathDef(f'{_MATERIAL_ICONS}/content/remove.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Minus sign for removing.
Report = PathDef(f'{_MATERIAL_ICONS}/content/report.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Octagon with exclamation for report.
Save = PathDef(f'{_MATERIAL_ICONS}/content/save.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Floppy disk for save.
SelectAll = PathDef(f'{_MATERIAL_ICONS}/content/select_all.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Dotted box for select all.
Send = PathDef(f'{_MATERIAL_ICONS}/content/send.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Paper airplane for send.
Shield = PathDef(f'{_MATERIAL_ICONS}/content/shield.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shield for protection.
Sort = PathDef(f'{_MATERIAL_ICONS}/content/sort.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Lines for sorting.
SquareFoot = PathDef(f'{_MATERIAL_ICONS}/content/square_foot.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Right angle ruler for measurement.
Undo = PathDef(f'{_MATERIAL_ICONS}/content/undo.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Curved arrow left for undo.
Device
¶
Device status and hardware icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 | |
Air = PathDef(f'{_MATERIAL_ICONS}/device/air.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Wavy lines for air or wind.
BatteryChargingFull = PathDef(f'{_MATERIAL_ICONS}/device/battery_charging_full.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Full battery with charging indicator.
BatteryFull = PathDef(f'{_MATERIAL_ICONS}/device/battery_full.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Full battery.
Bluetooth = PathDef(f'{_MATERIAL_ICONS}/device/bluetooth.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Bluetooth symbol.
BluetoothConnected = PathDef(f'{_MATERIAL_ICONS}/device/bluetooth_connected.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Bluetooth connected with dots.
BluetoothDisabled = PathDef(f'{_MATERIAL_ICONS}/device/bluetooth_disabled.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Crossed Bluetooth for disabled.
BrightnessMedium = PathDef(f'{_MATERIAL_ICONS}/device/brightness_medium.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Half sun for medium brightness.
Cable = PathDef(f'{_MATERIAL_ICONS}/device/cable.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Cable or wire.
DarkMode = PathDef(f'{_MATERIAL_ICONS}/device/dark_mode.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Moon for dark mode.
DataUsage = PathDef(f'{_MATERIAL_ICONS}/device/data_usage.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Circular progress for data usage.
DeviceThermostat = PathDef(f'{_MATERIAL_ICONS}/device/device_thermostat.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Thermometer for temperature.
Lan = PathDef(f'{_MATERIAL_ICONS}/device/lan.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Network nodes for LAN.
LightMode = PathDef(f'{_MATERIAL_ICONS}/device/light_mode.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Sun for light mode.
Password = PathDef(f'{_MATERIAL_ICONS}/device/password.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Asterisks for password.
RestartAlt = PathDef(f'{_MATERIAL_ICONS}/device/restart_alt.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Circular arrow for restart.
SignalCellularAlt = PathDef(f'{_MATERIAL_ICONS}/device/signal_cellular_alt.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Signal bars for cellular strength.
SignalWifi4Bar = PathDef(f'{_MATERIAL_ICONS}/device/signal_wifi_4_bar.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Full WiFi signal.
Storage = PathDef(f'{_MATERIAL_ICONS}/device/storage.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Stacked disks for storage.
Thermostat = PathDef(f'{_MATERIAL_ICONS}/device/thermostat.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Thermostat dial.
Usb = PathDef(f'{_MATERIAL_ICONS}/device/usb.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
USB symbol.
Widgets = PathDef(f'{_MATERIAL_ICONS}/device/widgets.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Various shapes for widgets.
Editor
¶
Text editing and formatting icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 | |
AttachFile = PathDef(f'{_MATERIAL_ICONS}/editor/attach_file.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Paperclip for file attachment.
AttachMoney = PathDef(f'{_MATERIAL_ICONS}/editor/attach_money.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Dollar sign.
BarChart = PathDef(f'{_MATERIAL_ICONS}/editor/bar_chart.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Vertical bar chart.
Checklist = PathDef(f'{_MATERIAL_ICONS}/editor/checklist.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
List with checkmarks.
DataObject = PathDef(f'{_MATERIAL_ICONS}/editor/data_object.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Curly braces for JSON/data object.
DragHandle = PathDef(f'{_MATERIAL_ICONS}/editor/drag_handle.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two horizontal lines for drag.
Functions = PathDef(f'{_MATERIAL_ICONS}/editor/functions.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Fx symbol for functions.
Notes = PathDef(f'{_MATERIAL_ICONS}/editor/notes.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Text lines for notes.
Numbers = PathDef(f'{_MATERIAL_ICONS}/editor/numbers.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Number symbol.
PieChart = PathDef(f'{_MATERIAL_ICONS}/editor/pie_chart.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Pie chart.
QueryStats = PathDef(f'{_MATERIAL_ICONS}/editor/query_stats.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Chart with magnifying glass.
ShowChart = PathDef(f'{_MATERIAL_ICONS}/editor/show_chart.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Line chart trending up.
StackedLineChart = PathDef(f'{_MATERIAL_ICONS}/editor/stacked_line_chart.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Multiple overlapping line charts.
TableChart = PathDef(f'{_MATERIAL_ICONS}/editor/table_chart.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Table grid for data tables.
TextFields = PathDef(f'{_MATERIAL_ICONS}/editor/text_fields.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
T symbol for text fields.
File
¶
File operations and cloud storage icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 | |
Attachment = PathDef(f'{_MATERIAL_ICONS}/file/attachment.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Paperclip for attachment.
Cloud = PathDef(f'{_MATERIAL_ICONS}/file/cloud.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Cloud shape.
CloudDone = PathDef(f'{_MATERIAL_ICONS}/file/cloud_done.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Cloud with checkmark.
CloudDownload = PathDef(f'{_MATERIAL_ICONS}/file/cloud_download.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Cloud with down arrow.
CloudOff = PathDef(f'{_MATERIAL_ICONS}/file/cloud_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Cloud with slash for offline.
CloudUpload = PathDef(f'{_MATERIAL_ICONS}/file/cloud_upload.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Cloud with up arrow.
CreateNewFolder = PathDef(f'{_MATERIAL_ICONS}/file/create_new_folder.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Folder with plus sign.
Download = PathDef(f'{_MATERIAL_ICONS}/file/download.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Down arrow for download.
DriveFileMove = PathDef(f'{_MATERIAL_ICONS}/file/drive_file_move.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Folder with arrow for move.
Folder = PathDef(f'{_MATERIAL_ICONS}/file/folder.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Closed folder.
FolderOpen = PathDef(f'{_MATERIAL_ICONS}/file/folder_open.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Open folder.
GridView = PathDef(f'{_MATERIAL_ICONS}/file/grid_view.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Grid of squares for grid view.
Upload = PathDef(f'{_MATERIAL_ICONS}/file/upload.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Up arrow for upload.
Hardware
¶
Computer hardware and device icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 | |
Computer = PathDef(f'{_MATERIAL_ICONS}/hardware/computer.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Desktop computer.
DesktopWindows = PathDef(f'{_MATERIAL_ICONS}/hardware/desktop_windows.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Desktop monitor.
DeveloperBoard = PathDef(f'{_MATERIAL_ICONS}/hardware/developer_board.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Circuit board.
Keyboard = PathDef(f'{_MATERIAL_ICONS}/hardware/keyboard.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Keyboard.
Memory = PathDef(f'{_MATERIAL_ICONS}/hardware/memory.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
RAM or memory chip.
Monitor = PathDef(f'{_MATERIAL_ICONS}/hardware/monitor.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Computer monitor.
Mouse = PathDef(f'{_MATERIAL_ICONS}/hardware/mouse.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Computer mouse.
PointOfSale = PathDef(f'{_MATERIAL_ICONS}/hardware/point_of_sale.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Point of sale terminal.
Router = PathDef(f'{_MATERIAL_ICONS}/hardware/router.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Network router.
Scanner = PathDef(f'{_MATERIAL_ICONS}/hardware/scanner.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Document scanner.
Security = PathDef(f'{_MATERIAL_ICONS}/hardware/security.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shield for security.
SimCard = PathDef(f'{_MATERIAL_ICONS}/hardware/sim_card.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
SIM card.
SmartToy = PathDef(f'{_MATERIAL_ICONS}/hardware/smart_toy.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Robot or AI assistant.
Tablet = PathDef(f'{_MATERIAL_ICONS}/hardware/tablet.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Tablet device.
Tv = PathDef(f'{_MATERIAL_ICONS}/hardware/tv.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Television screen.
Home
¶
Home utilities and energy icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
ElectricBolt = PathDef(f'{_MATERIAL_ICONS}/home/electric_bolt.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Lightning bolt for electricity.
GasMeter = PathDef(f'{_MATERIAL_ICONS}/home/gas_meter.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Gas meter gauge.
OilBarrel = PathDef(f'{_MATERIAL_ICONS}/home/oil_barrel.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Oil barrel or drum.
PropaneTank = PathDef(f'{_MATERIAL_ICONS}/home/propane_tank.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Propane gas tank.
Image
¶
Image editing and photography icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 | |
Adjust = PathDef(f'{_MATERIAL_ICONS}/image/adjust.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Circle with half fill for adjustment.
Circle = PathDef(f'{_MATERIAL_ICONS}/image/circle.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Filled circle.
Contrast = PathDef(f'{_MATERIAL_ICONS}/image/contrast.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Half black half white circle.
Crop = PathDef(f'{_MATERIAL_ICONS}/image/crop.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Crop frame corners.
Edit = PathDef(f'{_MATERIAL_ICONS}/image/edit.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Pencil for editing.
Flip = PathDef(f'{_MATERIAL_ICONS}/image/flip.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two triangles for flip.
GridOn = PathDef(f'{_MATERIAL_ICONS}/image/grid_on.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Grid overlay.
ImageIcon = PathDef(f'{_MATERIAL_ICONS}/image/image.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Picture frame with mountain.
Palette = PathDef(f'{_MATERIAL_ICONS}/image/palette.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Artist palette for colors.
Photo = PathDef(f'{_MATERIAL_ICONS}/image/photo.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Photo with landscape.
PhotoCamera = PathDef(f'{_MATERIAL_ICONS}/image/photo_camera.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Camera.
PhotoLibrary = PathDef(f'{_MATERIAL_ICONS}/image/photo_library.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Stack of photos.
PictureAsPdf = PathDef(f'{_MATERIAL_ICONS}/image/picture_as_pdf.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
PDF document icon.
ReceiptLong = PathDef(f'{_MATERIAL_ICONS}/image/receipt_long.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Long receipt or list.
RotateLeft = PathDef(f'{_MATERIAL_ICONS}/image/rotate_left.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Counter-clockwise rotation arrow.
RotateRight = PathDef(f'{_MATERIAL_ICONS}/image/rotate_right.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Clockwise rotation arrow.
Straighten = PathDef(f'{_MATERIAL_ICONS}/image/straighten.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Ruler for straightening.
Timelapse = PathDef(f'{_MATERIAL_ICONS}/image/timelapse.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Clock with motion for timelapse.
Timer = PathDef(f'{_MATERIAL_ICONS}/image/timer.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Timer clock.
Tune = PathDef(f'{_MATERIAL_ICONS}/image/tune.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Sliders for fine-tuning.
Industrial
¶
Industrial, logistics, and specialized icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 | |
Barcode = PathDef(f'{_MATERIAL_ICONS}/Others/barcode.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Barcode for scanning.
ConveyorBelt = PathDef(f'{_MATERIAL_ICONS}/Others/conveyor_belt.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Conveyor belt with boxes.
ExportNotes = PathDef(f'{_MATERIAL_ICONS}/Others/export_notes.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Document with export arrow.
Forklift = PathDef(f'{_MATERIAL_ICONS}/Others/forklift.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Forklift for logistics.
HardDrive = PathDef(f'{_MATERIAL_ICONS}/Others/hard_drive.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Hard drive storage device.
Heat = PathDef(f'{_MATERIAL_ICONS}/Others/heat.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Wavy lines for heat.
Monitoring = PathDef(f'{_MATERIAL_ICONS}/Others/monitoring.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Chart for monitoring.
Package = PathDef(f'{_MATERIAL_ICONS}/Others/package.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Package or box.
Pallet = PathDef(f'{_MATERIAL_ICONS}/Others/pallet.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shipping pallet.
Table = PathDef(f'{_MATERIAL_ICONS}/Others/table.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Data table or grid.
Logos
¶
Brand and logo images.
Source code in src\shared_services\rendering\icons\icon_paths.py
GehaAnlagenbauPNG = PathDef('.app_data/icons/logos/geha_anlagenbau.png', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Geha Anlagenbau company logo (PNG format).
GehaLogoPNG = PathDef('.app_data/icons/logos/GehaSoftwareHub.png', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
GehaSoftware logo (PNG format).
GehaLogoSVG = PathDef('.app_data/icons/logos/GehaSoftwareHub.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
GehaSoftware logo (SVG format).
GitHub = PathDef('.app_data/icons/logos/github-mark.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
GitHub logo for OAuth login and external links.
Maps
¶
Maps, location, and navigation icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 | |
Badge = PathDef(f'{_MATERIAL_ICONS}/maps/badge.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
ID badge or credential.
Category = PathDef(f'{_MATERIAL_ICONS}/maps/category.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shapes for categorization.
CompassCalibration = PathDef(f'{_MATERIAL_ICONS}/maps/compass_calibration.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Compass for calibration.
Directions = PathDef(f'{_MATERIAL_ICONS}/maps/directions.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow sign for directions.
ElectricalServices = PathDef(f'{_MATERIAL_ICONS}/maps/electrical_services.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Power plug for electrical.
Factory = PathDef(f'{_MATERIAL_ICONS}/maps/factory.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Factory building with smokestacks.
Handyman = PathDef(f'{_MATERIAL_ICONS}/maps/handyman.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Wrench and screwdriver.
HardwareIcon = PathDef(f'{_MATERIAL_ICONS}/maps/hardware.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Hammer for hardware tools.
LocalShipping = PathDef(f'{_MATERIAL_ICONS}/maps/local_shipping.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Delivery truck.
Map = PathDef(f'{_MATERIAL_ICONS}/maps/map.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Folded map.
Money = PathDef(f'{_MATERIAL_ICONS}/maps/money.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Money or currency.
MyLocation = PathDef(f'{_MATERIAL_ICONS}/maps/my_location.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Crosshairs for current location.
Navigation = PathDef(f'{_MATERIAL_ICONS}/maps/navigation.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Navigation arrow pointer.
NearMe = PathDef(f'{_MATERIAL_ICONS}/maps/near_me.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow pointing nearby.
PinDrop = PathDef(f'{_MATERIAL_ICONS}/maps/pin_drop.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Location pin being dropped.
Place = PathDef(f'{_MATERIAL_ICONS}/maps/place.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Location marker pin.
Plumbing = PathDef(f'{_MATERIAL_ICONS}/maps/plumbing.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Pipe wrench for plumbing.
Warehouse = PathDef(f'{_MATERIAL_ICONS}/maps/warehouse.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Warehouse building.
Navigation
¶
Navigation and UI control icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 | |
Apps = PathDef(f'{_MATERIAL_ICONS}/navigation/apps.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Grid of dots for apps menu.
ArrowBack = PathDef(f'{_MATERIAL_ICONS}/navigation/arrow_back.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Left arrow for back.
ArrowDownward = PathDef(f'{_MATERIAL_ICONS}/navigation/arrow_downward.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Down arrow.
ArrowDropDown = PathDef(f'{_MATERIAL_ICONS}/navigation/arrow_drop_down.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Small down triangle.
ArrowDropUp = PathDef(f'{_MATERIAL_ICONS}/navigation/arrow_drop_up.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Small up triangle.
ArrowForward = PathDef(f'{_MATERIAL_ICONS}/navigation/arrow_forward.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Right arrow for forward.
ArrowLeft = PathDef(f'{_MATERIAL_ICONS}/navigation/arrow_left.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Left pointing arrow.
ArrowRight = PathDef(f'{_MATERIAL_ICONS}/navigation/arrow_right.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Right pointing arrow.
ArrowUpward = PathDef(f'{_MATERIAL_ICONS}/navigation/arrow_upward.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Up arrow.
Cancel = PathDef(f'{_MATERIAL_ICONS}/navigation/cancel.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
X in circle for cancel.
Check = PathDef(f'{_MATERIAL_ICONS}/navigation/check.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Simple checkmark.
ChevronLeft = PathDef(f'{_MATERIAL_ICONS}/navigation/chevron_left.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Left chevron angle.
ChevronRight = PathDef(f'{_MATERIAL_ICONS}/navigation/chevron_right.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Right chevron angle.
Close = PathDef(f'{_MATERIAL_ICONS}/navigation/close.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
X for close.
ExpandLess = PathDef(f'{_MATERIAL_ICONS}/navigation/expand_less.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Up chevron for collapse.
ExpandMore = PathDef(f'{_MATERIAL_ICONS}/navigation/expand_more.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Down chevron for expand.
FirstPage = PathDef(f'{_MATERIAL_ICONS}/navigation/first_page.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow with line for first page.
Fullscreen = PathDef(f'{_MATERIAL_ICONS}/navigation/fullscreen.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Corners expanding for fullscreen.
FullscreenExit = PathDef(f'{_MATERIAL_ICONS}/navigation/fullscreen_exit.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Corners contracting for exit fullscreen.
LastPage = PathDef(f'{_MATERIAL_ICONS}/navigation/last_page.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrow with line for last page.
Maximize = PathDef(f'{_MATERIAL_ICONS}/navigation/maximize.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Maximize window.
Menu = PathDef(f'{_MATERIAL_ICONS}/navigation/menu.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Three horizontal lines for menu.
MenuOpen = PathDef(f'{_MATERIAL_ICONS}/navigation/menu_open.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Menu with arrow for open menu.
MoreHoriz = PathDef(f'{_MATERIAL_ICONS}/navigation/more_horiz.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Three horizontal dots for more options.
MoreVert = PathDef(f'{_MATERIAL_ICONS}/navigation/more_vert.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Three vertical dots for more options.
Payments = PathDef(f'{_MATERIAL_ICONS}/navigation/payments.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Stack of cards for payments.
Refresh = PathDef(f'{_MATERIAL_ICONS}/navigation/refresh.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Circular arrow for refresh.
Restore = PathDef(f'{_MATERIAL_ICONS}/navigation/restore.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Restore window.
UnfoldLess = PathDef(f'{_MATERIAL_ICONS}/navigation/unfold_less.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrows pointing inward for collapse.
UnfoldMore = PathDef(f'{_MATERIAL_ICONS}/navigation/unfold_more.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Arrows pointing outward for expand.
Notification
¶
Notification and status icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 | |
DoNotDisturb = PathDef(f'{_MATERIAL_ICONS}/notification/do_not_disturb.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Minus in circle for do not disturb.
EventAvailable = PathDef(f'{_MATERIAL_ICONS}/notification/event_available.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Calendar with checkmark.
EventBusy = PathDef(f'{_MATERIAL_ICONS}/notification/event_busy.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Calendar with X for busy.
FolderSpecial = PathDef(f'{_MATERIAL_ICONS}/notification/folder_special.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Folder with star.
Power = PathDef(f'{_MATERIAL_ICONS}/notification/power.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Power button symbol.
PriorityHigh = PathDef(f'{_MATERIAL_ICONS}/notification/priority_high.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Exclamation mark for high priority.
Sms = PathDef(f'{_MATERIAL_ICONS}/notification/sms.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Chat bubble for SMS.
Sync = PathDef(f'{_MATERIAL_ICONS}/notification/sync.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two curved arrows for sync.
Wifi = PathDef(f'{_MATERIAL_ICONS}/notification/wifi.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
WiFi signal waves.
WifiOff = PathDef(f'{_MATERIAL_ICONS}/notification/wifi_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Crossed WiFi for disconnected.
Places
¶
Places and building icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
Carpenter = PathDef(f'{_MATERIAL_ICONS}/places/carpenter.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Saw for carpentry.
Foundation = PathDef(f'{_MATERIAL_ICONS}/places/foundation.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Building foundation blocks.
Roofing = PathDef(f'{_MATERIAL_ICONS}/places/roofing.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Roof with tool for roofing.
Storefront = PathDef(f'{_MATERIAL_ICONS}/places/storefront.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Shop front with awning.
Social
¶
Social and people icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 | |
Architecture = PathDef(f'{_MATERIAL_ICONS}/social/architecture.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Ruler triangle for architecture.
Construction = PathDef(f'{_MATERIAL_ICONS}/social/construction.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Hard hat for construction.
Domain = PathDef(f'{_MATERIAL_ICONS}/social/domain.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Building for domain or company.
Engineering = PathDef(f'{_MATERIAL_ICONS}/social/engineering.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Hard hat with gear for engineering.
Group = PathDef(f'{_MATERIAL_ICONS}/social/group.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Two people for group.
GroupAdd = PathDef(f'{_MATERIAL_ICONS}/social/group_add.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Group with plus to add member.
Groups = PathDef(f'{_MATERIAL_ICONS}/social/groups.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Multiple people for larger group.
HeartBroken = PathDef(f'{_MATERIAL_ICONS}/social/heart_broken.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Broken heart.
Notifications = PathDef(f'{_MATERIAL_ICONS}/social/notifications.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Bell for notifications.
NotificationsActive = PathDef(f'{_MATERIAL_ICONS}/social/notifications_active.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Ringing bell for active notifications.
NotificationsOff = PathDef(f'{_MATERIAL_ICONS}/social/notifications_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Crossed bell for muted notifications.
Person = PathDef(f'{_MATERIAL_ICONS}/social/person.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Single person silhouette.
PersonAdd = PathDef(f'{_MATERIAL_ICONS}/social/person_add.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Person with plus to add.
PersonRemove = PathDef(f'{_MATERIAL_ICONS}/social/person_remove.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Person with minus to remove.
PrecisionManufacturing = PathDef(f'{_MATERIAL_ICONS}/social/precision_manufacturing.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Robot arm for manufacturing.
Psychology = PathDef(f'{_MATERIAL_ICONS}/social/psychology.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Head with gear for psychology.
Public = PathDef(f'{_MATERIAL_ICONS}/social/public.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Globe for public or worldwide.
Science = PathDef(f'{_MATERIAL_ICONS}/social/science.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Flask for science.
Share = PathDef(f'{_MATERIAL_ICONS}/social/share.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Connected nodes for sharing.
WaterDrop = PathDef(f'{_MATERIAL_ICONS}/social/water_drop.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Water droplet.
Toggle
¶
Toggle and selection state icons.
Source code in src\shared_services\rendering\icons\icon_paths.py
2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 | |
CheckBox = PathDef(f'{_MATERIAL_ICONS}/toggle/check_box.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Checked checkbox.
CheckBoxOutlineBlank = PathDef(f'{_MATERIAL_ICONS}/toggle/check_box_outline_blank.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Unchecked checkbox outline.
DetachDialog = PathDef(f'{_MATERIAL_ICONS}/toggle/tab_duplicate.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Detach Icon for Dialogs.
IndeterminateCheckBox = PathDef(f'{_MATERIAL_ICONS}/toggle/indeterminate_check_box.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Checkbox with minus for indeterminate.
Preview = PathDef(f'{_MATERIAL_ICONS}/toggle/preview.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Preview icon.
PreviewOff = PathDef(f'{_MATERIAL_ICONS}/toggle/preview_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Preview off icon.
RadioButtonChecked = PathDef(f'{_MATERIAL_ICONS}/toggle/radio_button_checked.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Selected radio button.
RadioButtonUnchecked = PathDef(f'{_MATERIAL_ICONS}/toggle/radio_button_unchecked.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Unselected radio button.
ReattachDialog = PathDef(f'{_MATERIAL_ICONS}/toggle/tab_close.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Reattach Icon for Dialogs.
Star = PathDef(f'{_MATERIAL_ICONS}/toggle/star.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Filled star for favorite.
StarHalf = PathDef(f'{_MATERIAL_ICONS}/toggle/star_half.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Half-filled star.
ToggleOff = PathDef(f'{_MATERIAL_ICONS}/toggle/toggle_off.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Toggle switch in off position.
ToggleOn = PathDef(f'{_MATERIAL_ICONS}/toggle/toggle_on.svg', PathType.REPLACEABLE)
class-attribute
instance-attribute
¶
Toggle switch in on position.
MaterialIconFont
¶
Singleton managing the Material Symbols Outlined icon font.
Provides QFont instances for use in custom delegates and other QPainter-based rendering contexts where SVG rendering would be too slow. The font uses OpenType ligatures: drawing the text "folder" with this font renders the folder icon glyph.
Source code in src\shared_services\rendering\icons\material_icon_font.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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 | |
family
property
¶
The Qt font family name, or None if not loaded.
is_loaded
property
¶
Whether the font has been successfully loaded.
__init__()
¶
Initialize the font service (not yet loaded).
ensure_loaded()
¶
Load the font into Qt if not already loaded.
Returns:
| Type | Description |
|---|---|
bool
|
True if the font is available, False on failure. |
Source code in src\shared_services\rendering\icons\material_icon_font.py
get_font(size_px)
¶
Get a QFont configured for icon rendering at the given pixel size.
Results are cached per size for reuse across paint calls.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
size_px
|
int
|
Icon size in pixels. |
required |
Returns:
| Type | Description |
|---|---|
QFont
|
Configured QFont. Falls back to default system font if not loaded. |
Source code in src\shared_services\rendering\icons\material_icon_font.py
icon_name_from_path_def(path_def)
staticmethod
¶
Extract the Material Symbols ligature name from a PathDef.
The ligature name is the SVG filename stem, which matches the Google Material Symbols naming convention exactly.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path_def
|
PathDef
|
An icon PathDef (e.g., Icons.Action.Schedule). |
required |
Returns:
| Type | Description |
|---|---|
str
|
Ligature name string (e.g., "schedule", "trending_up"). |
Source code in src\shared_services\rendering\icons\material_icon_font.py
get_icon_font_renderer()
¶
Convenience function to get the IconFontRenderer singleton.
Returns:
| Type | Description |
|---|---|
IconFontRenderer
|
The shared IconFontRenderer instance. |
Example::
renderer = get_icon_font_renderer()
char = renderer.get_icon_char("plant_design", "Pumpe")
Source code in src\shared_services\rendering\icons\font_renderer.py
get_icon_registry()
¶
Convenience function to get the IconRegistry singleton.
Returns:
| Type | Description |
|---|---|
IconRegistry
|
The shared IconRegistry instance. |
Example::
registry = get_icon_registry()
registry.register(button, Icons.Action.Home)
Source code in src\shared_services\rendering\icons\icon_registry.py
get_widget_icon_size(widget)
¶
Determine the appropriate icon size for a widget.
For QLabel: uses the smaller of width/height (for square icons). For QAbstractButton: uses iconSize() if set, otherwise minimumHeight. For other widgets: uses minimumHeight or DEFAULT_ICON_SIZE.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
widget
|
QWidget
|
The widget to measure. |
required |
Returns:
| Type | Description |
|---|---|
int
|
Appropriate icon size in pixels. |
Source code in src\shared_services\rendering\icons\svg_renderer.py
render_svg(icon, size=24, color='primary', render_scale=2.0, use_cache=True)
¶
Render an SVG icon as a high-quality QPixmap with color tinting.
This function loads an SVG file, renders it at high resolution for quality, applies color tinting, and scales to the target size. Results are cached by default to avoid redundant rendering.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
icon
|
Union[PathDef, str]
|
PathDef from icon constants, or direct path string. |
required |
size
|
int
|
Display size in pixels. The icon will be rendered as a square of this dimension. |
24
|
color
|
str
|
Color specification. Can be: - IconColors property: IconColors.Primary, IconColors.Error, etc. - Hex color: "#RRGGBB" or "#RGB" - RGB: "rgb(r, g, b)" - String name (fallback): "primary", "error", etc. Defaults to IconColors.Primary (theme's primary icon color). |
'primary'
|
render_scale
|
float
|
Internal render multiplier for quality. Higher values produce smoother icons but use more memory. Default 2.0 renders at 2x size then scales down. |
2.0
|
use_cache
|
bool
|
Whether to use pixmap caching. Set to False for dynamic content that changes frequently. |
True
|
Returns:
| Type | Description |
|---|---|
QPixmap
|
QPixmap ready for use with setPixmap() or QIcon(). |
QPixmap
|
Returns an empty pixmap if the SVG cannot be loaded. |
Example
Basic usage::
from src.shared_services.constants.icon_paths import Icons
# Theme-aware icon
pixmap = render_svg(Icons.Action.Home, size=24)
button.setIcon(QIcon(pixmap))
# Explicit color
pixmap = render_svg(Icons.Action.Delete, size=16, color="error")
# From path string
pixmap = render_svg("path/to/icon.svg", size=32)
Note
The function automatically resolves PathDef objects using the path management system. For best quality, source SVGs should be designed at a base size of 24x24 pixels.
Source code in src\shared_services\rendering\icons\svg_renderer.py
render_svg_multi_size(icon, sizes, color='primary', render_scale=2.0)
¶
Render an SVG icon at multiple sizes.
This is useful for creating icons that need to be displayed at different sizes (e.g., toolbar vs menu).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
icon
|
Union[PathDef, str]
|
PathDef from icon constants, or direct path string. |
required |
sizes
|
list[int]
|
List of sizes to render (e.g., [16, 24, 32]). |
required |
color
|
str
|
Color specification (semantic name or hex). |
'primary'
|
render_scale
|
float
|
Internal render multiplier for quality. |
2.0
|
Returns:
| Type | Description |
|---|---|
dict[int, QPixmap]
|
Dictionary mapping size to rendered QPixmap. |
Example::
pixmaps = render_svg_multi_size(
Icons.Action.Save,
sizes=[16, 24, 32]
)
small_icon = pixmaps[16]
large_icon = pixmaps[32]
Source code in src\shared_services\rendering\icons\svg_renderer.py
set_widget_icon(widget, icon, size=None, color='primary', render_scale=2.0)
¶
Set an SVG icon on a widget with automatic size detection.
This function automatically determines the appropriate icon size based on the widget's dimensions, renders the SVG at that size for crisp display, and assigns it to the widget.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
widget
|
QWidget
|
The widget to set the icon on. |
required |
icon
|
Union[PathDef, str]
|
PathDef from icon constants, or direct path string. |
required |
size
|
Optional[int]
|
Explicit size override. If None, auto-detects from widget. |
None
|
color
|
str
|
Color specification (semantic name, hex, or IconColors property). |
'primary'
|
render_scale
|
float
|
Internal render multiplier for quality (default 2.0). |
2.0
|
Example
Auto-detect size from widget::
set_widget_icon(my_label, Icons.Action.Home)
set_widget_icon(my_button, Icons.Action.Save, color=IconColors.Success)
Explicit size override::
set_widget_icon(my_label, Icons.Action.Home, size=32)
Note
For best results, ensure the widget has its size set (via setMinimumSize, setFixedSize, or layout constraints) before calling this function.