Package com.jcloisterzone.ui.controls

Examples of com.jcloisterzone.ui.controls.ControlPanel


        animationService.clearAll();
        animationService.setGridPanel(null);
        removeAll();
        setVisible(false);

        controlPanel = new ControlPanel(client, game);
        gridPanel = new GridPanel(client, controlPanel, chatPanel, snapshot);
        meepleLayer = new MeepleLayer(gridPanel);
        tileLayer = new TileLayer(gridPanel);
        farmHintLayer = new FarmHintsLayer(gridPanel);
        gridPanel.addLayer(tileLayer)//zindex 2
View Full Code Here


            }
        }
    }

    void clearActions() {
        ControlPanel controlPanel = gamePanel.getControlPanel();
        ActionPanel ap = controlPanel.getActionPanel();
        if (ap.getActions() != null) {
            controlPanel.clearActions();
        }
        ap.setFakeAction(null);
        getJMenuBar().getUndo().setEnabled(false);
    }
View Full Code Here

TOP

Related Classes of com.jcloisterzone.ui.controls.ControlPanel

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.