SolarFM/src/versions/solarfm-0.0.1/solarfm/core/mixins/signals/ipc_signals_mixin.py

36 lines
957 B
Python

# Python imports
# Lib imports
# Application imports
class IPCSignalsMixin:
""" IPCSignalsMixin handle messages from another starting solarfm process. """
def print_to_console(self, message=None):
print(message)
def handle_file_from_ipc(self, path):
window = self.builder.get_object("main_window")
window.deiconify()
window.show()
window.present()
wid, tid = self.fm_controller.get_active_wid_and_tid()
notebook = self.builder.get_object(f"window_{wid}")
if notebook.is_visible():
self.create_tab(wid, None, path)
return
if not self.is_pane4_hidden:
self.create_tab(4, None, path)
elif not self.is_pane3_hidden:
self.create_tab(3, None, path)
elif not self.is_pane2_hidden:
self.create_tab(2, None, path)
elif not self.is_pane1_hidden:
self.create_tab(1, None, path)