Package com.jcloisterzone.ui.controls

Examples of com.jcloisterzone.ui.controls.ActionPanel


    }

    @Override
    public void forward() {
        tileRotation = tileRotation.next();
        ActionPanel panel = client.getControlPanel().getActionPanel();
        panel.refreshImageCache();
    }
View Full Code Here


    }

    @Override
    public void backward() {
        tileRotation = tileRotation.prev();
        ActionPanel panel = client.getControlPanel().getActionPanel();
        panel.refreshImageCache();
    }
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.ActionPanel

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.