From 91c59c65b5fa4227783625dc62ba4a6ef306a9f7 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 30 Dec 2023 01:55:06 +0100 Subject: [PATCH] PixmapPresenter: Add window-resize event handler --- pixmappresenter.d | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/pixmappresenter.d b/pixmappresenter.d index 90595e8..adf87d8 100644 --- a/pixmappresenter.d +++ b/pixmappresenter.d @@ -187,6 +187,9 @@ alias Size = arsd.color.Size; /// alias Point = arsd.color.Point; +/// +alias WindowResizedCallback = void delegate(Size); + // verify assumption(s) static assert(Pixel.sizeof == uint.sizeof); @@ -784,6 +787,8 @@ final class PixmapPresenter { static if (hasTimer) { Timer _timer; } + + WindowResizedCallback _onWindowResize; } // ctors @@ -1016,11 +1021,28 @@ final class PixmapPresenter { } } + // event (handler) properties + public @safe pure nothrow @nogc { + + /++ + Event handler: window resize + +/ + void onWindowResize(WindowResizedCallback value) { + _onWindowResize = value; + } + } + // event handlers private { void windowResized(int width, int height) { - _poc.config.window.size = Size(width, height); + const newSize = Size(width, height); + + _poc.config.window.size = newSize; _renderer.reconfigure(); + + if (_onWindowResize !is null) { + _onWindowResize(newSize); + } } } }