| | import numpy as np |
| |
|
| | from .. import _api, cbook |
| | from . import backend_agg, backend_gtk4 |
| | from .backend_gtk4 import Gtk, _BackendGTK4 |
| |
|
| | import cairo |
| |
|
| |
|
| | class FigureCanvasGTK4Agg(backend_agg.FigureCanvasAgg, |
| | backend_gtk4.FigureCanvasGTK4): |
| |
|
| | def on_draw_event(self, widget, ctx): |
| | scale = self.device_pixel_ratio |
| | allocation = self.get_allocation() |
| |
|
| | Gtk.render_background( |
| | self.get_style_context(), ctx, |
| | allocation.x, allocation.y, |
| | allocation.width, allocation.height) |
| |
|
| | buf = cbook._unmultiplied_rgba8888_to_premultiplied_argb32( |
| | np.asarray(self.get_renderer().buffer_rgba())) |
| | height, width, _ = buf.shape |
| | image = cairo.ImageSurface.create_for_data( |
| | buf.ravel().data, cairo.FORMAT_ARGB32, width, height) |
| | image.set_device_scale(scale, scale) |
| | ctx.set_source_surface(image, 0, 0) |
| | ctx.paint() |
| |
|
| | return False |
| |
|
| |
|
| | @_api.deprecated("3.6", alternative="backend_gtk4.FigureManagerGTK4") |
| | class FigureManagerGTK4Agg(backend_gtk4.FigureManagerGTK4): |
| | pass |
| |
|
| |
|
| | @_BackendGTK4.export |
| | class _BackendGTK4Agg(_BackendGTK4): |
| | FigureCanvas = FigureCanvasGTK4Agg |
| |
|