sonist-gtk/usr/lib/sonist/ui/image_button.py

36 lines
869 B
Python
Raw Permalink Normal View History

2023-08-17 20:51:59 +08:00
#!/usr/bin/env python3
import gi
gi.require_version('Gtk', '3.0')
2023-08-18 00:09:43 +08:00
from gi.repository import Gtk, Gdk
2023-08-17 20:51:59 +08:00
from .image import ScaleImage
class ImageButton(Gtk.Button):
def __init__(self, filepath, width = 26, height = 26):
Gtk.Button.__init__(self)
2023-08-18 19:04:51 +08:00
self.width = width
self.height = height
self._image_path = None
2023-08-17 20:51:59 +08:00
self.set_name('ImageButton')
self.set_size_request(width, height)
2023-08-18 19:04:51 +08:00
self.set_valign(Gtk.Align.CENTER)
2023-08-17 20:51:59 +08:00
2023-08-18 00:09:43 +08:00
# 针对macos的设置, 但只解决了普通状态下的边框问题, 鼠标经过的样式还在
self.set_relief(Gtk.ReliefStyle.NONE)
2023-08-18 19:04:51 +08:00
self.set_image(filepath)
2023-08-17 20:51:59 +08:00
2023-08-21 19:06:22 +08:00
2023-08-18 19:04:51 +08:00
def set_image(self, filepath):
if self._image_path == filepath:
return
self._image_path = filepath
image = ScaleImage(filepath)
image.resize(self.width, self.height)
Gtk.Button.set_image(self, image)
return self