Source code for flogin.flow.enums
from enum import Enum
__all__ = (
"AnimationSpeeds",
"LastQueryMode",
"SearchPrecisionScore",
"SearchWindowAligns",
"SearchWindowScreens",
)
[docs]
class LastQueryMode(Enum):
selected = "Selected"
empty = "Empty"
preserved = "Preserved"
[docs]
class SearchWindowScreens(Enum):
remember_last_launch_location = "RememberLastLaunchLocation"
cursor = "Cursor"
focus = "Focus"
primary = "Primary"
custom = "Custom"
[docs]
class SearchWindowAligns(Enum):
center = "Center"
centerTop = "CenterTop"
leftTop = "LeftTop"
rightTop = "RightTop"
custom = "Custom"
[docs]
class AnimationSpeeds(Enum):
slow = "Slow"
medium = "Medium"
fast = "Fast"
custom = "Custom"
[docs]
class SearchPrecisionScore(Enum):
regular = 50
low = 20
none = 0