Examples of LTextPane


Examples of lev.gui.LTextPane

    @Override
    protected void initialize() {
  super.initialize();

  question = new LTextPane(settingsPanel.getWidth() - 20, 20, SUMGUI.light);
  question.setEditable(false);
  question.centerIn(settingsPanel, header.getBottom() + 10);
  settingsPanel.add(question);

  last = new Point(last.x, question.getBottom());
View Full Code Here

Examples of lev.gui.LTextPane

      //Description
      int descY = descriptionAnchor.getY() + descriptionAnchor.getHeight() + 20;
      Dimension descSize = new Dimension(this.getWidth() - 100, this.getHeight() - descY
        - (this.getHeight() - patching.getY()) - 15);
      description = new LTextPane(descSize, new Color(200, 200, 200));
      description.centerIn(this, descY);
      description.setEditable(false);
      description.setText(descriptionText);
      description.setFontSize(14);
      description.centerText();
View Full Code Here

Examples of lev.gui.LTextPane

    @Override
    protected void initialize() {
  super.initialize();

  introText = new LTextPane(settingsPanel.getWidth() - 40, 400, SkyProcStarter.settingsColor);
  introText.setText(SkyProcStarter.welcomeText);
  introText.setEditable(false);
  introText.setFont(SkyProcStarter.settingsFont);
  introText.setCentered();
  setPlacement(introText);
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.