当前位置: 首页>>代码示例>>Java>>正文


Java ComponentUI类代码示例

本文整理汇总了Java中javax.swing.plaf.ComponentUI的典型用法代码示例。如果您正苦于以下问题:Java ComponentUI类的具体用法?Java ComponentUI怎么用?Java ComponentUI使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ComponentUI类属于javax.swing.plaf包,在下文中一共展示了ComponentUI类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getIcon

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
public static Icon getIcon(JComponent c, ComponentUI ui, String key,
        Icon defaultValue) {
    Object iValue = get(c, ui, key);
    if (iValue == null || !(iValue instanceof Icon)) {
        return defaultValue;
    }
    return (Icon)iValue;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:9,代码来源:DefaultLookup.java

示例2: createUI

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Returns a multiplexing UI instance if any of the auxiliary
 * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
 * UI object obtained from the default <code>LookAndFeel</code>.
 */
public static ComponentUI createUI(JComponent a) {
    ComponentUI mui = new MultiTableHeaderUI();
    return MultiLookAndFeel.createUIs(mui,
                                      ((MultiTableHeaderUI) mui).uis,
                                      a);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:12,代码来源:MultiTableHeaderUI.java

示例3: getAccessibleChildrenCount

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Invokes the <code>getAccessibleChildrenCount</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public int getAccessibleChildrenCount(JComponent a) {
    int returnValue =
        ((ComponentUI) (uis.elementAt(0))).getAccessibleChildrenCount(a);
    for (int i = 1; i < uis.size(); i++) {
        ((ComponentUI) (uis.elementAt(i))).getAccessibleChildrenCount(a);
    }
    return returnValue;
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:15,代码来源:MultiColorChooserUI.java

示例4: contains

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Invokes the <code>contains</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public boolean contains(JComponent a, int b, int c) {
    boolean returnValue =
        ((ComponentUI) (uis.elementAt(0))).contains(a,b,c);
    for (int i = 1; i < uis.size(); i++) {
        ((ComponentUI) (uis.elementAt(i))).contains(a,b,c);
    }
    return returnValue;
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:15,代码来源:MultiLabelUI.java

示例5: getAccessibleChild

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Invokes the <code>getAccessibleChild</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public Accessible getAccessibleChild(JComponent a, int b) {
    Accessible returnValue =
        ((ComponentUI) (uis.elementAt(0))).getAccessibleChild(a,b);
    for (int i = 1; i < uis.size(); i++) {
        ((ComponentUI) (uis.elementAt(i))).getAccessibleChild(a,b);
    }
    return returnValue;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:MultiButtonUI.java

示例6: getPreferredSize

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Invokes the <code>getPreferredSize</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public Dimension getPreferredSize(JComponent a) {
    Dimension returnValue =
        ((ComponentUI) (uis.elementAt(0))).getPreferredSize(a);
    for (int i = 1; i < uis.size(); i++) {
        ((ComponentUI) (uis.elementAt(i))).getPreferredSize(a);
    }
    return returnValue;
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:15,代码来源:MultiSplitPaneUI.java

示例7: getMaximumSize

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Invokes the <code>getMaximumSize</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public Dimension getMaximumSize(JComponent a) {
    Dimension returnValue =
        ((ComponentUI) (uis.elementAt(0))).getMaximumSize(a);
    for (int i = 1; i < uis.size(); i++) {
        ((ComponentUI) (uis.elementAt(i))).getMaximumSize(a);
    }
    return returnValue;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:MultiTextUI.java

示例8: createUI

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Returns an instance of {@code BasicButtonUI}.
 *
 * @param c a component
 * @return an instance of {@code BasicButtonUI}
 */
public static ComponentUI createUI(JComponent c) {
    AppContext appContext = AppContext.getAppContext();
    BasicButtonUI buttonUI =
            (BasicButtonUI) appContext.get(BASIC_BUTTON_UI_KEY);
    if (buttonUI == null) {
        buttonUI = new BasicButtonUI();
        appContext.put(BASIC_BUTTON_UI_KEY, buttonUI);
    }
    return buttonUI;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:17,代码来源:BasicButtonUI.java

示例9: getMinimumSize

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Invokes the <code>getMinimumSize</code> method on each UI handled by this object.
 *
 * @return the value obtained from the first UI, which is
 * the UI obtained from the default <code>LookAndFeel</code>
 */
public Dimension getMinimumSize(JComponent a) {
    Dimension returnValue =
        ((ComponentUI) (uis.elementAt(0))).getMinimumSize(a);
    for (int i = 1; i < uis.size(); i++) {
        ((ComponentUI) (uis.elementAt(i))).getMinimumSize(a);
    }
    return returnValue;
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:15,代码来源:MultiTabbedPaneUI.java

示例10: createUI

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
/**
 * Returns a multiplexing UI instance if any of the auxiliary
 * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
 * UI object obtained from the default <code>LookAndFeel</code>.
 */
public static ComponentUI createUI(JComponent a) {
    ComponentUI mui = new MultiViewportUI();
    return MultiLookAndFeel.createUIs(mui,
                                      ((MultiViewportUI) mui).uis,
                                      a);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:12,代码来源:MultiViewportUI.java

示例11: getBoolean

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
public static boolean getBoolean(JComponent c, ComponentUI ui, String key,
                                 boolean defaultValue) {
    Object iValue = get(c, ui, key);

    if (iValue == null || !(iValue instanceof Boolean)) {
        return defaultValue;
    }
    return ((Boolean)iValue).booleanValue();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:DefaultLookup.java

示例12: addNotify

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
public void addNotify() {
    super.addNotify();

    fMenuItem.addComponentListener(this);
    fListener = new ScreenMenuPropertyListener(this);
    fMenuItem.addPropertyChangeListener(fListener);
    addActionListener(this);

    setEnabled(fMenuItem.isEnabled());

    // can't setState or setAccelerator or setIcon till we have a peer
    setAccelerator(fMenuItem.getAccelerator());

    final String label = fMenuItem.getText();
    if (label != null) {
        setLabel(label);
    }

    final Icon icon = fMenuItem.getIcon();
    if (icon != null) {
        this.setIcon(icon);
    }

    final String tooltipText = fMenuItem.getToolTipText();
    if (tooltipText != null) {
        this.setToolTipText(tooltipText);
    }

    if (fMenuItem instanceof JRadioButtonMenuItem) {
        final ComponentUI ui = fMenuItem.getUI();

        if (ui instanceof ScreenMenuItemUI) {
            ((ScreenMenuItemUI)ui).updateListenersForScreenMenuItem();
        }
    }
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:37,代码来源:ScreenMenuItem.java

示例13: getInsets

import javax.swing.plaf.ComponentUI; //导入依赖的package包/类
public static Insets getInsets(JComponent c, ComponentUI ui, String key,
                               Insets defaultValue) {
    Object iValue = get(c, ui, key);

    if (iValue == null || !(iValue instanceof Insets)) {
        return defaultValue;
    }
    return (Insets)iValue;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:10,代码来源:DefaultLookup.java


注:本文中的javax.swing.plaf.ComponentUI类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。