Examples of LLabel


Examples of lev.gui.LLabel

      cbox.tie(setting, save, help, false);
      cbox.setFocusable(false);
      using = cbox;
      add(cbox);
  } else {
      titleLabel = new LLabel(title, font, color);
      using = titleLabel;
      add(titleLabel);
  }

  button.setLocation(using.getWidth() + spacing, using.getHeight() / 2 - button.getHeight() / 2);
View Full Code Here

Examples of lev.gui.LLabel

      skyprocLogo.setLocation(getWidth() - skyprocLogo.getWidth() - 15, this.getHeight() - skyprocLogo.getHeight() - 30);
      backgroundPanel.add(skyprocLogo);


      // Label
      pluginLabel = new LLabel("[ " + pluginName + " ]", LFonts.OptimusPrinceps(30), new Color(61, 143, 184));
      pluginLabel.addShadow();
      pluginLabel.centerIn(this, 20);
      descriptionAnchor = pluginLabel;
      backgroundPanel.add(pluginLabel);


      //Creating Patch
      patching = new LLabel("Creating patch.", LFonts.Typo3(15), new Color(210, 210, 210));
      patching.addShadow();
      patching.centerIn(this, this.getHeight() - patching.getHeight() - 80);
      backgroundPanel.add(patching);

      //ProgressBar
      pbar.centerIn(this, patching.getY() + patching.getHeight() + 5);
      pbar.setCentered(false);
      pbar.setStatusOffset(-5);
      LLabel status = new LLabel(". . .", new Font("SansSerif", Font.PLAIN, 11), new Color(160, 160, 160));
      pbar.setStatusLabel(status);
      status.setLocation(8, getHeight() - status.getHeight() - 36);
      backgroundPanel.add(status);
      backgroundPanel.add(pbar);

      //Description
      int descY = descriptionAnchor.getY() + descriptionAnchor.getHeight() + 20;
View Full Code Here

Examples of lev.gui.LLabel

     * @param font
     * @param color
     */
    public SPList(String title, Font font, Color color) {
  super(title);
  this.titleLabel = new LLabel(title, font, color);
  this.titleLabel.addShadow();
  add(this.titleLabel);

  scroll.setLocation(0, this.titleLabel.getY() + this.titleLabel.getHeight() + 10);

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.