Created CyclingCellEditor for BooleanEditingSupport
authorFabian Stemmler <stemmler@in.tum.de>
Thu, 26 Sep 2019 14:43:53 +0000 (16:43 +0200)
committerFabian Stemmler <stemmler@in.tum.de>
Thu, 26 Sep 2019 14:43:53 +0000 (16:43 +0200)
plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/BooleanEditingSupport.java
plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/CyclingCellEditor.java [new file with mode: 0644]

index 8fbfe39..3c0a612 100644 (file)
@@ -1,11 +1,9 @@
 package net.mograsim.plugin.tables.mi;
 
 import org.eclipse.jface.viewers.CellEditor;
-import org.eclipse.jface.viewers.CheckboxCellEditor;
 import org.eclipse.jface.viewers.EditingSupport;
 import org.eclipse.jface.viewers.TableViewer;
 
-import net.mograsim.logic.core.types.Bit;
 import net.mograsim.machine.mi.MicroInstruction;
 import net.mograsim.machine.mi.MicroInstructionDefinition;
 import net.mograsim.machine.mi.parameters.BooleanClassification;
@@ -24,7 +22,7 @@ public class BooleanEditingSupport extends EditingSupport
                super(viewer);
                this.viewer = viewer;
                this.boolClass = (BooleanClassification) definition.getParameterClassification(index);
-               editor = new CheckboxCellEditor(viewer.getTable());
+               editor = new CyclingCellEditor(viewer.getTable(), boolClass.size());// new CheckboxCellEditor(viewer.getTable());
                this.index = index;
        }
 
@@ -45,7 +43,7 @@ public class BooleanEditingSupport extends EditingSupport
        {
                InstructionTableRow row = (InstructionTableRow) element;
                // true is 0 because the true value comes first in the combo box
-               return row.data.getCell(row.address).getParameter(index).getValue().getMSBit(0).equals(Bit.ONE);
+               return ((Mnemonic) row.data.getCell(row.address).getParameter(index)).ordinal();
        }
 
        @Override
@@ -54,7 +52,7 @@ public class BooleanEditingSupport extends EditingSupport
                InstructionTableRow row = (InstructionTableRow) element;
                MicroInstructionParameter[] params = row.data.getCell(row.address).getParameters();
                // true is 0 because the true value comes first in the combo box
-               Mnemonic newParam = boolClass.get((Boolean) value);
+               Mnemonic newParam = boolClass.get((Integer) value);
 
                params[index] = newParam;
                row.data.setCell(row.address, MicroInstruction.create(params));
diff --git a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/CyclingCellEditor.java b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/CyclingCellEditor.java
new file mode 100644 (file)
index 0000000..41ec10c
--- /dev/null
@@ -0,0 +1,61 @@
+package net.mograsim.plugin.tables.mi;
+
+import org.eclipse.jface.viewers.CellEditor;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+
+public class CyclingCellEditor extends CellEditor
+{
+       private final int size;
+       private int index = -1;
+
+       public CyclingCellEditor(int size)
+       {
+               super();
+               this.size = size;
+       }
+
+       public CyclingCellEditor(Composite parent, int size)
+       {
+               super(parent);
+               this.size = size;
+       }
+
+       public CyclingCellEditor(Composite parent, int size, int style)
+       {
+               super(parent, style);
+               this.size = size;
+       }
+
+       @Override
+       protected Control createControl(Composite parent)
+       {
+               // Nothing to return
+               return null;
+       }
+
+       @Override
+       protected Object doGetValue()
+       {
+               return index;
+       }
+
+       @Override
+       protected void doSetFocus()
+       {
+               // Nothing to focus
+       }
+
+       @Override
+       protected void doSetValue(Object index)
+       {
+               this.index = (Integer) index;
+       }
+
+       @Override
+       public void activate()
+       {
+               index = (index + 1) % size;
+               fireApplyEditorValue();
+       }
+}