use of com.cburch.draw.undo.UndoLog 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);
}
Aggregations