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


Java WindowPeer.updateIconImages方法代码示例

本文整理汇总了Java中java.awt.peer.WindowPeer.updateIconImages方法的典型用法代码示例。如果您正苦于以下问题:Java WindowPeer.updateIconImages方法的具体用法?Java WindowPeer.updateIconImages怎么用?Java WindowPeer.updateIconImages使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.awt.peer.WindowPeer的用法示例。


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

示例1: setIconImages

import java.awt.peer.WindowPeer; //导入方法依赖的package包/类
/**
 * Sets the sequence of images to be displayed as the icon
 * for this window. Subsequent calls to {@code getIconImages} will
 * always return a copy of the {@code icons} list.
 * <p>
 * Depending on the platform capabilities one or several images
 * of different dimensions will be used as the window's icon.
 * <p>
 * The {@code icons} list is scanned for the images of most
 * appropriate dimensions from the beginning. If the list contains
 * several images of the same size, the first will be used.
 * <p>
 * Ownerless windows with no icon specified use platfrom-default icon.
 * The icon of an owned window may be inherited from the owner
 * unless explicitly overridden.
 * Setting the icon to {@code null} or empty list restores
 * the default behavior.
 * <p>
 * Note : Native windowing systems may use different images of differing
 * dimensions to represent a window, depending on the context (e.g.
 * window decoration, window list, taskbar, etc.). They could also use
 * just a single image for all contexts or no image at all.
 *
 * @param     icons the list of icon images to be displayed.
 * @see       #getIconImages()
 * @see       #setIconImage(Image)
 * @since     1.6
 */
public synchronized void setIconImages(java.util.List<? extends Image> icons) {
    this.icons = (icons == null) ? new ArrayList<Image>() :
        new ArrayList<Image>(icons);
    WindowPeer peer = (WindowPeer)this.peer;
    if (peer != null) {
        peer.updateIconImages();
    }
    // Always send a property change event
    firePropertyChange("iconImage", null, null);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:39,代码来源:Window.java

示例2: setIconImages

import java.awt.peer.WindowPeer; //导入方法依赖的package包/类
/**
 * Sets the sequence of images to be displayed as the icon
 * for this window. Subsequent calls to {@code getIconImages} will
 * always return a copy of the {@code icons} list.
 * <p>
 * Depending on the platform capabilities one or several images
 * of different dimensions will be used as the window's icon.
 * <p>
 * The {@code icons} list can contain {@code MultiResolutionImage} images also.
 * Suitable image depending on screen resolution is extracted from
 * base {@code MultiResolutionImage} image and added to the icons list
 * while base resolution image is removed from list.
 * The {@code icons} list is scanned for the images of most
 * appropriate dimensions from the beginning. If the list contains
 * several images of the same size, the first will be used.
 * <p>
 * Ownerless windows with no icon specified use platform-default icon.
 * The icon of an owned window may be inherited from the owner
 * unless explicitly overridden.
 * Setting the icon to {@code null} or empty list restores
 * the default behavior.
 * <p>
 * Note : Native windowing systems may use different images of differing
 * dimensions to represent a window, depending on the context (e.g.
 * window decoration, window list, taskbar, etc.). They could also use
 * just a single image for all contexts or no image at all.
 *
 * @param     icons the list of icon images to be displayed.
 * @see       #getIconImages()
 * @see       #setIconImage(Image)
 * @since     1.6
 */
public synchronized void setIconImages(java.util.List<? extends Image> icons) {
    this.icons = (icons == null) ? new ArrayList<Image>() :
        new ArrayList<Image>(icons);
    WindowPeer peer = (WindowPeer)this.peer;
    if (peer != null) {
        peer.updateIconImages();
    }
    // Always send a property change event
    firePropertyChange("iconImage", null, null);
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:43,代码来源:Window.java

示例3: setIconImages

import java.awt.peer.WindowPeer; //导入方法依赖的package包/类
/**
 * Sets the sequence of images to be displayed as the icon
 * for this window. Subsequent calls to {@code getIconImages} will
 * always return a copy of the {@code icons} list.
 * <p>
 * Depending on the platform capabilities one or several images
 * of different dimensions will be used as the window's icon.
 * <p>
 * The {@code icons} list is scanned for the images of most
 * appropriate dimensions from the beginning. If the list contains
 * several images of the same size, the first will be used.
 * <p>
 * Ownerless windows with no icon specified use platform-default icon.
 * The icon of an owned window may be inherited from the owner
 * unless explicitly overridden.
 * Setting the icon to {@code null} or empty list restores
 * the default behavior.
 * <p>
 * Note : Native windowing systems may use different images of differing
 * dimensions to represent a window, depending on the context (e.g.
 * window decoration, window list, taskbar, etc.). They could also use
 * just a single image for all contexts or no image at all.
 *
 * @param     icons the list of icon images to be displayed.
 * @see       #getIconImages()
 * @see       #setIconImage(Image)
 * @since     1.6
 */
public synchronized void setIconImages(java.util.List<? extends Image> icons) {
    this.icons = (icons == null) ? new ArrayList<Image>() :
        new ArrayList<Image>(icons);
    WindowPeer peer = (WindowPeer)this.peer;
    if (peer != null) {
        peer.updateIconImages();
    }
    // Always send a property change event
    firePropertyChange("iconImage", null, null);
}
 
开发者ID:campolake,项目名称:openjdk9,代码行数:39,代码来源:Window.java

示例4: setIconImages

import java.awt.peer.WindowPeer; //导入方法依赖的package包/类
/**
 * Sets the sequence of images to be displayed as the icon 
 * for this window. Subsequent calls to {@code getIconImages} will
 * always return a copy of the {@code icons} list.
 * <p>
 * Depending on the platform capabilities one or several images 
 * of different dimensions will be used as the window's icon.
 * <p>
 * The {@code icons} list is scanned for the images of most 
 * appropriate dimensions from the beginning. If the list contains
 * several images of the same size, the first will be used.
 * <p>
 * Ownerless windows with no icon specified use platfrom-default icon.
 * The icon of an owned window may be inherited from the owner
 * unless explicitly overridden.
 * Setting the icon to {@code null} or empty list restores
 * the default behavior.
 * <p>
 * Note : Native windowing systems may use different images of differing 
 * dimensions to represent a window, depending on the context (e.g. 
 * window decoration, window list, taskbar, etc.). They could also use 
 * just a single image for all contexts or no image at all.
 * 
 * @param     icons the list of icon images to be displayed.
 * @see       #getIconImages()
 * @see       #setIconImage(Image)
 * @since     1.6
 */
public synchronized void setIconImages(java.util.List<? extends Image> icons) {
    this.icons = (icons == null) ? new ArrayList<Image>() : 
        new ArrayList<Image>(icons);
    WindowPeer peer = (WindowPeer)this.peer;
    if (peer != null) {
        peer.updateIconImages();
    }
    // Always send a property change event
    firePropertyChange("iconImage", null, null);
}
 
开发者ID:jgaltidor,项目名称:VarJ,代码行数:39,代码来源:Window.java


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