70 lines
2.7 KiB
Python
70 lines
2.7 KiB
Python
"""
|
|
* LogarithmPlotter - 2D plotter software to make BODE plots, sequences and distribution functions.
|
|
* Copyright (C) 2021-2024 Ad5001
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
from PySide6.QtQml import QJSValue
|
|
|
|
class InvalidAttributeValueException(Exception): pass
|
|
|
|
class PyJSValue:
|
|
"""
|
|
Wrapper to provide easy way to interact with JavaScript values in Python directly.
|
|
"""
|
|
|
|
def __init__(self, js_value: QJSValue, parent: QJSValue = None):
|
|
self.qjs_value = js_value
|
|
self._parent = parent
|
|
|
|
def __getattr__(self, item):
|
|
return PyJSValue(self.qjs_value.property(item), self.qjs_value)
|
|
|
|
def __setattr__(self, key, value):
|
|
if key in ['qjs_value', '_parent']:
|
|
# Fallback
|
|
object.__setattr__(self, key, value)
|
|
elif isinstance(value, PyJSValue):
|
|
# Set property
|
|
self.qjs_value.setProperty(key, value.qjs_value)
|
|
elif isinstance(value, QJSValue):
|
|
self.qjs_value.setProperty(key, value)
|
|
elif type(value) in (int, float, str, bool):
|
|
self.qjs_value.setProperty(key, QJSValue(value))
|
|
else:
|
|
raise InvalidAttributeValueException(f"Invalid value {value} of type {type(value)} being set to {key}.")
|
|
|
|
def __eq__(self, other):
|
|
if isinstance(other, PyJSValue):
|
|
return self.qjs_value.equals(other.qjs_value)
|
|
elif isinstance(other, QJSValue):
|
|
return self.qjs_value.equals(other)
|
|
elif type(other) in (int, float, str, bool):
|
|
return self.qjs_value.equals(QJSValue(other))
|
|
else:
|
|
return False
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
value = None
|
|
if self.qjs_value.isCallable():
|
|
if self._parent is None:
|
|
value = self.qjs_value.call(args)
|
|
else:
|
|
value = self.qjs_value.callWithInstance(self._parent, args)
|
|
else:
|
|
raise InvalidAttributeValueException('Cannot call non-function JS value.')
|
|
if isinstance(value, QJSValue):
|
|
value = PyJSValue(value)
|
|
return value
|