org.netbeans.swing.outline.Outline.getInputMap()方法的使用及代码示例

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

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

Outline.getInputMap介绍

暂无

代码示例

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-dlight-visualizers

outline.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(returnKey, "return"); // NOI18N
outline.getActionMap().put("return", new AbstractAction() { // NOI18N

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-remotefs-versioning-api

@Messages({
  "CTL_FileTree.treeColumn.Name=File"
})
public FileTreeView () {
  em = new ExplorerManager();
  view = new OutlineView(Bundle.CTL_FileTree_treeColumn_Name());
  view.getOutline().setShowHorizontalLines(true);
  view.getOutline().setShowVerticalLines(false);
  view.getOutline().setRootVisible(false);
  view.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
  view.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
  view.setPopupAllowed(false);
  view.getOutline().addMouseListener(this);
  view.getOutline().getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT ).put(
      KeyStroke.getKeyStroke(KeyEvent.VK_F10, KeyEvent.SHIFT_DOWN_MASK ), "org.openide.actions.PopupAction"); //NOI18N
  view.getOutline().getActionMap().put("org.openide.actions.PopupAction", new AbstractAction() { //NOI18N
    @Override
    public void actionPerformed(ActionEvent e) {
      showPopup(org.netbeans.modules.versioning.util.Utils.getPositionForPopup(view.getOutline()));
    }
  });
  viewComponent = new ViewContainer(em);
  viewComponent.add(view, BorderLayout.CENTER);
  viewComponent.addAncestorListener(this);
  em.addPropertyChangeListener(this);
}

相关文章