Skip to content

server

Server-side addon definition for AYON UI Qt.

This addon primarily provides client-side functionality (Qt widgets), so server-side configuration is minimal.

UIQtAddon

Bases: BaseServerAddon

Server-side addon for UI Qt library.

This addon provides a library of Qt widgets styled to match AYON's frontend design system. Server-side functionality is limited to enabling/disabling the addon and optional theme customization.

Source code in server/__init__.py
11
12
13
14
15
16
17
18
19
20
21
22
class UIQtAddon(BaseServerAddon):
    """Server-side addon for UI Qt library.

    This addon provides a library of Qt widgets styled to match
    AYON's frontend design system. Server-side functionality is
    limited to enabling/disabling the addon and optional theme
    customization.
    """

    name = "ui_qt"
    title = "AYON UI Qt"
    version = "0.1.0"