mirror of
https://github.com/onyx-and-iris/voicemeeter-compact.git
synced 2024-11-15 17:40:52 +00:00
2c39b9d215
updates to gui to match changes to interfaces now packaged with poetry and on pypi
70 lines
1.9 KiB
Python
70 lines
1.9 KiB
Python
from dataclasses import dataclass
|
|
|
|
from voicemeeterlib import kinds
|
|
|
|
from .configurations import get_configuration
|
|
|
|
configuration = get_configuration("app")
|
|
|
|
|
|
class SingletonMeta(type):
|
|
_instances = {}
|
|
|
|
def __call__(cls, *args, **kwargs):
|
|
if cls not in cls._instances:
|
|
instance = super().__call__(*args, **kwargs)
|
|
cls._instances[cls] = instance
|
|
return cls._instances[cls]
|
|
|
|
|
|
@dataclass
|
|
class Configurations(metaclass=SingletonMeta):
|
|
# is the gui extended
|
|
extended: bool = configuration["extends"]["extended"]
|
|
# direction the gui extends
|
|
extends_horizontal: bool = configuration["extends"]["extends_horizontal"]
|
|
# are themes enabled
|
|
themes_enabled: bool = configuration["theme"]["enabled"]
|
|
# light or dark
|
|
theme_mode: str = configuration["theme"]["mode"]
|
|
# size of mousewheel scroll step
|
|
mwscroll_step: int = configuration["mwscroll_step"]["size"]
|
|
# bus assigned as current submix
|
|
submixes: int = configuration["submixes"]["default"]
|
|
|
|
# width of a single labelframe
|
|
level_width: int = configuration["channel"]["width"]
|
|
# height of a single labelframe
|
|
level_height: int = configuration["channel"]["height"]
|
|
|
|
@property
|
|
def profile(self):
|
|
if "profiles" in configuration:
|
|
return configuration["profiles"]["profile"]
|
|
|
|
|
|
@dataclass
|
|
class BaseValues(metaclass=SingletonMeta):
|
|
# are we dragging a scale with mouse 1
|
|
in_scale_button_1: bool = False
|
|
# are we dragging main window with mouse 1
|
|
dragging: bool = False
|
|
# a vban connection established
|
|
vban_connected: bool = False
|
|
# pdirty delay
|
|
pdelay: int = 1
|
|
# ldirty delay
|
|
ldelay: int = 5
|
|
|
|
|
|
_base_values = BaseValues()
|
|
_configuration = Configurations()
|
|
|
|
_kinds = {kind.name: kind for kind in kinds.kinds_all}
|
|
|
|
_kinds_all = _kinds.values()
|
|
|
|
|
|
def kind_get(kind_id):
|
|
return _kinds[kind_id]
|