javax.swing.text.JTextComponent.setKeymap()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(2.5k)|赞(0)|评价(0)|浏览(121)

本文整理了Java中javax.swing.text.JTextComponent.setKeymap()方法的一些代码示例,展示了JTextComponent.setKeymap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextComponent.setKeymap()方法的具体详情如下:
包路径:javax.swing.text.JTextComponent
类名称:JTextComponent
方法名:setKeymap

JTextComponent.setKeymap介绍

暂无

代码示例

代码示例来源:origin: org.xworker/xworker_core

public static void createKeymap(ActionContext actionContext){
  Thing self = (Thing) actionContext.get("self");
  JTextComponent parent = (JTextComponent) actionContext.get("parent");
  
  for(Thing child : self.getChilds()){
    Keymap l = (Keymap) child.doAction("create", actionContext);
    if(l != null){
      parent.setKeymap(l);
      break;
    }
  }
}
public static void createDocument(ActionContext actionContext){

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/org-netbeans-modules-editor-lib

public void run() {
    JTextComponent c = component;
    if (c != null) {
      BaseKit kit = Utilities.getKit(c);
      if (kit != null) {
        c.setKeymap(kit.getKeymap());                                    
        BaseTextUI ui = (BaseTextUI)c.getUI();
        if (ui != null) {
          ui.updateHeight();
          c.repaint();
        }
      }
    }
  }
}

代码示例来源:origin: net.java.abeille/abeille

/** Deinstalls the UI for a component */
public void uninstallUI(JComponent c) {
  component.removePropertyChangeListener(this);
  component.getDocument().removeDocumentListener(this);
  rootView.setView(null); // sets inner view of root view to null
  component.removeAll();
  component.setKeymap(null);
  component.setCaret(null);
  getEditorUI().uninstallUI(component);
  Registry.removeComponent(component);
  // Clear the editorUI so it will be recreated according to the kit
  // of the component for which the installUI() is called
  editorUI = null;
  component = null;
}

代码示例来源:origin: net.java.abeille/abeille

component.setKeymap(Utilities.getKit(component).getKeymap());

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/org-netbeans-modules-editor-lib

component.setKeymap(Utilities.getKit(component).getKeymap());                    
BaseTextUI ui = (BaseTextUI)component.getUI();
ui.updateHeight();

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/org-netbeans-modules-editor-lib

/** Deinstalls the UI for a component */
public void uninstallUI(JComponent c) {
  super.uninstallUI(c);
  Settings.removeSettingsChangeListener(this);        
  //c.removePropertyChangeListener(this);        
  
  if (c instanceof JTextComponent){        
    JTextComponent comp = (JTextComponent)c;
    BaseDocument doc = Utilities.getDocument(comp);
    if (doc != null) {
      doc.removeDocumentListener(this);
    }
    comp.setKeymap(null);
    comp.setCaret(null);
    getEditorUI().uninstallUI(comp);
    Registry.removeComponent(comp);
  }
  
  // Clear the editorUI so it will be recreated according to the kit
  // of the component for which the installUI() is called
  editorUI = null;
}

相关文章

JTextComponent类方法