Made GUIWires more colorful
[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          * Called when this component is clicked. Relative coordinates of the click are given.
21          * Returns true if this component has to be redrawn.
22          */
23         public default boolean clicked(double x, double y)
24         {
25                 return false;
26         }
27
28         //TODO this code will be replaced by code in BasicComponent.
29         /**
30          * Returns how many wire arrays are connected to this component.
31          * (Connections are static - they can't be removed and no new ones can be added)
32          */
33         public int getConnectedWireArraysCount();
34         /**
35          * Returns the n-th wire array connected to this component.
36          */
37         public WireArray getConnectedWireArray(int connectionIndex);
38         /**
39          * Returns relative coordinates where the n-th wire array is connected to this component.
40          */
41         public Point getWireArrayConnectionPoint(int connectionIndex);
42 }