mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 13:52:15 +01:00
14 lines
419 B
Python
14 lines
419 B
Python
from qtpy import QtCore
|
|
|
|
|
|
ACTION_ROLE = QtCore.Qt.UserRole
|
|
GROUP_ROLE = QtCore.Qt.UserRole + 1
|
|
VARIANT_GROUP_ROLE = QtCore.Qt.UserRole + 2
|
|
ACTION_ID_ROLE = QtCore.Qt.UserRole + 3
|
|
ANIMATION_START_ROLE = QtCore.Qt.UserRole + 4
|
|
ANIMATION_STATE_ROLE = QtCore.Qt.UserRole + 5
|
|
FORCE_NOT_OPEN_WORKFILE_ROLE = QtCore.Qt.UserRole + 6
|
|
ACTION_TOOLTIP_ROLE = QtCore.Qt.UserRole + 7
|
|
|
|
# Animation length in seconds
|
|
ANIMATION_LEN = 7
|