Examples of updateUI()


Examples of com.aelitis.azureus.ui.common.updater.UIUpdatable.updateUI()

      }
      try {
        if (DEBUG_TIMER) {
          start = SystemTime.getCurrentTime();
        }
        updateable.updateUI();
        if (DEBUG_TIMER) {
          long diff = SystemTime.getCurrentTime() - start;
          if (diff > 0) {
            mapTimeMap.put(updateable, new Long(diff));
          }
View Full Code Here

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

  }

  public void updateUI() {
    MdiEntry currentEntry = getCurrentEntry();
    if (currentEntry != null) {
      currentEntry.updateUI();
    }
  }
 
  public MdiEntry createEntryFromSkinRef(String parentID, String id,
      String configID, String title, ViewTitleInfo titleInfo, Object params,
View Full Code Here

Examples of com.intellij.coldFusion.UI.editorActions.CfmlParameterInfoHandler.updateUI()

    parameterInfoHandler.showParameterInfo(elt, createContext);
    Object[] items = createContext.getItemsToShow();
    assertTrue(items != null);
    assertTrue(items.length > 0);
    MockParameterInfoUIContext context = new MockParameterInfoUIContext<PsiElement>(elt);
    parameterInfoHandler.updateUI((CfmlFunctionDescription)items[0], context);
    assertEquals(s, parameterInfoHandler.getText());

    // index check
    MockUpdateParameterInfoContext updateContext = new MockUpdateParameterInfoContext(myFixture.getEditor(), myFixture.getFile());
    final PsiElement element = parameterInfoHandler.findElementForUpdatingParameterInfo(updateContext);
View Full Code Here

Examples of com.jidesoft.popup.JidePopup.updateUI()

            String prop = evt.getPropertyName();
            JidePopup f = (JidePopup) evt.getSource();
            Object newValue = evt.getNewValue();
            Object oldValue = evt.getOldValue();
            if (JidePopup.MOVABLE_PROPERTY.equals(prop)) {
                f.updateUI();
            }
            if (JidePopup.PROPERTY_GRIPPER_LOCATION.equals(prop)) {
                f.updateUI();
            }
        }
View Full Code Here

Examples of com.jidesoft.popup.JidePopup.updateUI()

            Object oldValue = evt.getOldValue();
            if (JidePopup.MOVABLE_PROPERTY.equals(prop)) {
                f.updateUI();
            }
            if (JidePopup.PROPERTY_GRIPPER_LOCATION.equals(prop)) {
                f.updateUI();
            }
        }
    }

    public class PopupLayout implements LayoutManager {
View Full Code Here

Examples of com.jidesoft.swing.JideTabbedPane.updateUI()

                        if (i < tabIndex) {
                            pane.setSelectedIndex(tabIndex - 1);
                        }

                        if (pane.getTabCount() == 0) {
                            pane.updateUI();
                        }
                        pane.doLayout();
                        if (pane.getSelectedIndex() >= 0) {
                            ((BasicJideTabbedPaneUI) pane.getUI())._tabScroller.tabPanel.scrollIndexToVisible(pane.getSelectedIndex());
                        }
View Full Code Here

Examples of com.jidesoft.swing.JideTabbedPane.updateUI()

                if ("middleMouseButtonClicked".equals(e.getActionCommand())) {
                    index = e.getID();
                    if (index >= 0)
                        pane.removeTabAt(index);
                    if (pane.getTabCount() == 0) {
                        pane.updateUI();
                    }
                    pane.doLayout();
                    if (pane.getSelectedIndex() >= 0) {
                        ((BasicJideTabbedPaneUI) pane.getUI())._tabScroller.tabPanel.scrollIndexToVisible(pane.getSelectedIndex());
                    }
View Full Code Here

Examples of com.jidesoft.swing.JideTabbedPane.updateUI()

                }
                else if (closeSelected) {
                    if (pane.getSelectedIndex() >= 0)
                        pane.removeTabAt(pane.getSelectedIndex());
                    if (pane.getTabCount() == 0) {
                        pane.updateUI();
                    }
                    pane.doLayout();
                    if (pane.getSelectedIndex() >= 0) {
                        ((BasicJideTabbedPaneUI) pane.getUI())._tabScroller.tabPanel.scrollIndexToVisible(pane.getSelectedIndex());
                    }
View Full Code Here

Examples of com.mxgraph.util.mxLightweightLabel.updateUI()

      // Renders the scaled text
      textRenderer.setText(mxUtils.createHtmlDocument(style, text));
      textRenderer.setFont(mxUtils.getFont(style, canvas.getScale()));
      g.scale(scale, scale);
      textRenderer.updateUI();
      rendererPane.paintComponent(g, textRenderer, rendererPane,
          (int) (x / scale) + mxConstants.LABEL_INSET,
          (int) (y / scale) + mxConstants.LABEL_INSET,
          (int) (w / scale), (int) (h / scale), true);
    }
View Full Code Here

Examples of com.nexirius.framework.dataviewer.DataViewer.updateUI()

            }

            // move and resize the JComponent
            defaultLayout(comp, parent_viewer.getFactory());

            viewer.updateUI();
        } catch (Exception ex) {
            ex.printStackTrace();
            // ignore
        }
    }
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.