Examples of InfoPanel


Examples of ch.rakudave.jnetmap.view.components.InfoPanel

    splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, true, mapPanel, sideBar);
    splitPane.setDividerSize(3);
    setSidebarVisible(Settings.getBoolean("mapview.sidebar.visible", true));
    add(splitPane, BorderLayout.CENTER);
    // add default sidebar tabs
      InfoPanel info = new InfoPanel(this);
        mapPanel.addGraphListener(info);
        addSideTab(Lang.get("infopanel.title"), Icons.get("info"), info, Lang.get("infopanel.tooltip"));
      addSideTab(Lang.get("menu.edit"), Icons.get("cursor_edit"), new EditPanel(this), "");
    // load plugin sidebar tabs
    for (SidebarPlugin p : new PluginManagerUtil(Controller.pm).getPlugins(SidebarPlugin.class)) {
View Full Code Here

Examples of gri.gui.files.browser.InfoPanel

    lblIcon = new JLabel("", JLabel.CENTER);
    lblIcon.setPreferredSize(new Dimension(48,48));
    pnlIcon.add(lblIcon);

    pnlDetails = new TaskDetailsPanel();
    pnlInfo = new InfoPanel("", pnlDetails);

    add(pnlIcon);
    add(pnlInfo);
    add(Box.createVerticalGlue());
View Full Code Here

Examples of org.gwt.mosaic.ui.client.infopanel.InfoPanel

            int width = parent.getOffsetWidth();
            int height = parent.getOffsetHeight();

            if(width>100 & height>100) // workaround hidden panels
            {
                p = new InfoPanel();
                p.setStylePrimaryName("bpm-loading-overlay");
                p.setWidget(new Image("images/loading_lite.gif"));
                p.setPopupPosition(left+(width/2)-15, top+(height/2)-15);
                p.show();
            }
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.