mirror of https://github.com/adamdruppe/arsd.git
PixmapPresenter: Add window-resize event handler
This commit is contained in:
parent
bff4406eed
commit
91c59c65b5
|
@ -187,6 +187,9 @@ alias Size = arsd.color.Size;
|
||||||
///
|
///
|
||||||
alias Point = arsd.color.Point;
|
alias Point = arsd.color.Point;
|
||||||
|
|
||||||
|
///
|
||||||
|
alias WindowResizedCallback = void delegate(Size);
|
||||||
|
|
||||||
// verify assumption(s)
|
// verify assumption(s)
|
||||||
static assert(Pixel.sizeof == uint.sizeof);
|
static assert(Pixel.sizeof == uint.sizeof);
|
||||||
|
|
||||||
|
@ -784,6 +787,8 @@ final class PixmapPresenter {
|
||||||
static if (hasTimer) {
|
static if (hasTimer) {
|
||||||
Timer _timer;
|
Timer _timer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WindowResizedCallback _onWindowResize;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ctors
|
// 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
|
// event handlers
|
||||||
private {
|
private {
|
||||||
void windowResized(int width, int height) {
|
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();
|
_renderer.reconfigure();
|
||||||
|
|
||||||
|
if (_onWindowResize !is null) {
|
||||||
|
_onWindowResize(newSize);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue