SolarFM/plugins/template/plugin.py

47 lines
1.3 KiB
Python
Raw Normal View History

2022-01-31 02:29:57 +00:00
# Python imports
import os, threading, subprocess, time
2022-01-31 02:29:57 +00:00
# Lib imports
2022-01-31 02:29:57 +00:00
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
# Application imports
2022-09-06 02:21:04 +00:00
from plugins.plugin_base import PluginBase
2022-01-31 02:29:57 +00:00
2022-06-19 03:27:17 +00:00
# NOTE: Threads WILL NOT die with parent's destruction.
2022-01-31 02:29:57 +00:00
def threaded(fn):
def wrapper(*args, **kwargs):
2022-02-01 07:43:09 +00:00
threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=False).start()
2022-01-31 02:29:57 +00:00
return wrapper
2022-06-19 03:27:17 +00:00
# NOTE: Threads WILL die with parent's destruction.
def daemon_threaded(fn):
def wrapper(*args, **kwargs):
threading.Thread(target=fn, args=args, kwargs=kwargs, daemon=True).start()
return wrapper
2022-01-31 02:29:57 +00:00
2022-09-06 02:21:04 +00:00
class Plugin(PluginBase):
def __init__(self):
2022-09-06 02:21:04 +00:00
super().__init__()
self.name = "Example Plugin" # NOTE: Need to remove after establishing private bidirectional 1-1 message bus
# where self.name should not be needed for message comms
2022-01-31 02:29:57 +00:00
2022-02-01 07:43:09 +00:00
def generate_reference_ui_element(self):
button = Gtk.Button(label=self.name)
button.connect("button-release-event", self.send_message)
return button
def run(self):
2022-09-29 22:22:33 +00:00
...
2022-02-01 07:43:09 +00:00
2022-06-19 03:27:17 +00:00
def send_message(self, widget=None, eve=None):
message = "Hello, World!"
event_system.emit("display_message", ("warning", message, None))