Package org.iremake.client.ui.map

Examples of org.iremake.client.ui.map.MainMapPanel


        bar.add(terrainButton, provinceButton);

        infoPanel = new EditorMapInfoPanel();

        // create main map panel and add
        mainMapPanel = new MainMapPanel(scenario);
        mainMapPanel.addTileListener(new MapTileListener() {
            @Override
            public void focusChanged(MapPosition p) {
                infoPanel.update(p, scenario);
            }
View Full Code Here


     */
    public MainScreen() {
        JPanel panel = new JPanel();

        // Add MapPanel
        mainMapPanel = new MainMapPanel(scenario);

        panel.setLayout(new MigLayout("fill", "[grow][]"));
        panel.add(mainMapPanel, "grow");
        panel.add(createControlPanel(), "growy, wmin 300");

View Full Code Here

TOP

Related Classes of org.iremake.client.ui.map.MainMapPanel

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.