Examples of MiniMapViewer


Examples of de.yaams.extensions.basemap.tiled.mapeditor.widget.MiniMapViewer

    dataPanel = new JPanel(new BorderLayout());

    // navigation and tool options
    // TODO: the minimap is prohibitively slow, need to speed this up
    // before it can be used
    miniMap = new MiniMapViewer();
    // miniMap.setMainPanel(mapScrollPane);
    JScrollPane miniMapSp = new JScrollPane();
    miniMapSp.getViewport().setView(miniMap);
    miniMapSp.setMinimumSize(new Dimension(0, 120));
View Full Code Here

Examples of de.yaams.extensions.basemap.tiled.mapeditor.widget.MiniMapViewer

  }

  private JPanel createCustomPanel() {
    JPanel customPanel = new JPanel();

    MiniMapViewer mmv = new MiniMapViewer();
    if (myBrush instanceof CustomBrush) {
      // mmv.setView(((CustomBrush)myBrush));
    }

    JScrollPane miniSp = new JScrollPane();
View Full Code Here

Examples of tiled.mapeditor.widget.MiniMapViewer

    }

    private JPanel createCustomPanel() {
        JPanel customPanel = new JPanel();

        MiniMapViewer mmv = new MiniMapViewer();
        if (myBrush instanceof CustomBrush) {
            //mmv.setView(((CustomBrush)myBrush));
        }

        JScrollPane miniSp = new JScrollPane();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.