Package com.cburch.logisim.gui.generic

Examples of com.cburch.logisim.gui.generic.AttrTable


    simExplorer = new SimulationExplorer(proj, menuListener);
    explorerPane = new CardPanel();
    explorerPane.addView(VIEW_TOOLBOX, toolbox);
    explorerPane.addView(VIEW_SIMULATION, simExplorer);
    explorerPane.setView(VIEW_TOOLBOX);
    attrTable = new AttrTable(this);
    zoom = new ZoomControl(layoutZoomModel);

    // set up the central area
    CanvasPane canvasPane = new CanvasPane(layoutCanvas);
    mainPanelSuper = new JPanel(new BorderLayout());
View Full Code Here


    remove.addActionListener(listener);
    remove.setEnabled(false);
    removeArea.add(remove);

    // Area for viewing/changing attributes
    attrTable = new AttrTable(getOptionsFrame());

    GridBagLayout gridbag = new GridBagLayout();
    GridBagConstraints gbc = new GridBagConstraints();
    setLayout(gridbag);
    gbc.weightx = 1.0;
View Full Code Here

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

        simExplorer = new SimulationExplorer(proj, menuListener);
        explorerPane = new CardPanel();
        explorerPane.addView(VIEW_TOOLBOX, toolbox);
        explorerPane.addView(VIEW_SIMULATION, simExplorer);
        explorerPane.setView(VIEW_TOOLBOX);
        attrTable = new AttrTable(this);
        zoom = new ZoomControl(layoutZoomModel);

        // set up the central area
        CanvasPane canvasPane = new CanvasPane(layoutCanvas);
        mainPanelSuper = new JPanel(new BorderLayout());
View Full Code Here

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

        remove.addActionListener(listener);
        remove.setEnabled(false);
        removeArea.add(remove);

        // Area for viewing/changing attributes
        attrTable = new AttrTable(getOptionsFrame());

        GridBagLayout gridbag = new GridBagLayout();
        GridBagConstraints gbc = new GridBagConstraints();
        setLayout(gridbag);
        gbc.weightx = 1.0;
View Full Code Here

TOP

Related Classes of com.cburch.logisim.gui.generic.AttrTable

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.