// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.gui.preferences; import static org.openstreetmap.josm.tools.I18n.tr; import java.awt.Component; import java.awt.Container; import java.awt.Dimension; import java.awt.GridBagLayout; import java.awt.GridLayout; import java.awt.LayoutManager; import java.awt.Rectangle; import java.awt.datatransfer.DataFlavor; import java.awt.datatransfer.Transferable; import java.awt.datatransfer.UnsupportedFlavorException; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.InputEvent; import java.awt.event.KeyEvent; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.DefaultListCellRenderer; import javax.swing.DefaultListModel; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JCheckBoxMenuItem; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JMenuItem; import javax.swing.JPanel; import javax.swing.JPopupMenu; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.JToolBar; import javax.swing.JTree; import javax.swing.ListCellRenderer; import javax.swing.MenuElement; import javax.swing.TransferHandler; import javax.swing.event.ListSelectionEvent; import javax.swing.event.ListSelectionListener; import javax.swing.event.PopupMenuEvent; import javax.swing.event.PopupMenuListener; import javax.swing.event.TreeSelectionEvent; import javax.swing.event.TreeSelectionListener; import javax.swing.table.AbstractTableModel; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.DefaultTreeCellRenderer; import javax.swing.tree.DefaultTreeModel; import javax.swing.tree.TreePath; import org.openstreetmap.josm.Main; import org.openstreetmap.josm.actions.ActionParameter; import org.openstreetmap.josm.actions.AdaptableAction; import org.openstreetmap.josm.actions.JosmAction; import org.openstreetmap.josm.actions.ParameterizedAction; import org.openstreetmap.josm.actions.ParameterizedActionDecorator; import org.openstreetmap.josm.gui.tagging.TaggingPreset; import org.openstreetmap.josm.tools.GBC; import org.openstreetmap.josm.tools.ImageProvider; import org.openstreetmap.josm.tools.Shortcut; public class ToolbarPreferences implements PreferenceSettingFactory { private static final String EMPTY_TOOLBAR_MARKER = ""; public static class ActionDefinition { private final Action action; private String name = ""; private String icon = ""; private ImageIcon ico = null; private final Map parameters = new HashMap<>(); public ActionDefinition(Action action) { this.action = action; } public Map getParameters() { return parameters; } public Action getParametrizedAction() { if (getAction() instanceof ParameterizedAction) return new ParameterizedActionDecorator((ParameterizedAction) getAction(), parameters); else return getAction(); } public Action getAction() { return action; } public String getName() { return name; } public String getDisplayName() { return name.isEmpty() ? (String) action.getValue(Action.NAME) : name; } public String getDisplayTooltip() { if(!name.isEmpty()) return name; Object tt = action.getValue(TaggingPreset.OPTIONAL_TOOLTIP_TEXT); if (tt != null) return (String) tt; return (String) action.getValue(Action.SHORT_DESCRIPTION); } public Icon getDisplayIcon() { if(ico != null) return ico; Object o = action.getValue(Action.LARGE_ICON_KEY); if(o == null) o = action.getValue(Action.SMALL_ICON); return (Icon) o; } public void setName(String name) { this.name = name; } public String getIcon() { return icon; } public void setIcon(String icon) { this.icon = icon; ico = ImageProvider.getIfAvailable("", icon); } public boolean isSeparator() { return action == null; } public static ActionDefinition getSeparator() { return new ActionDefinition(null); } public boolean hasParameters() { if (!(getAction() instanceof ParameterizedAction)) return false; for (Object o: parameters.values()) { if (o!=null) return true; } return false; } } public static class ActionParser { private final Map actions; private final StringBuilder result = new StringBuilder(); private int index; private char[] s; public ActionParser(Map actions) { this.actions = actions; } private String readTillChar(char ch1, char ch2) { result.setLength(0); while (index < s.length && s[index] != ch1 && s[index] != ch2) { if (s[index] == '\\') { index++; if (index >= s.length) { break; } } result.append(s[index]); index++; } return result.toString(); } private void skip(char ch) { if (index < s.length && s[index] == ch) { index++; } } public ActionDefinition loadAction(String actionName) { index = 0; this.s = actionName.toCharArray(); String name = readTillChar('(', '{'); Action action = actions.get(name); if (action == null) return null; ActionDefinition result = new ActionDefinition(action); if (action instanceof ParameterizedAction) { skip('('); ParameterizedAction parametrizedAction = (ParameterizedAction)action; Map> actionParams = new HashMap<>(); for (ActionParameter param: parametrizedAction.getActionParameters()) { actionParams.put(param.getName(), param); } while (index < s.length && s[index] != ')') { String paramName = readTillChar('=', '='); skip('='); String paramValue = readTillChar(',',')'); if (paramName.length() > 0) { ActionParameter actionParam = actionParams.get(paramName); if (actionParam != null) { result.getParameters().put(paramName, actionParam.readFromString(paramValue)); } } skip(','); } skip(')'); } if (action instanceof AdaptableAction) { skip('{'); while (index < s.length && s[index] != '}') { String paramName = readTillChar('=', '='); skip('='); String paramValue = readTillChar(',','}'); if ("icon".equals(paramName) && paramValue.length() > 0) { result.setIcon(paramValue); } else if("name".equals(paramName) && paramValue.length() > 0) { result.setName(paramValue); } skip(','); } skip('}'); } return result; } private void escape(String s) { for (int i=0; i> params = ((ParameterizedAction)action.getAction()).getActionParameters(); for (int i=0; i param = (ActionParameter)params.get(i); escape(param.getName()); result.append('='); Object value = action.getParameters().get(param.getName()); if (value != null) { escape(param.writeToString(value)); } if (i < params.size() - 1) { result.append(','); } else { result.append(')'); } } } if (action.getAction() instanceof AdaptableAction) { boolean first = true; String tmp = action.getName(); if(tmp.length() != 0) { result.append(first ? "{" : ","); result.append("name="); escape(tmp); first = false; } tmp = action.getIcon(); if(tmp.length() != 0) { result.append(first ? "{" : ","); result.append("icon="); escape(tmp); first = false; } if(!first) { result.append('}'); } } return result.toString(); } } private static class ActionParametersTableModel extends AbstractTableModel { private ActionDefinition currentAction = ActionDefinition.getSeparator(); @Override public int getColumnCount() { return 2; } @Override public int getRowCount() { int adaptable = ((currentAction.getAction() instanceof AdaptableAction) ? 2 : 0); if (currentAction.isSeparator() || !(currentAction.getAction() instanceof ParameterizedAction)) return adaptable; ParameterizedAction pa = (ParameterizedAction)currentAction.getAction(); return pa.getActionParameters().size() + adaptable; } @SuppressWarnings("unchecked") private ActionParameter getParam(int index) { ParameterizedAction pa = (ParameterizedAction)currentAction.getAction(); return (ActionParameter) pa.getActionParameters().get(index); } @Override public Object getValueAt(int rowIndex, int columnIndex) { if(currentAction.getAction() instanceof AdaptableAction) { if (rowIndex < 2) { switch (columnIndex) { case 0: return rowIndex == 0 ? tr("Tooltip") : tr("Icon"); case 1: return rowIndex == 0 ? currentAction.getName() : currentAction.getIcon(); default: return null; } } else { rowIndex -= 2; } } ActionParameter param = getParam(rowIndex); switch (columnIndex) { case 0: return param.getName(); case 1: return param.writeToString(currentAction.getParameters().get(param.getName())); default: return null; } } @Override public boolean isCellEditable(int row, int column) { return column == 1; } @Override public void setValueAt(Object aValue, int rowIndex, int columnIndex) { if(currentAction.getAction() instanceof AdaptableAction) { if (rowIndex == 0) { currentAction.setName((String)aValue); return; } else if (rowIndex == 1) { currentAction.setIcon((String)aValue); return; } else { rowIndex -= 2; } } ActionParameter param = getParam(rowIndex); currentAction.getParameters().put(param.getName(), param.readFromString((String)aValue)); } public void setCurrentAction(ActionDefinition currentAction) { this.currentAction = currentAction; fireTableDataChanged(); } } private class ToolbarPopupMenu extends JPopupMenu { ActionDefinition act; private void setActionAndAdapt(ActionDefinition action) { this.act = action; doNotHide.setSelected(Main.pref.getBoolean("toolbar.always-visible", true)); remove.setVisible(act!=null); shortcutEdit.setVisible(act!=null); } JMenuItem remove = new JMenuItem(new AbstractAction(tr("Remove from toolbar")) { @Override public void actionPerformed(ActionEvent e) { Collection t = new LinkedList<>(getToolString()); ActionParser parser = new ActionParser(null); // get text definition of current action String res = parser.saveAction(act); // remove the button from toolbar preferences t.remove( res ); Main.pref.putCollection("toolbar", t); Main.toolbar.refreshToolbarControl(); } }); JMenuItem configure = new JMenuItem(new AbstractAction(tr("Configure toolbar")) { @Override public void actionPerformed(ActionEvent e) { final PreferenceDialog p =new PreferenceDialog(Main.parent); p.selectPreferencesTabByName("toolbar"); p.setVisible(true); } }); JMenuItem shortcutEdit = new JMenuItem(new AbstractAction(tr("Edit shortcut")) { @Override public void actionPerformed(ActionEvent e) { final PreferenceDialog p =new PreferenceDialog(Main.parent); p.getTabbedPane().getShortcutPreference().setDefaultFilter(act.getDisplayName()); p.selectPreferencesTabByName("shortcuts"); p.setVisible(true); // refresh toolbar to try using changed shortcuts without restart Main.toolbar.refreshToolbarControl(); } }); JCheckBoxMenuItem doNotHide = new JCheckBoxMenuItem(new AbstractAction(tr("Do not hide toolbar and menu")) { @Override public void actionPerformed(ActionEvent e) { boolean sel = ((JCheckBoxMenuItem) e.getSource()).getState(); Main.pref.put("toolbar.always-visible", sel); Main.pref.put("menu.always-visible", sel); } }); { addPopupMenuListener(new PopupMenuListener() { @Override public void popupMenuWillBecomeVisible(PopupMenuEvent e) { setActionAndAdapt(buttonActions.get( ((JPopupMenu)e.getSource()).getInvoker() )); } @Override public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {} @Override public void popupMenuCanceled(PopupMenuEvent e) {} }); add(remove); add(configure); add(shortcutEdit); add(doNotHide); } } private ToolbarPopupMenu popupMenu = new ToolbarPopupMenu(); /** * Key: Registered name (property "toolbar" of action). * Value: The action to execute. */ private final Map actions = new HashMap<>(); private final Map regactions = new HashMap<>(); private final DefaultMutableTreeNode rootActionsNode = new DefaultMutableTreeNode(tr("Actions")); public JToolBar control = new JToolBar(); private final Map buttonActions = new HashMap<>(30); @Override public PreferenceSetting createPreferenceSetting() { return new Settings(rootActionsNode); } public class Settings extends DefaultTabPreferenceSetting { private final class Move implements ActionListener { @Override public void actionPerformed(ActionEvent e) { if ("<".equals(e.getActionCommand()) && actionsTree.getSelectionCount() > 0) { int leadItem = selected.getSize(); if (selectedList.getSelectedIndex() != -1) { int[] indices = selectedList.getSelectedIndices(); leadItem = indices[indices.length - 1]; } for (TreePath selectedAction : actionsTree.getSelectionPaths()) { DefaultMutableTreeNode node = (DefaultMutableTreeNode) selectedAction.getLastPathComponent(); if (node.getUserObject() == null) { selected.add(leadItem++, ActionDefinition.getSeparator()); } else if (node.getUserObject() instanceof Action) { selected.add(leadItem++, new ActionDefinition((Action)node.getUserObject())); } } } else if (">".equals(e.getActionCommand()) && selectedList.getSelectedIndex() != -1) { while (selectedList.getSelectedIndex() != -1) { selected.remove(selectedList.getSelectedIndex()); } } else if ("up".equals(e.getActionCommand())) { int i = selectedList.getSelectedIndex(); ActionDefinition o = selected.get(i); if (i != 0) { selected.remove(i); selected.add(i-1, o); selectedList.setSelectedIndex(i-1); } } else if ("down".equals(e.getActionCommand())) { int i = selectedList.getSelectedIndex(); ActionDefinition o = selected.get(i); if (i != selected.size()-1) { selected.remove(i); selected.add(i+1, o); selectedList.setSelectedIndex(i+1); } } } } private class ActionTransferable implements Transferable { private final DataFlavor[] flavors = new DataFlavor[] { ACTION_FLAVOR }; private final List actions; public ActionTransferable(List actions) { this.actions = actions; } @Override public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException { return actions; } @Override public DataFlavor[] getTransferDataFlavors() { return flavors; } @Override public boolean isDataFlavorSupported(DataFlavor flavor) { return flavors[0] == flavor; } } private final Move moveAction = new Move(); private final DefaultListModel selected = new DefaultListModel<>(); private final JList selectedList = new JList<>(selected); private final DefaultTreeModel actionsTreeModel; private final JTree actionsTree; private final ActionParametersTableModel actionParametersModel = new ActionParametersTableModel(); private final JTable actionParametersTable = new JTable(actionParametersModel); private JPanel actionParametersPanel; private JButton upButton; private JButton downButton; private JButton removeButton; private JButton addButton; private String movingComponent; public Settings(DefaultMutableTreeNode rootActionsNode) { super(/* ICON(preferences/) */ "toolbar", tr("Toolbar customization"), tr("Customize the elements on the toolbar.")); actionsTreeModel = new DefaultTreeModel(rootActionsNode); actionsTree = new JTree(actionsTreeModel); } private JButton createButton(String name) { JButton b = new JButton(); if ("up".equals(name)) { b.setIcon(ImageProvider.get("dialogs", "up")); } else if ("down".equals(name)) { b.setIcon(ImageProvider.get("dialogs", "down")); } else { b.setText(name); } b.addActionListener(moveAction); b.setActionCommand(name); return b; } private void updateEnabledState() { int index = selectedList.getSelectedIndex(); upButton.setEnabled(index > 0); downButton.setEnabled(index != -1 && index < selectedList.getModel().getSize() - 1); removeButton.setEnabled(index != -1); addButton.setEnabled(actionsTree.getSelectionCount() > 0); } @Override public void addGui(PreferenceTabbedPane gui) { actionsTree.setCellRenderer(new DefaultTreeCellRenderer() { @Override public Component getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) { DefaultMutableTreeNode node = (DefaultMutableTreeNode) value; JLabel comp = (JLabel) super.getTreeCellRendererComponent( tree, value, sel, expanded, leaf, row, hasFocus); if (node.getUserObject() == null) { comp.setText(tr("Separator")); comp.setIcon(ImageProvider.get("preferences/separator")); } else if (node.getUserObject() instanceof Action) { Action action = (Action) node.getUserObject(); comp.setText((String) action.getValue(Action.NAME)); comp.setIcon((Icon) action.getValue(Action.SMALL_ICON)); } return comp; } }); ListCellRenderer renderer = new ListCellRenderer() { final DefaultListCellRenderer def = new DefaultListCellRenderer(); @Override public Component getListCellRendererComponent(JList list, ActionDefinition action, int index, boolean isSelected, boolean cellHasFocus) { String s; Icon i; if (!action.isSeparator()) { s = action.getDisplayName(); i = action.getDisplayIcon(); } else { i = ImageProvider.get("preferences/separator"); s = tr("Separator"); } JLabel l = (JLabel)def.getListCellRendererComponent(list, s, index, isSelected, cellHasFocus); l.setIcon(i); return l; } }; selectedList.setCellRenderer(renderer); selectedList.addListSelectionListener(new ListSelectionListener(){ @Override public void valueChanged(ListSelectionEvent e) { boolean sel = selectedList.getSelectedIndex() != -1; if (sel) { actionsTree.clearSelection(); ActionDefinition action = selected.get(selectedList.getSelectedIndex()); actionParametersModel.setCurrentAction(action); actionParametersPanel.setVisible(actionParametersModel.getRowCount() > 0); } updateEnabledState(); } }); selectedList.setDragEnabled(true); selectedList.setTransferHandler(new TransferHandler() { @Override @SuppressWarnings("unchecked") protected Transferable createTransferable(JComponent c) { List actions = new ArrayList<>(); for (ActionDefinition o: ((JList)c).getSelectedValuesList()) { actions.add(o); } return new ActionTransferable(actions); } @Override public int getSourceActions(JComponent c) { return TransferHandler.MOVE; } @Override public boolean canImport(JComponent comp, DataFlavor[] transferFlavors) { for (DataFlavor f : transferFlavors) { if (ACTION_FLAVOR.equals(f)) return true; } return false; } @Override public void exportAsDrag(JComponent comp, InputEvent e, int action) { super.exportAsDrag(comp, e, action); movingComponent = "list"; } @Override public boolean importData(JComponent comp, Transferable t) { try { int dropIndex = selectedList.locationToIndex(selectedList.getMousePosition(true)); @SuppressWarnings("unchecked") List draggedData = (List) t.getTransferData(ACTION_FLAVOR); Object leadItem = dropIndex >= 0 ? selected.elementAt(dropIndex) : null; int dataLength = draggedData.size(); if (leadItem != null) { for (Object o: draggedData) { if (leadItem.equals(o)) return false; } } int dragLeadIndex = -1; boolean localDrop = "list".equals(movingComponent); if (localDrop) { dragLeadIndex = selected.indexOf(draggedData.get(0)); for (Object o: draggedData) { selected.removeElement(o); } } int[] indices = new int[dataLength]; if (localDrop) { int adjustedLeadIndex = selected.indexOf(leadItem); int insertionAdjustment = dragLeadIndex <= adjustedLeadIndex ? 1 : 0; for (int i = 0; i < dataLength; i++) { selected.insertElementAt(draggedData.get(i), adjustedLeadIndex + insertionAdjustment + i); indices[i] = adjustedLeadIndex + insertionAdjustment + i; } } else { for (int i = 0; i < dataLength; i++) { selected.add(dropIndex, draggedData.get(i)); indices[i] = dropIndex + i; } } selectedList.clearSelection(); selectedList.setSelectedIndices(indices); movingComponent = ""; return true; } catch (Exception e) { Main.error(e); } return false; } @Override protected void exportDone(JComponent source, Transferable data, int action) { if ("list".equals(movingComponent)) { try { List draggedData = (List) data.getTransferData(ACTION_FLAVOR); boolean localDrop = selected.contains(draggedData.get(0)); if (localDrop) { int[] indices = selectedList.getSelectedIndices(); Arrays.sort(indices); for (int i = indices.length - 1; i >= 0; i--) { selected.remove(indices[i]); } } } catch (Exception e) { Main.error(e); } movingComponent = ""; } } }); actionsTree.setTransferHandler(new TransferHandler() { private static final long serialVersionUID = 1L; @Override public int getSourceActions( JComponent c ){ return TransferHandler.MOVE; } @Override protected void exportDone(JComponent source, Transferable data, int action) { } @Override protected Transferable createTransferable(JComponent c) { TreePath[] paths = actionsTree.getSelectionPaths(); List dragActions = new ArrayList<>(); for (TreePath path : paths) { DefaultMutableTreeNode node = (DefaultMutableTreeNode) path.getLastPathComponent(); Object obj = node.getUserObject(); if (obj == null) { dragActions.add(ActionDefinition.getSeparator()); } else if (obj instanceof Action) { dragActions.add(new ActionDefinition((Action) obj)); } } return new ActionTransferable(dragActions); } }); actionsTree.setDragEnabled(true); actionsTree.getSelectionModel().addTreeSelectionListener(new TreeSelectionListener() { @Override public void valueChanged(TreeSelectionEvent e) { updateEnabledState(); } }); final JPanel left = new JPanel(new GridBagLayout()); left.add(new JLabel(tr("Toolbar")), GBC.eol()); left.add(new JScrollPane(selectedList), GBC.std().fill(GBC.BOTH)); final JPanel right = new JPanel(new GridBagLayout()); right.add(new JLabel(tr("Available")), GBC.eol()); right.add(new JScrollPane(actionsTree), GBC.eol().fill(GBC.BOTH)); final JPanel buttons = new JPanel(new GridLayout(6,1)); buttons.add(upButton = createButton("up")); buttons.add(addButton = createButton("<")); buttons.add(removeButton = createButton(">")); buttons.add(downButton = createButton("down")); updateEnabledState(); final JPanel p = new JPanel(); p.setLayout(new LayoutManager(){ @Override public void addLayoutComponent(String name, Component comp) {} @Override public void removeLayoutComponent(Component comp) {} @Override public Dimension minimumLayoutSize(Container parent) { Dimension l = left.getMinimumSize(); Dimension r = right.getMinimumSize(); Dimension b = buttons.getMinimumSize(); return new Dimension(l.width+b.width+10+r.width,l.height+b.height+10+r.height); } @Override public Dimension preferredLayoutSize(Container parent) { Dimension l = new Dimension(200, 200); Dimension r = new Dimension(200, 200); return new Dimension(l.width+r.width+10+buttons.getPreferredSize().width,Math.max(l.height, r.height)); } @Override public void layoutContainer(Container parent) { Dimension d = p.getSize(); Dimension b = buttons.getPreferredSize(); int width = (d.width-10-b.width)/2; left.setBounds(new Rectangle(0,0,width,d.height)); right.setBounds(new Rectangle(width+10+b.width,0,width,d.height)); buttons.setBounds(new Rectangle(width+5, d.height/2-b.height/2, b.width, b.height)); } }); p.add(left); p.add(buttons); p.add(right); actionParametersPanel = new JPanel(new GridBagLayout()); actionParametersPanel.add(new JLabel(tr("Action parameters")), GBC.eol().insets(0, 10, 0, 20)); actionParametersTable.getColumnModel().getColumn(0).setHeaderValue(tr("Parameter name")); actionParametersTable.getColumnModel().getColumn(1).setHeaderValue(tr("Parameter value")); actionParametersPanel.add(actionParametersTable.getTableHeader(), GBC.eol().fill(GBC.HORIZONTAL)); actionParametersPanel.add(actionParametersTable, GBC.eol().fill(GBC.BOTH).insets(0, 0, 0, 10)); actionParametersPanel.setVisible(false); JPanel panel = gui.createPreferenceTab(this); panel.add(p, GBC.eol().fill(GBC.BOTH)); panel.add(actionParametersPanel, GBC.eol().fill(GBC.HORIZONTAL)); selected.removeAllElements(); for (ActionDefinition actionDefinition: getDefinedActions()) { selected.addElement(actionDefinition); } } @Override public boolean ok() { Collection t = new LinkedList<>(); ActionParser parser = new ActionParser(null); for (int i = 0; i < selected.size(); ++i) { ActionDefinition action = selected.get(i); if (action.isSeparator()) { t.add("|"); } else { String res = parser.saveAction(action); if(res != null) { t.add(res); } } } if (t.isEmpty()) { t = Collections.singletonList(EMPTY_TOOLBAR_MARKER); } Main.pref.putCollection("toolbar", t); Main.toolbar.refreshToolbarControl(); return false; } } /** * Constructs a new {@code ToolbarPreferences}. */ public ToolbarPreferences() { control.setFloatable(false); control.setComponentPopupMenu(popupMenu); } private void loadAction(DefaultMutableTreeNode node, MenuElement menu) { Object userObject = null; MenuElement menuElement = menu; if (menu.getSubElements().length > 0 && menu.getSubElements()[0] instanceof JPopupMenu) { menuElement = menu.getSubElements()[0]; } for (MenuElement item : menuElement.getSubElements()) { if (item instanceof JMenuItem) { JMenuItem menuItem = ((JMenuItem)item); if (menuItem.getAction() != null) { Action action = menuItem.getAction(); userObject = action; Object tb = action.getValue("toolbar"); if(tb == null) { Main.info(tr("Toolbar action without name: {0}", action.getClass().getName())); continue; } else if (!(tb instanceof String)) { if(!(tb instanceof Boolean) || (Boolean)tb) { Main.info(tr("Strange toolbar value: {0}", action.getClass().getName())); } continue; } else { String toolbar = (String) tb; Action r = actions.get(toolbar); if(r != null && r != action && !toolbar.startsWith("imagery_")) { Main.info(tr("Toolbar action {0} overwritten: {1} gets {2}", toolbar, r.getClass().getName(), action.getClass().getName())); } actions.put(toolbar, action); } } else { userObject = menuItem.getText(); } } DefaultMutableTreeNode newNode = new DefaultMutableTreeNode(userObject); node.add(newNode); loadAction(newNode, item); } } public Action getAction(String s) { Action e = actions.get(s); if(e == null) { e = regactions.get(s); } return e; } private void loadActions() { rootActionsNode.removeAllChildren(); loadAction(rootActionsNode, Main.main.menu); for(Map.Entry a : regactions.entrySet()) { if(actions.get(a.getKey()) == null) { rootActionsNode.add(new DefaultMutableTreeNode(a.getValue())); } } rootActionsNode.add(new DefaultMutableTreeNode(null)); } private static final String[] deftoolbar = {"open", "save", "download", "upload", "|", "undo", "redo", "|", "dialogs/search", "preference", "|", "splitway", "combineway", "wayflip", "|", "imagery-offset", "|", "tagginggroup_Highways/Streets", "tagginggroup_Highways/Ways", "tagginggroup_Highways/Waypoints", "tagginggroup_Highways/Barriers", "|", "tagginggroup_Transport/Car", "tagginggroup_Transport/Public Transport", "|", "tagginggroup_Facilities/Tourism", "tagginggroup_Facilities/Food+Drinks", "|", "tagginggroup_Man Made/Historic Places", "|", "tagginggroup_Man Made/Man Made"}; public static Collection getToolString() { Collection toolStr = Main.pref.getCollection("toolbar", Arrays.asList(deftoolbar)); if (toolStr == null || toolStr.isEmpty()) { toolStr = Arrays.asList(deftoolbar); } return toolStr; } private Collection getDefinedActions() { loadActions(); Map allActions = new HashMap<>(regactions); allActions.putAll(actions); ActionParser actionParser = new ActionParser(allActions); Collection result = new ArrayList<>(); for (String s : getToolString()) { if ("|".equals(s)) { result.add(ActionDefinition.getSeparator()); } else { ActionDefinition a = actionParser.loadAction(s); if(a != null) { result.add(a); } else { Main.info("Could not load tool definition "+s); } } } return result; } /** * @return The parameter (for better chaining) */ public Action register(Action action) { String toolbar = (String) action.getValue("toolbar"); if (toolbar == null) { Main.info(tr("Registered toolbar action without name: {0}", action.getClass().getName())); } else { Action r = regactions.get(toolbar); if (r != null) { Main.info(tr("Registered toolbar action {0} overwritten: {1} gets {2}", toolbar, r.getClass().getName(), action.getClass().getName())); } } regactions.put(toolbar, action); return action; } /** * Parse the toolbar preference setting and construct the toolbar GUI control. * * Call this, if anything has changed in the toolbar settings and you want to refresh * the toolbar content (e.g. after registering actions in a plugin) */ public void refreshToolbarControl() { control.removeAll(); buttonActions.clear(); boolean unregisterTab = Shortcut.findShortcut(KeyEvent.VK_TAB, 0)!=null; for (ActionDefinition action : getDefinedActions()) { if (action.isSeparator()) { control.addSeparator(); } else { final JButton b = addButtonAndShortcut(action); buttonActions.put(b, action); Icon i = action.getDisplayIcon(); if (i != null) { b.setIcon(i); } else { // hide action text if an icon is set later (necessary for delayed/background image loading) action.getParametrizedAction().addPropertyChangeListener(new PropertyChangeListener() { @Override public void propertyChange(PropertyChangeEvent evt) { if (Action.SMALL_ICON.equals(evt.getPropertyName())) { b.setHideActionText(evt.getNewValue() != null); } } }); } b.setInheritsPopupMenu(true); b.setFocusTraversalKeysEnabled(!unregisterTab); } } control.setFocusTraversalKeysEnabled(!unregisterTab); control.setVisible(control.getComponentCount() != 0); control.repaint(); } /** * The method to add custom button on toolbar like search or preset buttons * @param definitionText toolbar definition text to describe the new button, * must be carefully generated by using {@link ActionParser} * @param preferredIndex place to put the new button, give -1 for the end of toolbar * @param removeIfExists if true and the button already exists, remove it */ public void addCustomButton(String definitionText, int preferredIndex, boolean removeIfExists) { LinkedList t = new LinkedList<>(getToolString()); if (t.contains(definitionText)) { if (!removeIfExists) return; // do nothing t.remove(definitionText); } else { if (preferredIndex>=0 && preferredIndex < t.size()) { t.add(preferredIndex, definitionText); // add to specified place } else { t.add(definitionText); // add to the end } } Main.pref.putCollection("toolbar", t); Main.toolbar.refreshToolbarControl(); } private JButton addButtonAndShortcut(ActionDefinition action) { Action act = action.getParametrizedAction(); JButton b = control.add(act); Shortcut sc = null; if (action.getAction() instanceof JosmAction) { sc = ((JosmAction) action.getAction()).getShortcut(); if (sc.getAssignedKey() == KeyEvent.CHAR_UNDEFINED) { sc = null; } } long paramCode = 0; if (action.hasParameters()) { paramCode = action.parameters.hashCode(); } String tt = action.getDisplayTooltip(); if (tt==null) { tt=""; } if (sc == null || paramCode != 0) { String name = (String) action.getAction().getValue("toolbar"); if (name==null) { name=action.getDisplayName(); } if (paramCode!=0) { name = name+paramCode; } String desc = action.getDisplayName() + ((paramCode==0)?"":action.parameters.toString()); sc = Shortcut.registerShortcut("toolbar:"+name, tr("Toolbar: {0}", desc), KeyEvent.CHAR_UNDEFINED, Shortcut.NONE); Main.unregisterShortcut(sc); Main.registerActionShortcut(act, sc); // add shortcut info to the tooltip if needed if (sc.getAssignedUser()) { if (tt.startsWith("") && tt.endsWith("")) { tt = tt.substring(6,tt.length()-6); } tt = Main.platform.makeTooltip(tt, sc); } } if (!tt.isEmpty()) { b.setToolTipText(tt); } return b; } private static final DataFlavor ACTION_FLAVOR = new DataFlavor(ActionDefinition.class, "ActionItem"); }