Cornea/src/new-src/core/widgets/snapshot_button.py

46 lines
1.1 KiB
Python

# Python imports
# Lib imports
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
# Application imports
class SnapshotButton(Gtk.Button):
def __init__(self):
super(SnapshotButton, self).__init__()
self._setup_styling()
self._setup_signals()
self._subscribe_to_events()
self._load_widgets()
self.show_all()
def _setup_styling(self):
self.set_always_show_image(True)
self.set_image_position(Gtk.PositionType.LEFT)
self.set_label("Take Snapshot")
def _setup_signals(self):
self.connect("clicked", self._take_snapshot)
def _subscribe_to_events(self):
...
def _load_widgets(self):
image = Gtk.Image.new_from_icon_name("gtk-media-play", 3)
self.set_image(image)
def _take_snapshot(self, widget = None, eve = None):
type = event_system.emit_and_await("get_screenshot_type").get_label()
print(type)
# NOTE:
# 1. Get type of screenshot
# 2. Grab screenshot
# 3. Emit images list file update