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

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

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

Outline.getActionMap介绍

暂无

代码示例

代码示例来源:origin: in.jlibs/org-netbeans-swing-outline

private void init() {
  initialized = true;
  setDefaultRenderer(Object.class, new DefaultOutlineCellRenderer());
  ActionMap am = getActionMap();
  //make rows expandable with left/rigt arrow keys
  Action a = am.get("selectNextColumn"); //NOI18N
  am.put("selectNextColumn", new ExpandAction(true, a)); //NOI18N
  a = am.get("selectPreviousColumn"); //NOI18N
  am.put("selectPreviousColumn", new ExpandAction(false, a)); //NOI18N
}

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

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);
}

相关文章