Examples of hide()


Examples of java.awt.Window.hide()

    }

    static class Closer extends WindowAdapter implements Serializable{
        public void windowClosing(WindowEvent e) {
            Window w = e.getWindow();
            w.hide();
        }
    }
   
    static class DisposeOnClose extends ComponentAdapter implements Serializable{
        public void componentHidden(ComponentEvent e) {
View Full Code Here

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

                if (containsFocus()) {
                    autoTransferFocus(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 javafx.scene.control.ContextMenu.hide()

    {
      @Override
      public void handle(MouseEvent e)
      {
        menuCompiled.hide();
        menuUncompiled.hide();
      }
    });
   
   
    getChildren().add(cbOnlyCompiled);
View Full Code Here

Examples of javafx.stage.Popup.hide()

            frame.getChildren().addAll(imgView, info);
            final Popup popup = new Popup();
            popup.addEventHandler(MouseEvent.MOUSE_CLICKED, new EventHandler<MouseEvent>() {
              @Override
              public void handle(MouseEvent event) {
                popup.hide();
              }
            });
            popup.setAutoHide(true);
            popup.getContent().add(frame);
            popup.setX(getScene().getWindow().getX() + getScene().getWindow().getWidth() / 2 - image.getWidth() / 2);
View Full Code Here

Examples of javafx.stage.Stage.hide()

            }
          });
        } else if (newValue == State.SUCCEEDED || newValue == State.FAILED || newValue == State.CANCELLED) {
          Platform.runLater(new Runnable() {
            public void run() {
              alert.hide();
              parent.getScene().getRoot().setEffect(origEffect);
            }
          });
        }
      }
View Full Code Here

Examples of javax.swing.JDialog.hide()

        }
    }
    dialog.setTitle(getTitle());
    dialog.getContentPane().add(jhelp);
    if (tmpDialog != null) {
        tmpDialog.hide();
        tmpDialog = null;
    }
      }
  } else {
      if (frame == null) {
View Full Code Here

Examples of javax.swing.Popup.hide()

  public void hideCurrentPopup() {
    Popup cur = curPopup;
    if (cur != null) {
      curPopup = null;
      dragStart = null;
      cur.hide();
    }
  }

  public void selectionChanged(SelectionEvent e) {
    int act = e.getAction();
View Full Code Here

Examples of marauroa.common.game.RPObject.hide()

    addRPZone(zone);

    RPObject hidden = new RPObject();
    zone.assignRPObjectID(hidden);
    hidden.put("hidden", "You don't see this object");
    hidden.hide();
    zone.add(hidden);
  }

  /**
   * This method MUST be implemented in other for marauroa to be able to load
View Full Code Here

Examples of org.apache.airavata.xbaya.experiment.gui.RegistryWorkflowPublisherWindow.hide()

                String owner = this.engine.getConfiguration().getRegistryUserName();

                AiravataRegistry registry = this.connectToRegistry();
                boolean result = registry.saveWorkflow(workflowQName, workflow.getName(), workflow.getDescription(), workflowAsString,
                        owner, registryPublishingWindow.isMakePublic());
                registryPublishingWindow.hide();
                return result;
            } catch (Exception e) {
                this.engine.getErrorWindow().error(e.getMessage(), e);
            }
        }
View Full Code Here

Examples of org.apache.airavata.xbaya.gui.WaitDialog.hide()

        };
        showThread.start();

        Thread.sleep(1000);

        dialog.hide();

        showThread.join();
    }

    /**
 
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.