Examples of PopupScreen


Examples of org.spoutcraft.api.gui.PopupScreen

    output.writeUUID(widget);
  }

  public void run(int playerId) {
    InGameHUD mainScreen = SpoutClient.getInstance().getActivePlayer().getMainScreen();
    PopupScreen popup = mainScreen.getActivePopup();

    Widget w = PacketWidget.allWidgets.get(widget);

    if (w != null && w.getScreen() != null && !(w instanceof Screen)) {
      w.getScreen().removeWidget(w);
    }

    if (w instanceof PopupScreen && popup.getId().equals(w.getId())) {
      // Determine if this is a popup screen and if we need to update it
      mainScreen.closePopup();
    }

    PacketWidget.allWidgets.remove(widget);
View Full Code Here

Examples of org.spoutcraft.api.gui.PopupScreen

      activePopup = null;
    }
    if (activePopup != null) {
      activePopup.onTick();
    } else {
      PopupScreen queued = queuedScreens.poll();
      if (queued != null) {
        attachPopupScreen(queued);
      }
    }
    super.onTick();
View Full Code Here

Examples of org.spoutcraft.api.gui.PopupScreen

    output.writeBoolean(focus);
  }

  public void run(int playerId) {
    InGameHUD screen = SpoutClient.getInstance().getActivePlayer().getMainScreen();
    PopupScreen popup = screen.getActivePopup();
    if (popup != null) {
      Widget w = popup.getWidget(widgetId);
      if (w != null && w instanceof Control) {
        ((Control)w).setFocus(focus);
      }
    }
  }
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.