xsecurelock: monitor background change

This commit is contained in:
Vincent Bernat 2021-12-08 17:19:46 +01:00
parent 4997db033a
commit 2b94a98c91

View file

@ -10,62 +10,86 @@ done through environment variables:
""" """
import os import os
import types
import gi import gi
gi.require_version("Gtk", "3.0") gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, Gdk, GdkX11, GLib, GdkPixbuf from gi.repository import Gtk, Gdk, GdkX11, GLib, GdkPixbuf, Gio
import cairo import cairo
def on_win_realize(widget, position): def on_win_realize(widget, ctx):
"""On realization, embed into XSCREENSAVER_WINDOW and remember parent position.""" """On realization, embed into XSCREENSAVER_WINDOW and remember parent position."""
parent_wid = int(os.getenv("XSCREENSAVER_WINDOW", 0)) parent_wid = int(os.getenv("XSCREENSAVER_WINDOW", 0))
if not parent_wid: if not parent_wid:
return return
parent = GdkX11.X11Window.foreign_new_for_display(widget.get_display(), parent_wid) parent = GdkX11.X11Window.foreign_new_for_display(widget.get_display(), parent_wid)
x, y, w, h = parent.get_geometry() x, y, w, h = parent.get_geometry()
ctx.position = x, y
window = widget.get_window() window = widget.get_window()
window.resize(w, h) window.resize(w, h)
window.reparent(parent, 0, 0) window.reparent(parent, 0, 0)
[*position] = x, y
def on_win_draw(widget, ctx, background, position): def on_win_draw(widget, cctx, ctx):
"""Draw background image.""" """Draw background image."""
ctx.set_operator(cairo.OPERATOR_SOURCE) cctx.set_operator(cairo.OPERATOR_SOURCE)
if not background: if not ctx.background:
ctx.set_source_rgba(0, 0, 0, opacity) cctx.set_source_rgba(0, 0, 0, opacity)
ctx.paint() cctx.paint()
return return
x, y = position x, y = ctx.position
wwidth, wheight = widget.get_size() wwidth, wheight = widget.get_size()
scale = widget.get_scale_factor() scale = widget.get_scale_factor()
bg = background.new_subpixbuf(x * scale, y * scale, wwidth * scale, wheight * scale) bg = ctx.background.new_subpixbuf(
ctx.scale(1 / scale, 1 / scale) x * scale, y * scale, wwidth * scale, wheight * scale
Gdk.cairo_set_source_pixbuf(ctx, bg, 0, 0) )
ctx.paint() cctx.scale(1 / scale, 1 / scale)
Gdk.cairo_set_source_pixbuf(cctx, bg, 0, 0)
cctx.paint()
def on_background_change(monitor, f1, f2, event, ctx):
"""Update background when changed."""
print(f1, f2, event, ctx)
if event not in (
Gio.FileMonitorEvent.CHANGES_DONE_HINT,
Gio.FileMonitorEvent.RENAMED,
):
return
try:
new_background = GdkPixbuf.Pixbuf.new_from_file(ctx.background_image)
except Exception:
pass
ctx.background = new_background
ctx.window.queue_draw()
if __name__ == "__main__": if __name__ == "__main__":
background_image = os.getenv("XSECURELOCK_BACKGROUND_IMAGE", None) ctx = types.SimpleNamespace()
ctx.background_image = os.getenv("XSECURELOCK_BACKGROUND_IMAGE", None)
ctx.background = None
ctx.position = [0, 0]
background = None try:
if background_image: ctx.background = GdkPixbuf.Pixbuf.new_from_file(ctx.background_image)
try: except Exception:
background = GdkPixbuf.Pixbuf.new_from_file(background_image) pass
except Exception:
pass
position = [0, 0]
window = Gtk.Window() ctx.window = Gtk.Window()
window.set_app_paintable(True) ctx.window.set_app_paintable(True)
window.set_visual(window.get_screen().get_rgba_visual()) ctx.window.set_visual(ctx.window.get_screen().get_rgba_visual())
window.connect("realize", on_win_realize, position) ctx.window.connect("realize", on_win_realize, ctx)
window.connect("draw", on_win_draw, background, position) ctx.window.connect("draw", on_win_draw, ctx)
window.connect("delete-event", Gtk.main_quit) ctx.window.connect("delete-event", Gtk.main_quit)
window.show_all() if ctx.background_image:
gfile = Gio.File.new_for_path(ctx.background_image)
monitor = gfile.monitor_file(Gio.FileMonitorFlags.WATCH_MOVES, None)
monitor.connect("changed", on_background_change, ctx)
ctx.window.show_all()
# Main loop # Main loop
Gtk.main() Gtk.main()