BitDisplay, ManualSwitch now Observable. More Docs added in Timeline.
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / components / GUIManualSwitch.java
index 8ca57ee..486639e 100644 (file)
@@ -1,67 +1,67 @@
-package net.mograsim.logic.ui.model.components;
-
-import net.mograsim.logic.ui.model.ViewModel;
-import net.mograsim.logic.ui.model.wires.Pin;
-import net.haspamelodica.swt.helper.gcs.GeneralGC;
-import net.haspamelodica.swt.helper.swtobjectwrappers.Font;
-import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
-import net.haspamelodica.swt.helper.swtobjectwrappers.Rectangle;
-import net.mograsim.logic.core.components.ManualSwitch;
-import net.mograsim.logic.core.types.BitVectorFormatter;
-import net.mograsim.logic.core.wires.Wire.ReadEnd;
-
-public class GUIManualSwitch extends GUIComponent
-{
-       private static final double width = 20;
-       private static final double height = 15;
-       private static final double fontHeight = 5;
-
-       private final Pin outputPin;
-
-       private ManualSwitch logicSwitch;
-       private ReadEnd end;
-
-       public GUIManualSwitch(ViewModel model)
-       {
-               super(model);
-               setSize(width, height);
-               addPin(this.outputPin = new Pin(this, 1, width, height / 2));
-       }
-
-       @Override
-       public void render(GeneralGC gc, Rectangle visibleRegion)
-       {
-               double posX = getBounds().x;
-               double posY = getBounds().y;
-
-               gc.drawRectangle(posX, posY, width, height);
-               String label = BitVectorFormatter.formatValueAsString(end);
-               Font oldFont = gc.getFont();
-               Font labelFont = new Font(oldFont.getName(), fontHeight, oldFont.getStyle());
-               gc.setFont(labelFont);
-               Point textExtent = gc.textExtent(label);
-               gc.drawText(label, posX + (width - textExtent.x) / 2, posY + (height - textExtent.y) / 2, true);
-               gc.setFont(oldFont);
-       }
-
-       public void setLogicModelBinding(ManualSwitch logicSwitch, ReadEnd end)
-       {
-               this.logicSwitch = logicSwitch;
-               this.end = end;
-               // TODO when ManualSwitch supports it, add listeners
-               end.addObserver((i, o) -> callComponentLookChangedListeners());
-       }
-
-       @Override
-       public boolean clicked(double x, double y)
-       {
-               if (logicSwitch != null)
-                       logicSwitch.toggle();
-               return true;
-       }
-
-       public Pin getOutputPin()
-       {
-               return outputPin;
-       }
+package net.mograsim.logic.ui.model.components;\r
+\r
+import net.mograsim.logic.ui.model.ViewModel;\r
+import net.mograsim.logic.ui.model.wires.Pin;\r
+import net.haspamelodica.swt.helper.gcs.GeneralGC;\r
+import net.haspamelodica.swt.helper.swtobjectwrappers.Font;\r
+import net.haspamelodica.swt.helper.swtobjectwrappers.Point;\r
+import net.haspamelodica.swt.helper.swtobjectwrappers.Rectangle;\r
+import net.mograsim.logic.core.components.ManualSwitch;\r
+import net.mograsim.logic.core.types.BitVectorFormatter;\r
+import net.mograsim.logic.core.wires.Wire.ReadEnd;\r
+\r
+public class GUIManualSwitch extends GUIComponent\r
+{\r
+       private static final double width = 20;\r
+       private static final double height = 15;\r
+       private static final double fontHeight = 5;\r
+\r
+       private final Pin outputPin;\r
+\r
+       private ManualSwitch logicSwitch;\r
+       private ReadEnd end;\r
+\r
+       public GUIManualSwitch(ViewModel model)\r
+       {\r
+               super(model);\r
+               setSize(width, height);\r
+               addPin(this.outputPin = new Pin(this, 1, width, height / 2));\r
+       }\r
+\r
+       @Override\r
+       public void render(GeneralGC gc, Rectangle visibleRegion)\r
+       {\r
+               double posX = getBounds().x;\r
+               double posY = getBounds().y;\r
+\r
+               gc.drawRectangle(posX, posY, width, height);\r
+               String label = BitVectorFormatter.formatValueAsString(end);\r
+               Font oldFont = gc.getFont();\r
+               Font labelFont = new Font(oldFont.getName(), fontHeight, oldFont.getStyle());\r
+               gc.setFont(labelFont);\r
+               Point textExtent = gc.textExtent(label);\r
+               gc.drawText(label, posX + (width - textExtent.x) / 2, posY + (height - textExtent.y) / 2, true);\r
+               gc.setFont(oldFont);\r
+       }\r
+\r
+       public void setLogicModelBinding(ManualSwitch logicSwitch, ReadEnd end)\r
+       {\r
+               this.logicSwitch = logicSwitch;\r
+               this.end = end;\r
+               // TODO when ManualSwitch supports it, add listeners\r
+               end.registerObserver((i) -> callComponentLookChangedListeners());\r
+       }\r
+\r
+       @Override\r
+       public boolean clicked(double x, double y)\r
+       {\r
+               if (logicSwitch != null)\r
+                       logicSwitch.toggle();\r
+               return true;\r
+       }\r
+\r
+       public Pin getOutputPin()\r
+       {\r
+               return outputPin;\r
+       }\r
 }
\ No newline at end of file