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


Java DefaultEditorKit.beepAction方法代码示例

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


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

示例1: AWTextField

import javax.swing.text.DefaultEditorKit; //导入方法依赖的package包/类
public AWTextField (String text) {
      super();
      this.setHorizontalAlignment(SwingConstants.CENTER);
      this.setText(text);
      
      this.setFont(G.font);
   // Depending on font configuration, borders of letters could be slightly truncated. Not solved yet.
      this.setBackground(Color.WHITE); // Needed for Unix... should be enough to avoid that grey textfields,
      // but it doesn't work...
      this.setForeground(G.color);
      this.setHighlighter(null);

      this.addKeyListener(G.keyListener);
      this.addFocusListener(G.focusListener);
      this.addMouseListener(G.mouseListener);
      
      this.setFocusTraversalKeysEnabled(false);
      this.setRequestFocusEnabled(true);
      this.setBorder(G.myTextFieldBorder);
      // This is to remove cut, copy and paste default functionality and override it with our implementation.
      JTextComponent.KeyBinding[] newBindings = {
    new JTextComponent.KeyBinding(
      KeyStroke.getKeyStroke(KeyEvent.VK_C, InputEvent.CTRL_MASK),
      DefaultEditorKit.beepAction),
    new JTextComponent.KeyBinding(
      KeyStroke.getKeyStroke(KeyEvent.VK_V, InputEvent.CTRL_MASK),
      DefaultEditorKit.beepAction),
    new JTextComponent.KeyBinding(
        KeyStroke.getKeyStroke(KeyEvent.VK_X, InputEvent.CTRL_MASK),
        DefaultEditorKit.beepAction)
  };              
Keymap k = this.getKeymap();
JTextComponent.loadKeymap(k, newBindings, this.getActions());
  }
 
开发者ID:ProgettoRadis,项目名称:ArasuiteIta,代码行数:35,代码来源:AWTextField.java

示例2: MyTextField

import javax.swing.text.DefaultEditorKit; //导入方法依赖的package包/类
public MyTextField (String text) {
        super();
        this.setHorizontalAlignment(SwingConstants.CENTER);
        this.setText(text);
        this.setFont(G.font);
        this.setForeground(G.color);
        this.setHighlighter(null);
        // Depending on font configuration, borders of letters could be slightly truncated. Not solved yet.
        
        this.addKeyListener(G.keyListener);
        this.addFocusListener(G.focusListener);
        this.addMouseListener(G.mouseListener);
//        this.addMouseMotionListener(G.mouseMotionListener); // Commented for simplicity, may be further improved.
        
        this.setFocusTraversalKeysEnabled(false);
        this.setRequestFocusEnabled(true);
        this.setBorder(G.myTextFieldBorder);
        // This is to remove cut, copy and paste default functionality and override it with our implementation.
        JTextComponent.KeyBinding[] newBindings = {
		    new JTextComponent.KeyBinding(
		      KeyStroke.getKeyStroke(KeyEvent.VK_C, InputEvent.CTRL_MASK),
		      DefaultEditorKit.beepAction),
		    new JTextComponent.KeyBinding(
		      KeyStroke.getKeyStroke(KeyEvent.VK_V, InputEvent.CTRL_MASK),
		      DefaultEditorKit.beepAction),
		    new JTextComponent.KeyBinding(
		        KeyStroke.getKeyStroke(KeyEvent.VK_X, InputEvent.CTRL_MASK),
		        DefaultEditorKit.beepAction)
		  };              
		Keymap k = this.getKeymap();
		JTextComponent.loadKeymap(k, newBindings, this.getActions());
    }
 
开发者ID:ProgettoRadis,项目名称:ArasuiteIta,代码行数:33,代码来源:MyTextField.java

示例3: testMakeKeyBindings

import javax.swing.text.DefaultEditorKit; //导入方法依赖的package包/类
public void testMakeKeyBindings() {
    Object[] binds = { "UP", DefaultEditorKit.beepAction, "DOWN",
            DefaultEditorKit.beginWordAction, "TAB", DefaultEditorKit.beginWordAction };
    JTextComponent.KeyBinding[] b = LookAndFeel.makeKeyBindings(binds);
    assertEquals(3, b.length);
    assertEquals(DefaultEditorKit.beepAction, b[0].actionName);
    assertEquals(DefaultEditorKit.beginWordAction, b[1].actionName);
}
 
开发者ID:shannah,项目名称:cn1,代码行数:9,代码来源:LookAndFeelTest.java

示例4: testMakeKeyBindingsFromErrorArray

import javax.swing.text.DefaultEditorKit; //导入方法依赖的package包/类
public void testMakeKeyBindingsFromErrorArray() {
    Object[] binds = { "UP", DefaultEditorKit.beepAction, "DOWN" };
    try {
        LookAndFeel.makeKeyBindings(binds);
        fail("shall throw ArrayIndexOutOfBoundsException");
    } catch (ArrayIndexOutOfBoundsException e) {
    }
}
 
开发者ID:shannah,项目名称:cn1,代码行数:9,代码来源:LookAndFeelTest.java

示例5: testLoadKeyBindings

import javax.swing.text.DefaultEditorKit; //导入方法依赖的package包/类
public void testLoadKeyBindings() {
    InputMap map = new InputMap();
    Object[] binds = { "SPACE", DefaultEditorKit.beepAction,
            KeyStroke.getKeyStroke("DOWN"), DefaultEditorKit.beginWordAction };
    try {
        LookAndFeel.loadKeyBindings(null, binds);
        fail("NullPointerException shall be thrown");
    } catch (NullPointerException e) {
    }
    LookAndFeel.loadKeyBindings(map, null);
    assertEquals(0, map.size());
    LookAndFeel.loadKeyBindings(map, binds);
    assertEquals(2, map.size());
}
 
开发者ID:shannah,项目名称:cn1,代码行数:15,代码来源:LookAndFeelTest.java


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