Package com.cburch.draw.canvas

Examples of com.cburch.draw.canvas.Canvas


 
  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);
View Full Code Here


    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);
View Full Code Here

TOP

Related Classes of com.cburch.draw.canvas.Canvas

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.