X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.ui%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2Fcomponents%2FGUIComponent.java;h=edc3d7b715355fd6196302c96394124da40ccf74;hb=c223a9de7b0ef783bcb4f7612da350583ca29abd;hp=22f1fbf8f32fec30b4457e0734f7ee20082be717;hpb=65d20efb50a1df47d26b394ce443cda1c062603b;p=Mograsim.git diff --git a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/GUIComponent.java b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/GUIComponent.java index 22f1fbf8..edc3d7b7 100644 --- a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/GUIComponent.java +++ b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/GUIComponent.java @@ -69,6 +69,26 @@ public abstract class GUIComponent return new Rectangle(bounds.x, bounds.y, bounds.width, bounds.height); } + public double getPosX() + { + return bounds.x; + } + + public double getPosY() + { + return bounds.y; + } + + public double getWidth() + { + return bounds.width; + } + + public double getHeight() + { + return bounds.height; + } + /** * Called when this component is clicked. Absolute coordinates of the click are given. Returns true if this component consumed this * click.