DeskApp contour structure

This commit is contained in:
Willem Cazander 2022-02-12 18:22:56 +01:00
parent be6de9ff22
commit 6112baf429
8 changed files with 160 additions and 0 deletions

View file

@ -66,6 +66,11 @@ public class ImFrameˣᴹᴵ extends AbstractImComponentSetˣᴹᴵ {
this.frameOpen = frameOpen;
}
public void setNextWindowPos(float nextWindowPosX, float nextWindowPosY) {
setNextWindowPosX(nextWindowPosX);
setNextWindowPosY(nextWindowPosY);
}
public float getNextWindowPosX() {
return nextWindowPosX;
}
@ -90,6 +95,11 @@ public class ImFrameˣᴹᴵ extends AbstractImComponentSetˣᴹᴵ {
this.nextWindowPosCond = nextWindowPosCond;
}
public void setNextWindowSize(float nextWindowSizeWidth, float nextWindowSizeHeight) {
setNextWindowSizeWidth(nextWindowSizeWidth);
setNextWindowSizeHeight(nextWindowSizeHeight);
}
public float getNextWindowSizeWidth() {
return nextWindowSizeWidth;
}