Package games.stendhal.client.gui.buddies

Examples of games.stendhal.client.gui.buddies.BuddyPanelController


   * @return A component containing the components left of the game screen
   */
  private JComponent createLeftPanel() {
    minimap = new MapPanelController(client);
    final StatsPanelController stats = StatsPanelController.get();
    final BuddyPanelController buddies = new BuddyPanelController();
    ScrolledViewport buddyScroll = new ScrolledViewport((JComponent) buddies.getComponent());
    buddyScroll.setScrollingSpeed(SCROLLING_SPEED);
    final JComponent buddyPane = buddyScroll.getComponent();
    buddyPane.setBorder(null);

    final JComponent leftColumn = SBoxLayout.createContainer(SBoxLayout.VERTICAL);
View Full Code Here

TOP

Related Classes of games.stendhal.client.gui.buddies.BuddyPanelController

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.