X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.ui%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2Fcomponents%2Fmi%2Fnandbased%2FGUIand.java;fp=net.mograsim.logic.ui%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2Fcomponents%2Fmi%2Fnandbased%2FGUIand.java;h=0000000000000000000000000000000000000000;hb=f14ea37d69488dd51518a36413af7176916b8bd7;hp=018e9bb1b244adb1d9ffa63197c557cb3ec9a452;hpb=a84700145147c263ad6692c99117a7cf37832378;p=Mograsim.git diff --git a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIand.java b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIand.java deleted file mode 100644 index 018e9bb1..00000000 --- a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIand.java +++ /dev/null @@ -1,45 +0,0 @@ -package net.mograsim.logic.ui.model.components.mi.nandbased; - -import net.haspamelodica.swt.helper.swtobjectwrappers.Point; -import net.mograsim.logic.ui.model.ViewModelModifiable; -import net.mograsim.logic.ui.model.components.GUINandGate; -import net.mograsim.logic.ui.model.components.SimpleRectangularSubmodelComponent; -import net.mograsim.logic.ui.model.wires.GUIWire; -import net.mograsim.logic.ui.model.wires.Pin; -import net.mograsim.logic.ui.model.wires.WireCrossPoint; - -public class GUIand extends SimpleRectangularSubmodelComponent -{ - public GUIand(ViewModelModifiable model) - { - super(model, 1, "GUIand"); - setSubmodelScale(.4); - setInputPins("A", "B"); - setOutputPins("Y"); - initSubmodelComponents(); - } - - @SuppressWarnings("unused") // for GUIWires being created - private void initSubmodelComponents() - { - Pin A = getSubmodelPin("A"); - Pin B = getSubmodelPin("B"); - Pin Y = getSubmodelPin("Y"); - - GUINandGate nand = new GUINandGate(submodelModifiable, 1); - GUINandGate not = new GUINandGate(submodelModifiable, 1); - - WireCrossPoint cp1 = new WireCrossPoint(submodelModifiable, 1); - - nand.moveTo(20, 15); - not.moveTo(50, 15); - cp1.moveCenterTo(45, 25); - - new GUIWire(submodelModifiable, A, nand.getPin("A")); - new GUIWire(submodelModifiable, B, nand.getPin("B")); - new GUIWire(submodelModifiable, nand.getPin("Y"), cp1, new Point[0]); - new GUIWire(submodelModifiable, cp1, not.getPin("A"), new Point(45, 20)); - new GUIWire(submodelModifiable, cp1, not.getPin("B"), new Point(45, 30)); - new GUIWire(submodelModifiable, not.getPin("Y"), Y); - } -} \ No newline at end of file