Package org.spoutcraft.client.packet

Examples of org.spoutcraft.client.packet.PacketComboBox


        }
        ListWidgetItem current = lw.getSelectedItem();
        current.onClick(x - 5, y - currentHeight, doubleclick);
        lw.onSelected(lw.getSelectedRow(), doubleclick);
        if (lw instanceof ComboBoxView) {
          PacketComboBox packet = new PacketComboBox(((ComboBoxView) lw).getComboBox());
          SpoutClient.getInstance().getPacketManager().sendSpoutPacket(packet);
        } else {
          SpoutClient.getInstance().getPacketManager().sendSpoutPacket(action);
        }
View Full Code Here


    }
    this.buttonClicked((Button) control);
    SpoutClient.getInstance().getPacketManager().sendSpoutPacket(new PacketControlAction(screen, control, 1));
    ((Button) control).onButtonClick();
    if (control instanceof GenericComboBox) {
      PacketComboBox packet = new PacketComboBox((GenericComboBox) control);
      SpoutClient.getInstance().getPacketManager().sendSpoutPacket(packet);
    }
  }
View Full Code Here

TOP

Related Classes of org.spoutcraft.client.packet.PacketComboBox

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.