Search in sources :

Example 1 with DrawingAttributeSet

use of com.cburch.draw.tools.DrawingAttributeSet in project logisim-evolution by reds-heig.

the class Main method main.

public static void main(String[] args) {
    DrawingAttributeSet attrs = new DrawingAttributeSet();
    Drawing model = new Drawing();
    CanvasObject rect = attrs.applyTo(new Rectangle(25, 25, 50, 50));
    model.addObjects(0, Collections.singleton(rect));
    showFrame(model, "Drawing 1");
    showFrame(model, "Drawing 2");
}
Also used : Drawing(com.cburch.draw.model.Drawing) CanvasObject(com.cburch.draw.model.CanvasObject) Rectangle(com.cburch.draw.shapes.Rectangle) DrawingAttributeSet(com.cburch.draw.tools.DrawingAttributeSet)

Example 2 with DrawingAttributeSet

use of com.cburch.draw.tools.DrawingAttributeSet in project logisim-evolution by reds-heig.

the class Main method showFrame.

private static void showFrame(Drawing model, String title) {
    JFrame frame = new JFrame(title);
    DrawingAttributeSet attrs = new DrawingAttributeSet();
    Canvas canvas = new Canvas();
    Toolbar toolbar = new Toolbar(canvas, attrs);
    canvas.setModel(model, new UndoLogDispatcher(new UndoLog()));
    canvas.setTool(toolbar.getDefaultTool());
    AttrTable table = new AttrTable(frame);
    AttrTableDrawManager manager = new AttrTableDrawManager(canvas, table, attrs);
    manager.attributesSelected();
    HorizontalSplitPane west = new HorizontalSplitPane(toolbar, table, 0.5);
    VerticalSplitPane all = new VerticalSplitPane(west, canvas, 0.3);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().add(all, BorderLayout.CENTER);
    frame.pack();
    frame.setVisible(true);
}
Also used : VerticalSplitPane(com.cburch.logisim.util.VerticalSplitPane) JFrame(javax.swing.JFrame) Canvas(com.cburch.draw.canvas.Canvas) UndoLogDispatcher(com.cburch.draw.undo.UndoLogDispatcher) HorizontalSplitPane(com.cburch.logisim.util.HorizontalSplitPane) UndoLog(com.cburch.draw.undo.UndoLog) AttrTable(com.cburch.logisim.gui.generic.AttrTable) DrawingAttributeSet(com.cburch.draw.tools.DrawingAttributeSet)

Aggregations

DrawingAttributeSet (com.cburch.draw.tools.DrawingAttributeSet)2 Canvas (com.cburch.draw.canvas.Canvas)1 CanvasObject (com.cburch.draw.model.CanvasObject)1 Drawing (com.cburch.draw.model.Drawing)1 Rectangle (com.cburch.draw.shapes.Rectangle)1 UndoLog (com.cburch.draw.undo.UndoLog)1 UndoLogDispatcher (com.cburch.draw.undo.UndoLogDispatcher)1 AttrTable (com.cburch.logisim.gui.generic.AttrTable)1 HorizontalSplitPane (com.cburch.logisim.util.HorizontalSplitPane)1 VerticalSplitPane (com.cburch.logisim.util.VerticalSplitPane)1 JFrame (javax.swing.JFrame)1