2023-03-18 04:17:38 +00:00
|
|
|
# Python imports
|
2023-10-03 23:22:36 +00:00
|
|
|
import signal
|
|
|
|
import io
|
2023-03-18 04:17:38 +00:00
|
|
|
import json
|
|
|
|
import inspect
|
2023-10-03 23:22:36 +00:00
|
|
|
import zipfile
|
|
|
|
|
|
|
|
from os import path
|
|
|
|
from os import mkdir
|
2023-03-18 04:17:38 +00:00
|
|
|
|
|
|
|
# Lib imports
|
|
|
|
|
|
|
|
# Application imports
|
2023-10-03 23:22:36 +00:00
|
|
|
from ..singleton import Singleton
|
2023-03-18 04:17:38 +00:00
|
|
|
from .start_check_mixin import StartCheckMixin
|
2023-10-03 23:22:36 +00:00
|
|
|
from .options.settings import Settings
|
|
|
|
|
2023-03-18 04:17:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MissingConfigError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-10-03 23:22:36 +00:00
|
|
|
class SettingsManager(StartCheckMixin, Singleton):
|
2023-03-18 04:17:38 +00:00
|
|
|
def __init__(self):
|
2023-10-03 23:22:36 +00:00
|
|
|
self._SCRIPT_PTH = path.dirname(path.realpath(__file__))
|
|
|
|
self._USER_HOME = path.expanduser('~')
|
|
|
|
self._HOME_CONFIG_PATH = f"{self._USER_HOME}/.config/{app_name.lower()}"
|
2023-03-18 04:17:38 +00:00
|
|
|
self._USR_PATH = f"/usr/share/{app_name.lower()}"
|
|
|
|
self._USR_CONFIG_FILE = f"{self._USR_PATH}/settings.json"
|
2023-10-03 23:22:36 +00:00
|
|
|
|
2023-03-18 04:17:38 +00:00
|
|
|
self._PLUGINS_PATH = f"{self._HOME_CONFIG_PATH}/plugins"
|
|
|
|
self._DEFAULT_ICONS = f"{self._HOME_CONFIG_PATH}/icons"
|
|
|
|
self._CONFIG_FILE = f"{self._HOME_CONFIG_PATH}/settings.json"
|
|
|
|
self._GLADE_FILE = f"{self._HOME_CONFIG_PATH}/Main_Window.glade"
|
|
|
|
self._CSS_FILE = f"{self._HOME_CONFIG_PATH}/stylesheet.css"
|
|
|
|
self._KEY_BINDINGS_FILE = f"{self._HOME_CONFIG_PATH}/key-bindings.json"
|
|
|
|
self._PID_FILE = f"{self._HOME_CONFIG_PATH}/{app_name.lower()}.pid"
|
2023-03-20 05:18:49 +00:00
|
|
|
self._UI_WIDEGTS_PATH = f"{self._HOME_CONFIG_PATH}/ui_widgets"
|
|
|
|
self._CONTEXT_MENU = f"{self._HOME_CONFIG_PATH}/contexct_menu.json"
|
2023-03-18 04:19:04 +00:00
|
|
|
self._WINDOW_ICON = f"{self._DEFAULT_ICONS}/{app_name.lower()}.png"
|
2023-03-18 04:17:38 +00:00
|
|
|
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._HOME_CONFIG_PATH):
|
|
|
|
mkdir(self._HOME_CONFIG_PATH)
|
|
|
|
if not path.exists(self._PLUGINS_PATH):
|
|
|
|
mkdir(self._PLUGINS_PATH)
|
2023-03-18 04:17:38 +00:00
|
|
|
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._DEFAULT_ICONS):
|
2023-03-18 04:17:38 +00:00
|
|
|
self._DEFAULT_ICONS = f"{self._USR_PATH}/icons"
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._DEFAULT_ICONS):
|
2023-03-18 04:17:38 +00:00
|
|
|
raise MissingConfigError("Unable to find the application icons directory.")
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._GLADE_FILE):
|
2023-03-18 04:17:38 +00:00
|
|
|
self._GLADE_FILE = f"{self._USR_PATH}/Main_Window.glade"
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._GLADE_FILE):
|
2023-03-18 04:17:38 +00:00
|
|
|
raise MissingConfigError("Unable to find the application Glade file.")
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._KEY_BINDINGS_FILE):
|
2023-03-18 04:17:38 +00:00
|
|
|
self._KEY_BINDINGS_FILE = f"{self._USR_PATH}/key-bindings.json"
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._KEY_BINDINGS_FILE):
|
2023-03-18 04:17:38 +00:00
|
|
|
raise MissingConfigError("Unable to find the application Keybindings file.")
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._CSS_FILE):
|
2023-03-18 04:17:38 +00:00
|
|
|
self._CSS_FILE = f"{self._USR_PATH}/stylesheet.css"
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._CSS_FILE):
|
2023-03-18 04:17:38 +00:00
|
|
|
raise MissingConfigError("Unable to find the application Stylesheet file.")
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._WINDOW_ICON):
|
2023-03-18 04:17:38 +00:00
|
|
|
self._WINDOW_ICON = f"{self._USR_PATH}/icons/{app_name.lower()}.png"
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._WINDOW_ICON):
|
2023-03-18 04:17:38 +00:00
|
|
|
raise MissingConfigError("Unable to find the application icon.")
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._UI_WIDEGTS_PATH):
|
|
|
|
self._UI_WIDEGTS_PATH = f"{self._USR_PATH}/ui_widgets"
|
|
|
|
if not path.exists(self._CONTEXT_MENU):
|
|
|
|
self._CONTEXT_MENU = f"{self._USR_PATH}/contexct_menu.json"
|
2023-03-18 04:17:38 +00:00
|
|
|
|
|
|
|
|
2023-03-20 05:18:49 +00:00
|
|
|
try:
|
|
|
|
with open(self._KEY_BINDINGS_FILE) as file:
|
|
|
|
bindings = json.load(file)["keybindings"]
|
|
|
|
keybindings.configure(bindings)
|
|
|
|
except Exception as e:
|
|
|
|
print( f"Settings: {self._KEY_BINDINGS_FILE}\n\t\t{repr(e)}" )
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open(self._CONTEXT_MENU) as file:
|
|
|
|
self._context_menu_data = json.load(file)
|
|
|
|
except Exception as e:
|
|
|
|
print( f"Settings: {self._CONTEXT_MENU}\n\t\t{repr(e)}" )
|
|
|
|
|
2023-03-18 04:17:38 +00:00
|
|
|
|
2023-10-03 23:22:36 +00:00
|
|
|
self.settings: Settings = None
|
|
|
|
self._main_window = None
|
|
|
|
self._builder = None
|
|
|
|
self.PAINT_BG_COLOR = (0, 0, 0, 0.0)
|
2023-03-18 04:17:38 +00:00
|
|
|
|
2023-10-03 23:22:36 +00:00
|
|
|
self._trace_debug = False
|
|
|
|
self._debug = False
|
|
|
|
self._dirty_start = False
|
|
|
|
self._passed_in_file = False
|
2023-03-18 04:17:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
def register_signals_to_builder(self, classes=None):
|
|
|
|
handlers = {}
|
|
|
|
|
|
|
|
for c in classes:
|
|
|
|
methods = None
|
|
|
|
try:
|
|
|
|
methods = inspect.getmembers(c, predicate=inspect.ismethod)
|
|
|
|
handlers.update(methods)
|
|
|
|
except Exception as e:
|
|
|
|
...
|
|
|
|
|
|
|
|
self._builder.connect_signals(handlers)
|
|
|
|
|
|
|
|
def set_main_window(self, window): self._main_window = window
|
|
|
|
def set_builder(self, builder) -> any: self._builder = builder
|
|
|
|
|
|
|
|
|
|
|
|
def get_monitor_data(self) -> list:
|
|
|
|
screen = self._main_window.get_screen()
|
|
|
|
monitors = []
|
|
|
|
for m in range(screen.get_n_monitors()):
|
|
|
|
monitors.append(screen.get_monitor_geometry(m))
|
|
|
|
print("{}x{}+{}+{}".format(monitor.width, monitor.height, monitor.x, monitor.y))
|
|
|
|
|
|
|
|
return monitors
|
|
|
|
|
2023-03-18 04:19:04 +00:00
|
|
|
def get_main_window(self) -> any: return self._main_window
|
2023-10-03 23:22:36 +00:00
|
|
|
def get_builder(self) -> any: return self._builder
|
|
|
|
def get_paint_bg_color(self) -> any: return self.PAINT_BG_COLOR
|
|
|
|
def get_glade_file(self) -> str: return self._GLADE_FILE
|
|
|
|
def get_ui_widgets_path(self) -> str: return self._UI_WIDEGTS_PATH
|
|
|
|
def get_context_menu_data(self) -> str: return self._context_menu_data
|
2023-03-18 04:17:38 +00:00
|
|
|
|
|
|
|
def get_plugins_path(self) -> str: return self._PLUGINS_PATH
|
|
|
|
def get_icon_theme(self) -> str: return self._ICON_THEME
|
|
|
|
def get_css_file(self) -> str: return self._CSS_FILE
|
|
|
|
def get_home_config_path(self) -> str: return self._HOME_CONFIG_PATH
|
|
|
|
def get_window_icon(self) -> str: return self._WINDOW_ICON
|
|
|
|
def get_home_path(self) -> str: return self._USER_HOME
|
|
|
|
|
|
|
|
def is_trace_debug(self) -> str: return self._trace_debug
|
|
|
|
def is_debug(self) -> str: return self._debug
|
2023-09-10 05:24:47 +00:00
|
|
|
def is_starting_with_file(self) -> bool: return self._passed_in_file
|
2023-03-18 04:17:38 +00:00
|
|
|
|
2023-10-03 23:22:36 +00:00
|
|
|
def call_method(self, target_class = None, _method_name = None, data = None):
|
|
|
|
method_name = str(_method_name)
|
|
|
|
method = getattr(target_class, method_name, lambda data: f"No valid key passed...\nkey={method_name}\nargs={data}")
|
|
|
|
return method(data) if data else method()
|
|
|
|
|
|
|
|
def set_main_window_x(self, x = 0): self.settings.config.window_x = x
|
|
|
|
def set_main_window_y(self, y = 0): self.settings.config.window_y = y
|
|
|
|
def set_main_window_width(self, width = 800): self.settings.config.window_width = width
|
|
|
|
def set_main_window_height(self, height = 600): self.settings.config.window_height = height
|
|
|
|
def set_main_window_min_width(self, width = 720): self.settings.config.window_min_width = width
|
|
|
|
def set_main_window_min_height(self, height = 480): self.settings.config.window_min_height = height
|
2023-03-18 04:17:38 +00:00
|
|
|
|
|
|
|
def set_trace_debug(self, trace_debug):
|
|
|
|
self._trace_debug = trace_debug
|
|
|
|
|
|
|
|
def set_debug(self, debug):
|
|
|
|
self._debug = debug
|
|
|
|
|
2023-09-10 05:24:47 +00:00
|
|
|
def set_is_starting_with_file(self, is_passed_in_file: False):
|
|
|
|
self._passed_in_file = is_passed_in_file
|
|
|
|
|
2023-03-18 04:17:38 +00:00
|
|
|
|
|
|
|
def load_settings(self):
|
2023-10-03 23:22:36 +00:00
|
|
|
if not path.exists(self._CONFIG_FILE):
|
|
|
|
self.settings = Settings()
|
|
|
|
return
|
|
|
|
|
|
|
|
with open(self._CONFIG_FILE) as file:
|
|
|
|
data = json.load(file)
|
|
|
|
data["load_defaults"] = False
|
|
|
|
self.settings = Settings(**data)
|
2023-03-18 04:17:38 +00:00
|
|
|
|
|
|
|
def save_settings(self):
|
|
|
|
with open(self._CONFIG_FILE, 'w') as outfile:
|
2023-10-03 23:22:36 +00:00
|
|
|
json.dump(self.settings.as_dict(), outfile, separators=(',', ':'), indent=4)
|