Examples of addFooterSection()


Examples of org.gephi.ui.components.richtooltip.RichTooltip.addFooterSection()

        //Img
        richTooltip.setMainImage(ImageUtilities.loadImage("org/gephi/desktop/timeline/resources/info.png"));

        //Chart
        if (getY() != null) {
            richTooltip.addFooterSection(model.getChart().getColumn().getTitle());
            richTooltip.addFooterSection(NbBundle.getMessage(TimelineTooltip.class, "TimelineTooltip.chart") + ": " + getY());

            //Img
            richTooltip.setFooterImage(ImageUtilities.loadImage("org/gephi/desktop/timeline/resources/chart.png"));
        }
View Full Code Here

Examples of org.gephi.ui.components.richtooltip.RichTooltip.addFooterSection()

        richTooltip.setMainImage(ImageUtilities.loadImage("org/gephi/desktop/timeline/resources/info.png"));

        //Chart
        if (getY() != null) {
            richTooltip.addFooterSection(model.getChart().getColumn().getTitle());
            richTooltip.addFooterSection(NbBundle.getMessage(TimelineTooltip.class, "TimelineTooltip.chart") + ": " + getY());

            //Img
            richTooltip.setFooterImage(ImageUtilities.loadImage("org/gephi/desktop/timeline/resources/chart.png"));
        }
View Full Code Here

Examples of org.pushingpixels.flamingo.api.common.RichTooltip.addFooterSection()

                  .read(TestRichTooltipPanels.class
                      .getResource("/test/resource/help-browser.png")));
        } catch (Exception exc) {
          exc.printStackTrace();
        }
        actionRichTooltip.addFooterSection(resourceBundle
            .getString("Tooltip.textFooterParagraph1"));

        button.setActionRichTooltip(actionRichTooltip);

        RichTooltip popupRichTooltip = new RichTooltip();
View Full Code Here

Examples of org.pushingpixels.flamingo.api.common.RichTooltip.addFooterSection()

                  .read(TestRichTooltipPanels.class
                      .getResource("/test/resource/help-browser.png")));
        } catch (Exception exc) {
          exc.printStackTrace();
        }
        popupRichTooltip.addFooterSection(resourceBundle
            .getString("Tooltip.textFooterParagraph1"));

        button.setPopupRichTooltip(popupRichTooltip);
      };
    });
View Full Code Here

Examples of org.pushingpixels.flamingo.api.common.RichTooltip.addFooterSection()

      rt.setFooterImage(ImageIO.read(TestRichTooltipPanels.class
          .getResource("/test/resource/help-browser.png")));
    } catch (Exception exc) {
      exc.printStackTrace();
    }
    rt
        .addFooterSection("Multiline footer description to provide a little bit more information on this subject");

    JRichTooltipPanel panel = new JRichTooltipPanel(rt);
    this.add(panel);
View Full Code Here

Examples of org.pushingpixels.flamingo.api.common.RichTooltip.addFooterSection()

    }
    if(ks != null) {
      if(tip == null) {
        tip = new RichTooltip(ActionUtils.getActionTitle(action), "  ");
      }
      tip.addFooterSection(formatShortcut(ks));
    }
    return tip;
  }

  public static String formatShortcut(KeyStroke ks) {
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.