當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。