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


Java SunToolkit.setSystemGenerated方法代码示例

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


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

示例1: newMouseEvent

import sun.awt.SunToolkit; //导入方法依赖的package包/类
private static MouseEvent newMouseEvent(
    Component source, Point point, MouseEvent template )
{
    MouseEvent e = template;
    MouseEvent nme = new MouseEvent(
        source,
        e.getID(), e.getWhen(),
        e.getModifiersEx() | e.getModifiers(),
        point.x, point.y,
        e.getXOnScreen(), e.getYOnScreen(),
        e.getClickCount(), e.isPopupTrigger(), e.getButton() );
    // Because these MouseEvents are dispatched directly to
    // their target, we need to mark them as being
    // system-generated here
    SunToolkit.setSystemGenerated(nme);
    return nme;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:18,代码来源:XTextAreaPeer.java

示例2: newMouseEvent

import sun.awt.SunToolkit; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
private static MouseEvent newMouseEvent(
    Component source, Point point, MouseEvent template )
{
    MouseEvent e = template;
    MouseEvent nme = new MouseEvent(
        source,
        e.getID(), e.getWhen(),
        e.getModifiersEx() | e.getModifiers(),
        point.x, point.y,
        e.getXOnScreen(), e.getYOnScreen(),
        e.getClickCount(), e.isPopupTrigger(), e.getButton() );
    // Because these MouseEvents are dispatched directly to
    // their target, we need to mark them as being
    // system-generated here
    SunToolkit.setSystemGenerated(nme);
    return nme;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:19,代码来源:XTextAreaPeer.java

示例3: SequencedEvent

import sun.awt.SunToolkit; //导入方法依赖的package包/类
/**
 * Constructs a new SequencedEvent which will dispatch the specified
 * nested event.
 *
 * @param nested the AWTEvent which this SequencedEvent's dispatch()
 *        method will dispatch
 */
public SequencedEvent(AWTEvent nested) {
    super(nested.getSource(), ID);
    this.nested = nested;
    // All AWTEvents that are wrapped in SequencedEvents are (at
    // least currently) implicitly generated by the system
    SunToolkit.setSystemGenerated(nested);
    synchronized (SequencedEvent.class) {
        list.add(this);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:18,代码来源:SequencedEvent.java

示例4: handleWindowFocusIn_Dispatch

import sun.awt.SunToolkit; //导入方法依赖的package包/类
public void handleWindowFocusIn_Dispatch() {
    if (EventQueue.isDispatchThread()) {
        XKeyboardFocusManagerPeer.getInstance().setCurrentFocusedWindow((Window) target);
        WindowEvent we = new WindowEvent((Window)target, WindowEvent.WINDOW_GAINED_FOCUS);
        SunToolkit.setSystemGenerated(we);
        target.dispatchEvent(we);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:XWindowPeer.java


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