925fe4bc7fe7b7eeee8fc4ae164ac3772a57280d
[Mograsim.git] / LogicUI / src / era / mi / components / gui / BasicGUIComponent.java
1 package era.mi.components.gui;
2
3 import era.mi.logic.wires.WireArray;
4 import net.haspamelodica.swt.helper.gcs.GeneralGC;
5 import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
6 import net.haspamelodica.swt.helper.swtobjectwrappers.Rectangle;
7
8 public interface BasicGUIComponent
9 {
10         /**
11          * Render this component to the given gc, at coordinates (0, 0).
12          */
13         public void render(GeneralGC gc);
14         /**
15          * Returns the bounds of this component.
16          * Used for calculating which component is clicked.
17          */
18         public Rectangle getBounds();
19
20         //TODO this code will be replaced by code in BasicComponent.
21         /**
22          * Returns how many wire arrays are connected to this component.
23          * (Connections are static - they can't be removed and no new ones can be added)
24          */
25         public int getConnectedWireArraysCount();
26         /**
27          * Returns the n-th wire array connected to this component.
28          */
29         public WireArray getConnectedWireArray(int connectionIndex);
30         /**
31          * Returns relative coordinates where the n-th wire array is connected to this component.
32          */
33         public Point getWireArrayConnectionPoint(int connectionIndex);
34 }