@Override public void hierarchyChanged(HierarchyEvent e) { if ((e.getComponent() != txtComp) || ((e.getChangeFlags() & DISPLAYABILITY_CHANGED) == 0) || !txtComp.isDisplayable()) { return; } watcherLogger.finer("componentShown()"); //NOI18N if (foregroundColor == null) { foregroundColor = txtComp.getForeground(); } if ((doc.getLength() == 0) && !txtComp.isFocusOwner()) { displayInfo(); } }
public void eventDispatched(AWTEvent event) { HierarchyEvent e = (HierarchyEvent) event; if ((e.getChangeFlags() & HierarchyEvent.PARENT_CHANGED) != 0) { Component c = e.getChanged(); Container p = c.getParent(); if (p == null) { // Component was removed from the hierarchy components.remove(c); } else { Throwable t = new RuntimeException(); StringWriter sw = new StringWriter(); t.printStackTrace(new PrintWriter(sw)); String stackTrace = sw.toString(); String stackLine = getComponentAddStackLine(stackTrace); components.put(c, stackLine); } } }
public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0) { boolean showing = container.isShowing(); if (showing != bug4924561knownShowing) { if (container.isShowing()) { initDisplayer(); attachModelAndSelectionListeners(); ensureSelectedComponentIsShowing(); if (container.getType() == TabbedContainer.TYPE_SLIDING) { updateOrientation(); } } else { detachModelAndSelectionListeners(); if (container.getType() == TabbedContainer.TYPE_SLIDING) { updateOrientation(); } } } bug4924561knownShowing = showing; } }
public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.PARENT_CHANGED) != 0) { Window parentWindow = SwingUtilities.getWindowAncestor(BufferedCanvasComponent.this); if (lastParentWindow != parentWindow) { if (lastParentWindow != null) lastParentWindow.removeWindowListener(VisibilityHandler.this); if (parentWindow != null) parentWindow.addWindowListener(VisibilityHandler.this); lastParentWindow = parentWindow; } } if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0) { if (isShowing()) BufferedCanvasComponent.this.shown(); else BufferedCanvasComponent.this.hidden(); } }
public QueryUI(OQLController.QueryController queryController, OQLEngine engine) { super(Bundle.OQLControllerUI_QueryEditorCaption(), ICON, true); this.queryController = queryController; initComponents(engine); addHierarchyListener(new HierarchyListener() { public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0) { if (isShowing()) { updateUIState(); QueryUI.this.removeHierarchyListener(this); } } } }); }
InstanceScrollPane(Heap heap) { this.heap = heap; setBorder(BorderFactory.createEmptyBorder()); setViewportBorder(BorderFactory.createLineBorder( UIManager.getLookAndFeel().getID().equals("Metal") ? // NOI18N UIManager.getColor("Button.darkShadow") : // NOI18N UIManager.getColor("Button.shadow"))); // NOI18N addHierarchyListener(new HierarchyListener() { public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0) { if (instancePending && isShowing()) showInstanceImpl(); } } }); }
/** Creates a new instance of JTreeTablePanel */ public JTreeTablePanel(JTreeTable treeTable) { super(new BorderLayout()); this.treeTable = treeTable; initComponents(); hookHeaderColumnResize(); hookScrollBarValueChange(); hookTreeCollapsedExpanded(); addHierarchyListener(new HierarchyListener() { public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0) { if (isShowing()) { updateScrollBar(true); } } } }); }
@Override public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & DISPLAYABILITY_CHANGED) == 0) { return; } assert e.getChanged() == triggerComponent; if (triggerComponent.isDisplayable()) { LOG.finer("trigger component became displayable"); //NOI18N RepositoryComboSupport.this.start(); } else { LOG.finer("trigger component became non-displayable"); //NOI18N RepositoryComboSupport.this.shutdown(); } }
/** * Expects to be added to a SymbolDice. Adds the button to the control window's toolbar and registers itself as a * {@link KeyStrokeListener} */ public void addTo(Buildable parent) { resultsIcon.setResults(new int[dice.size()]); launch.addHierarchyListener(new HierarchyListener() { public void hierarchyChanged(HierarchyEvent e) { if (launch.isShowing()) { dialog.setLocationRelativeTo(launch); launch.removeHierarchyListener(this); } } }); final GameModule mod = GameModule.getGameModule(); ran = mod.getRNG(); mod.getToolBar().add(launch); idMgr.add(this); mod.addCommandEncoder(this); property.addTo((MutablePropertiesContainer)parent); }
/** Returns the main panel shown on this dialog. */ public GraphPreviewPanel getContent() { if (this.contentPanel == null) { this.contentPanel = new GraphPreviewPanel(getJGraph()); this.contentPanel.initialise(); this.contentPanel.setEnabled(true); // make any dialog in which this panel is embedded resizable // taken from https://blogs.oracle.com/scblog/entry/tip_making_joptionpane_dialog_resizable this.contentPanel.addHierarchyListener(new HierarchyListener() { @Override public void hierarchyChanged(HierarchyEvent e) { Window window = SwingUtilities.getWindowAncestor(GraphPreviewDialog.this.contentPanel); if (window instanceof Dialog) { Dialog dialog = (Dialog) window; if (!dialog.isResizable()) { dialog.setResizable(true); } } } }); } return this.contentPanel; }
@Override protected void installListeners() { if (WindowsLookAndFeel.isOnVista()) { installWindowListener(); hierarchyListener = new HierarchyListener() { public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.DISPLAYABILITY_CHANGED) != 0) { if (menuBar.isDisplayable()) { installWindowListener(); } else { uninstallWindowListener(); } } } }; menuBar.addHierarchyListener(hierarchyListener); } super.installListeners(); }
/** * Construct a canvas with the basic scene graph consisting of a root, * camera, and layer. Zooming and panning are automatically installed. */ public PCanvas() { CURRENT_ZCANVAS = this; cursorStack = new PStack(); setCamera(createDefaultCamera()); setDefaultRenderQuality(PPaintContext.HIGH_QUALITY_RENDERING); setAnimatingRenderQuality(PPaintContext.LOW_QUALITY_RENDERING); setInteractingRenderQuality(PPaintContext.LOW_QUALITY_RENDERING); setPanEventHandler(new PPanEventHandler()); setZoomEventHandler(new PZoomEventHandler()); setBackground(Color.WHITE); setOpaque(true); addHierarchyListener(new HierarchyListener() { public void hierarchyChanged(final HierarchyEvent e) { if (e.getComponent() == PCanvas.this) { if (getParent() == null) { removeInputSources(); } else if (isEnabled()) { installInputSources(); } } } }); }
/** * BezierAnimationPanel Constructor */ public BezierAnimationPanel() { setOpaque(true); colors.put(BACKGROUND, new Color(0, 0, 153)); colors.put(OUTER, new Color(255, 255, 255)); colors.put(GRADIENT_A, new Color(255, 0, 101)); colors.put(GRADIENT_B, new Color(255, 255, 0)); addHierarchyListener(new HierarchyListener() { public void hierarchyChanged(HierarchyEvent e) { if (isShowing()) { start(); } else { stop(); } } } ); }
public void hierarchyChanged(HierarchyEvent event) { if ((event.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) > 0) { JComponent component = (JComponent)event.getComponent(); final Demo demo = (Demo)component.getClientProperty("swingset3.demo"); if (!component.isShowing()) { demo.stop(); } else { demoContainer.revalidate(); EventQueue.invokeLater(new Runnable() { public void run() { demo.start(); } }); } } }
private void initUI() { setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); glassPane = new DisabledGlassPane(); JRootPane rootPane = SwingUtilities.getRootPane(this); rootPane.setGlassPane(glassPane); final java.awt.Component topLevelGlassPane = DesktopComponentsHelper.getTopLevelFrame(parentContainer).getGlassPane(); topLevelGlassPane.addHierarchyListener(new HierarchyListener() { @Override public void hierarchyChanged(HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) == HierarchyEvent.SHOWING_CHANGED) { if (topLevelGlassPane.isVisible()) { glassPane.activate(null); } else { glassPane.deactivate(); } } } }); }
public void hierarchyChanged(@NotNull HierarchyEvent e) { if (isDisposed()) return; if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) > 0) { final Runnable runnable = new DumbAwareRunnable() { public void run() { final Component c = myComponent.get(); if (isDisposed() || c == null) return; if (c.isShowing()) { showNotify(); } else { hideNotify(); } } }; final Application app = ApplicationManager.getApplication(); if (app != null && app.isDispatchThread()) { app.invokeLater(runnable, ModalityState.current()); } else { //noinspection SSBasedInspection SwingUtilities.invokeLater(runnable); } } }
@Override public void hierarchyChanged(HierarchyEvent hierarchyEvent) { if ((hierarchyEvent.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0) { // We only want to listen to VFS_CHANGES events when the tool window is opened. if (myTree.isShowing()) { if (myConnection == null) { myConnection = myProject.getMessageBus().connect(myProject); myConnection.subscribe(VirtualFileManager.VFS_CHANGES, this); } } else { if (myConnection != null) { myConnection.disconnect(); myConnection = null; } } } }
private void createComponents() { final JScrollPane scrollPane = new JScrollPane(localPlayerPanel); localPlayerPanel.addHierarchyListener(new HierarchyListener() { @Override public void hierarchyChanged(final HierarchyEvent e) { final Window window = SwingUtilities.getWindowAncestor(localPlayerPanel); if (window instanceof Dialog) { final Dialog dialog = (Dialog) window; if (!dialog.isResizable()) { dialog.setResizable(true); dialog.setMinimumSize(new Dimension(700, 700)); } } } }); localPlayerSelection.addActionListener( e -> JOptionPane.showMessageDialog(PbemSetupPanel.this, scrollPane, "Select Local Players and AI's", JOptionPane.PLAIN_MESSAGE)); }
/** * Helper method for initializing multi line support. */ private void initLineWrapSupport() { addPropertyChangeListener(new MultiLineSupport()); // FYI: no more listening for componentResized. Those events are delivered out // of order and without old values are meaningless and forcing us to react when // not necessary. Instead overriding reshape() ensures we have control over old AND new size. addHierarchyBoundsListener(new HierarchyBoundsAdapter() { @Override public void ancestorResized(HierarchyEvent e) { // if one of the parents is viewport, resized events will not be propagated down unless viewport is changing visibility of scrollbars. // To make sure Label is able to re-wrap text when viewport size changes, initiate re-wrapping here by changing size of view if (e.getChanged() instanceof JViewport) { Rectangle viewportBounds = e.getChanged().getBounds(); if (viewportBounds.getWidth() < getWidth()) { View view = getWrappingView(); if (view != null) { view.setSize(viewportBounds.width, viewportBounds.height); } } } }}); }
public void hierarchyChanged(HierarchyEvent event) { if ((event.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) > 0) { JComponent component = (JComponent)event.getComponent(); final Demo demo = (Demo)component.getClientProperty("swingset3.demo"); if (!component.isShowing()) { demo.stop(); } else { getComponentByConstraint("demo").revalidate(); EventQueue.invokeLater(new Runnable() { public void run() { demo.start(); } }); } } }
public static void makeOwningDialogResizable(@Nonnull final Component component, @Nonnull @MustNotContainNull final Runnable... extraActions) { final HierarchyListener listener = new HierarchyListener() { @Override public void hierarchyChanged(@Nonnull final HierarchyEvent e) { final Window window = SwingUtilities.getWindowAncestor(component); if (window instanceof Dialog) { final Dialog dialog = (Dialog) window; if (!dialog.isResizable()) { dialog.setResizable(true); component.removeHierarchyListener(this); for (final Runnable r : extraActions) { r.run(); } } } } }; component.addHierarchyListener(listener); }
private final HierarchyListener createHierarchyListener() { return new HierarchyListener() { @Override public void hierarchyChanged(HierarchyEvent e) { if (e.getChangeFlags() == HierarchyEvent.PARENT_CHANGED) { configureColumnControl(); } } }; }
/** Displays the Tag panel. Returns true if the user canceled. */ protected boolean showPanel() { isEmpty = true; panel.addHierarchyListener(new HierarchyListener() { @Override public void hierarchyChanged(HierarchyEvent e) { Window window = SwingUtilities.getWindowAncestor(panel); if (window instanceof Dialog) { Dialog dialog = (Dialog) window; if (!dialog.isResizable()) { dialog.setResizable(true); } } } }); boolean cancel = JOptionPane.showConfirmDialog(null, panel, Generator.translate("GUI:tag.add") + " : " + getName(), JOptionPane.OK_CANCEL_OPTION) != JOptionPane.OK_OPTION; if (!cancel) isEmpty = false; return cancel; }
/** * Construct a canvas with the basic scene graph consisting of a root, * camera, and layer. Zooming and panning are automatically installed. */ public PCanvas() { cursorStack = new PStack(); setCamera(createDefaultCamera()); setDefaultRenderQuality(PPaintContext.HIGH_QUALITY_RENDERING); setAnimatingRenderQuality(PPaintContext.LOW_QUALITY_RENDERING); setInteractingRenderQuality(PPaintContext.LOW_QUALITY_RENDERING); setPanEventHandler(new PPanEventHandler()); setZoomEventHandler(new PZoomEventHandler()); setBackground(Color.WHITE); setOpaque(true); addHierarchyListener(new HierarchyListener() { public void hierarchyChanged(final HierarchyEvent e) { if (e.getComponent() == PCanvas.this) { if (getParent() == null) { removeInputSources(); } else if (isEnabled()) { installInputSources(); } } } }); }
/** * Helper method for initializing multi line support. */ private void initLineWrapSupport() { addPropertyChangeListener(new MultiLineSupport()); // FYI: no more listening for componentResized. Those events are delivered out // of order and without old values are meaningless and forcing us to react when // not necessary. Instead overriding reshape() ensures we have control over old AND new size. addHierarchyBoundsListener(new HierarchyBoundsAdapter() { public void ancestorResized(HierarchyEvent e) { // if one of the parents is viewport, resized events will not be propagated down unless viewport is changing visibility of scrollbars. // To make sure Label is able to re-wrap text when viewport size changes, initiate re-wrapping here by changing size of view if (e.getChanged() instanceof JViewport) { Rectangle viewportBounds = e.getChanged().getBounds(); if (viewportBounds.getWidth() < getWidth()) { View view = getWrappingView(); if (view != null) { view.setSize(viewportBounds.width, viewportBounds.height); } } } }}); }
public SwingDisposeObservable(final Component component) { Assert.paramNotNull(component, "component"); this.wasDisplayable = component.isDisplayable(); component.addHierarchyListener(new HierarchyListener() { @Override public void hierarchyChanged(final HierarchyEvent e) { if ((e.getChangeFlags() & HierarchyEvent.DISPLAYABILITY_CHANGED) != 0) { if (wasDisplayable && !component.isDisplayable()) { fireAfterDispose(); } else if (!wasDisplayable && component.isDisplayable()) { wasDisplayable = true; } } } }); }
/** * Update the component bounds and post the appropriate events */ void setBounds(int x, int y, int w, int h, int bMask, boolean updateBehavior) { int oldX = this.x; int oldY = this.y; int oldW = this.w; int oldH = this.h; setBoundsFields(x, y, w, h, bMask); // Moved if ((oldX != this.x) || (oldY != this.y)) { invalidateRealParent(); postEvent(new ComponentEvent(this, ComponentEvent.COMPONENT_MOVED)); spreadHierarchyBoundsEvents(this, HierarchyEvent.ANCESTOR_MOVED); } // Resized if ((oldW != this.w) || (oldH != this.h)) { invalidate(); postEvent(new ComponentEvent(this, ComponentEvent.COMPONENT_RESIZED)); spreadHierarchyBoundsEvents(this, HierarchyEvent.ANCESTOR_RESIZED); } if (updateBehavior) { behaviour.setBounds(this.x, this.y, this.w, this.h, bMask); } notifyInputMethod(new Rectangle(x, y, w, h)); }