Package org.ugate.gui.components

Examples of org.ugate.gui.components.StatusIcon


        }
      }
    });
    addHelpTextTrigger(defaultUserImg, RS.rbLabel(KEY.APP_DIALOG_DEFAULT_USER));
 
    cnctStatusWireless = new StatusIcon(RS.imgView(RS.IMG_WIRELESS_ICON,
        CONNECTION_STATUS_SIZE, CONNECTION_STATUS_SIZE, true, true), GuiUtil.COLOR_OFF);
    addServiceBehavior(cnctStatusWireless, null, ServiceProvider.Type.WIRELESS, KEY.WIRELESS_CONNECT_DESC);
    cnctStatusWeb = new StatusIcon(RS.imgView(RS.IMG_WEB_ICON,
        CONNECTION_STATUS_SIZE, CONNECTION_STATUS_SIZE, true, true), GuiUtil.COLOR_OFF);
    addServiceBehavior(cnctStatusWeb, null, ServiceProvider.Type.WEB, KEY.WIRELESS_WEB_START_STOP_DESC);
    cnctStatusEmail = new StatusIcon(RS.imgView(RS.IMG_EMAIL_ICON, CONNECTION_STATUS_SIZE,
        CONNECTION_STATUS_SIZE, true, true), GuiUtil.COLOR_OFF);
    addServiceBehavior(cnctStatusEmail, null, ServiceProvider.Type.EMAIL, KEY.MAIL_CONNECT_DESC);
   
    // TODO : need to set camera resolution before calling Command.CAM_TAKE_PIC?
    final DropShadow ds = new DropShadow();
View Full Code Here


     */
    public NodeStatusView(final ControlBar controlBar) {
      super();
      getStyleClass().add("remote-node-listcell");
      this.controlBar = controlBar;
      this.statusIcon = new StatusIcon(16d, 16d, GuiUtil.COLOR_CLOSED);
      this.helpTextStringProperty = new SimpleStringProperty();
      setHelpText("LOADING...");
      setCursor(Cursor.HAND);
      controlBar.addHelpTextTrigger(this, this.helpTextStringProperty);
    }
View Full Code Here

   *            the {@link ControlBar}
   */
  public EmailHostConnection(final ControlBar controlBar) {
    super(20);
    this.cb = controlBar;
    final StatusIcon emailIcon = new StatusIcon(
        RS.imgView(RS.IMG_EMAIL_ICON), GuiUtil.COLOR_OFF);
    cb.addServiceBehavior(emailIcon, null, ServiceProvider.Type.EMAIL,
        KEY.MAIL_CONNECT_DESC);
    smtpHost = new UGateCtrlBox<>(controlBar.getActorPA(),
        ActorType.MAIL_SMTP_HOST, UGateCtrlBox.Type.TEXT,
View Full Code Here

   */
  public HostConnection(final ControlBar controlBar) {
    super(20);
    this.cb = controlBar;
   
    final StatusIcon wirelessIcon = new StatusIcon(
        RS.imgView(RS.IMG_WIRELESS_ICON), GuiUtil.COLOR_OFF);
    cb.addServiceBehavior(wirelessIcon, null, ServiceProvider.Type.WIRELESS, KEY.WIRELESS_CONNECT_DESC);
    final StatusIcon webIcon = new StatusIcon(
        RS.imgView(RS.IMG_WEB_ICON), GuiUtil.COLOR_OFF);
    cb.addServiceBehavior(webIcon, null, ServiceProvider.Type.WEB, KEY.WIRELESS_WEB_START_STOP_DESC);
    port = createComPortBox();
      baud = createBaudRateBox();
      hostAddress = new UGateCtrlBox<>(cb.getActorPA(), ActorType.COM_ADDY,
View Full Code Here

TOP

Related Classes of org.ugate.gui.components.StatusIcon

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.