Examples of hide()


Examples of ae.java.awt.peer.ComponentPeer.hide()

                if (containsFocus() && KeyboardFocusManager.isAutoFocusTransferEnabled()) {
                    transferFocus(true);
                }
                ComponentPeer peer = this.peer;
                if (peer != null) {
                    peer.hide();
                    createHierarchyEvents(HierarchyEvent.HIERARCHY_CHANGED,
                                          this, parent,
                                          HierarchyEvent.SHOWING_CHANGED,
                                          Toolkit.enabledOnToolkit(AWTEvent.HIERARCHY_EVENT_MASK));
                    if (peer instanceof LightweightPeer) {
View Full Code Here

Examples of antlr.TokenStreamHiddenTokenFilter.hide()

        lexer.setTreatEnumAsKeyword(true);
        lexer.setTokenObjectClass("antlr.CommonHiddenStreamToken");

        final TokenStreamHiddenTokenFilter filter =
                new TokenStreamHiddenTokenFilter(lexer);
        filter.hide(TokenTypes.SINGLE_LINE_COMMENT);
        filter.hide(TokenTypes.BLOCK_COMMENT_BEGIN);

        final GeneratedJavaRecognizer parser =
            new GeneratedJavaRecognizer(filter);
        parser.setFilename(aContents.getFilename());
View Full Code Here

Examples of autotest.common.ui.SimpleDialog.hide()

                    String yValue = Utils.jsonToString(row.get(1));

                    Anchor link = new Anchor(yValue);
                    link.addClickHandler(new ClickHandler() {
                        public void onClick(ClickEvent event) {
                            drill.hide();
                            listener.onSelectTest(testId);
                        }
                    });
                    contents.setWidget(i, 0, link);
                }
View Full Code Here

Examples of com.aelitis.azureus.ui.mdi.MdiEntry.hide()

      triggerSelectionListener(newEntry, newEntry);
      return;
    }

    if (oldEntry != null) {
      oldEntry.hide();
    }

    currentEntry = (MdiEntrySWT) newEntry; // assumed MdiEntrySWT

    if (newEntry != null) {
View Full Code Here

Examples of com.apress.progwt.client.college.gui.ext.ContextMenu.hide()

        final ContextMenu menu = new ContextMenu(x, y);

        ProcessTypePanel typePanel = new ProcessTypePanel(date,
                new ClickListener() {
                    public void onClick(Widget sender) {
                        menu.hide();
                    }
                });
        typePanel.load(lastUser);

        menu.clear();
View Full Code Here

Examples of com.drakulo.games.ais.ui.component.button.Button.hide()

    y += vPadding;
    label = FontHelper.firstToUpper(I18n.get("global.load"));
    Button loadButton = new TextButton(label, x, y);
    loadButton.setSize(buttonWidth, buttonHeight);
    loadButton.disable();
    loadButton.hide();
    loadButton.setActionHandler(new ActionHandler() {

      @Override
      public void run() {
        // TODO
View Full Code Here

Examples of com.drakulo.games.ais.ui.component.button.ImageButton.hide()

        BuildWindow.this.costMap = data.getUpgradeCost();
        earnMap = data.getProduction();
      }
    });
    button.disable();
    button.hide();
    parent.add(button);
    return button;
  }

  /**
 
View Full Code Here

Examples of com.drakulo.games.ais.ui.component.button.TextButton.hide()

    y += vPadding;
    label = FontHelper.firstToUpper(I18n.get("global.load"));
    Button loadButton = new TextButton(label, x, y);
    loadButton.setSize(buttonWidth, buttonHeight);
    loadButton.disable();
    loadButton.hide();
    loadButton.setActionHandler(new ActionHandler() {

      @Override
      public void run() {
        // TODO
View Full Code Here

Examples of com.extjs.gxt.ui.client.core.El.hide()

          + "opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius=" + shadowOffset + ")");
    } else {
      el = new El(Markup.SHADOW);
    }
    el.addStyleName("x-ignore");
    el.hide();
    return el;
  }

  /**
   * Creates an iframe shim for this element to keep selects and other windowed
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.Component.hide()

   * @param region the layout region
   */
  public void hide(LayoutRegion region) {
    Component c = getRegionWidget(region);
    if (c != null) {
      c.hide();
    }
  }

  public void setContainer(Container<?> ct) {
    super.setContainer(ct);
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.