Package jsky.catalog.gui

Examples of jsky.catalog.gui.CatalogTree


    /** Add a catalog menu to the catalog navigator frame */
    protected JMenu createCatalogMenu() {
        Navigator navigator = (Navigator) getNavigator();
        JMenu menu = new NavigatorCatalogMenu(navigator, false);

        CatalogTree catalogTree = navigator.getCatalogTree();
        menu.addSeparator();
        menu.add(catalogTree.makeReloadMenuItem());

        // Unfortunately, this doesn't seem to work yet (SOAP errors)
//        menu.add(catalogTree.getConfigureCatalogDirectoriesAction());

        menu.addSeparator();
        menu.add(catalogTree.getCutAction());
        menu.add(catalogTree.getCopyAction());
        menu.add(catalogTree.getPasteAction());

        menu.addSeparator();
        menu.add(catalogTree.getToTopAction());
        menu.add(catalogTree.getMoveUpAction());
        menu.add(catalogTree.getMoveDownAction());
        menu.add(catalogTree.getToBottomAction());

        return menu;
    }
View Full Code Here


     */
    public NavigatorFrame(MainImageDisplay imageDisplay) {
        super("Catalog Navigator");

        setIconImage(new ImageIcon(Resources.getResource("images/Catalog24.gif")).getImage());
        CatalogTree catalogTree = new CatalogTree();
        TablePlotter plotter = new BasicTablePlotter();

        navigator = new Navigator(catalogTree, plotter, imageDisplay);

        NavigatorToolBar toolbar = new NavigatorToolBar(navigator);
View Full Code Here

TOP

Related Classes of jsky.catalog.gui.CatalogTree

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.