Package limelight.ui.model

Examples of limelight.ui.model.PanelBase


  public static InputPanelLayout instance = new InputPanelLayout();

  @Override
  public void doExpansion(Panel thePanel)
  {
    PanelBase panel = (PanelBase)thePanel;
    Box bounds = panel.getParent().getChildConsumableBounds();
    panel.setLocation(bounds.x, bounds.y);
    panel.setSize(bounds.width, bounds.height);
  }
View Full Code Here


  }


  private synchronized void configurationChanged()
  {
    PanelBase parent = getParent();
    if(parent != null)
      parent.markAsNeedingLayout(ScrollLayout.instance);
  }
View Full Code Here

TOP

Related Classes of limelight.ui.model.PanelBase

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.