source: josm/trunk/src/org/openstreetmap/josm/actions/AbstractMergeAction.java@ 15455

Last change on this file since 15455 was 15455, checked in by Don-vip, 5 years ago

see #18219, see #18216 - update unit tests

  • Property svn:eol-style set to native
File size: 10.1 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.Component;
7import java.awt.GridBagLayout;
8import java.util.List;
9
10import javax.swing.DefaultListCellRenderer;
11import javax.swing.JCheckBox;
12import javax.swing.JLabel;
13import javax.swing.JList;
14import javax.swing.JOptionPane;
15import javax.swing.JPanel;
16
17import org.openstreetmap.josm.gui.ExtendedDialog;
18import org.openstreetmap.josm.gui.MainApplication;
19import org.openstreetmap.josm.gui.layer.Layer;
20import org.openstreetmap.josm.gui.widgets.JosmComboBox;
21import org.openstreetmap.josm.tools.GBC;
22import org.openstreetmap.josm.tools.Shortcut;
23import org.openstreetmap.josm.tools.Utils;
24
25/**
26 * Abstract superclass of different "Merge" actions.
27 * @since 1890
28 */
29public abstract class AbstractMergeAction extends JosmAction {
30
31 /**
32 * the list cell renderer used to render layer list entries
33 */
34 public static class LayerListCellRenderer extends DefaultListCellRenderer {
35
36 @Override
37 public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
38 Layer layer = (Layer) value;
39 JLabel label = (JLabel) super.getListCellRendererComponent(list, layer.getName(), index, isSelected, cellHasFocus);
40 label.setIcon(layer.getIcon());
41 label.setToolTipText(layer.getToolTipText());
42 return label;
43 }
44 }
45
46 /**
47 * <code>TargetLayerDialogResult</code> returned by {@link #askTargetLayer(List, String, boolean)}
48 * containing the selectedTargetLayer and whether the checkbox is ticked
49 * @param <T> type of layer
50 * @since 14338
51 */
52 public static class TargetLayerDialogResult<T extends Layer> {
53 /**
54 * The selected target layer of type T
55 */
56 public T selectedTargetLayer;
57 /**
58 * Whether the checkbox is ticked
59 */
60 public boolean checkboxTicked;
61
62 /**
63 * Constructs a new {@link TargetLayerDialogResult}
64 */
65 public TargetLayerDialogResult() {
66 }
67
68 /**
69 * Constructs a new {@link TargetLayerDialogResult}
70 * @param sel the selected target layer of type T
71 */
72 public TargetLayerDialogResult(T sel) {
73 selectedTargetLayer = sel;
74 }
75
76 /**
77 * Constructs a new {@link TargetLayerDialogResult}
78 * @param sel the selected target layer of type T
79 * @param ch whether the checkbox was ticked
80 */
81 public TargetLayerDialogResult(T sel, boolean ch) {
82 selectedTargetLayer = sel;
83 checkboxTicked = ch;
84 }
85 }
86
87 /**
88 * Constructs a new {@code AbstractMergeAction}.
89 * @param name the action's text as displayed on the menu (if it is added to a menu)
90 * @param iconName the filename of the icon to use
91 * @param tooltip a longer description of the action that will be displayed in the tooltip. Please note
92 * that html is not supported for menu actions on some platforms.
93 * @param shortcut a ready-created shortcut object or null if you don't want a shortcut. But you always
94 * do want a shortcut, remember you can always register it with group=none, so you
95 * won't be assigned a shortcut unless the user configures one. If you pass null here,
96 * the user CANNOT configure a shortcut for your action.
97 * @param register register this action for the toolbar preferences?
98 */
99 public AbstractMergeAction(String name, String iconName, String tooltip, Shortcut shortcut, boolean register) {
100 super(name, iconName, tooltip, shortcut, register);
101 }
102
103 /**
104 * Constructs a new {@code AbstractMergeAction}.
105 * @param name the action's text as displayed on the menu (if it is added to a menu)
106 * @param iconName the filename of the icon to use
107 * @param tooltip a longer description of the action that will be displayed in the tooltip. Please note
108 * that html is not supported for menu actions on some platforms.
109 * @param shortcut a ready-created shortcut object or null if you don't want a shortcut. But you always
110 * do want a shortcut, remember you can always register it with group=none, so you
111 * won't be assigned a shortcut unless the user configures one. If you pass null here,
112 * the user CANNOT configure a shortcut for your action.
113 * @param register register this action for the toolbar preferences?
114 * @param toolbar identifier for the toolbar preferences. The iconName is used, if this parameter is null
115 * @param installAdapters false, if you don't want to install layer changed and selection changed adapters
116 */
117 public AbstractMergeAction(String name, String iconName, String tooltip, Shortcut shortcut,
118 boolean register, String toolbar, boolean installAdapters) {
119 super(name, iconName, tooltip, shortcut, register, toolbar, installAdapters);
120 }
121
122 /**
123 * Ask user to choose the target layer.
124 * @param targetLayers list of candidate target layers.
125 * @return the chosen layer
126 * @deprecated to be removed
127 */
128 @Deprecated
129 protected static Layer askTargetLayer(List<Layer> targetLayers) {
130 return askTargetLayer(targetLayers, false, null, false, tr("Merge")).selectedTargetLayer;
131 }
132
133 /**
134 * Ask user to choose the target layer and shows a checkbox.
135 * @param targetLayers list of candidate target layers.
136 * @param checkbox The text of the checkbox shown to the user.
137 * @param checkboxDefault whether the checkbox is ticked by default
138 * @return The {@link TargetLayerDialogResult} containing the chosen target layer and the state of the checkbox
139 * @deprecated to be removed
140 */
141 @Deprecated
142 protected static TargetLayerDialogResult<Layer> askTargetLayer(List<Layer> targetLayers, String checkbox, boolean checkboxDefault) {
143 return askTargetLayer(targetLayers, true, checkbox, checkboxDefault, tr("Merge"));
144 }
145
146 /**
147 * Ask user to choose the target layer and shows a checkbox.
148 * @param targetLayers list of candidate target layers.
149 * @param showCheckbox whether the checkbox is shown
150 * @param checkbox The text of the checkbox shown to the user.
151 * @param checkboxDefault whether the checkbox is ticked by default
152 * @param buttonText text of button used to select target layer
153 * @return The {@link TargetLayerDialogResult} containing the chosen target layer and the state of the checkbox
154 * @since 15450
155 */
156 protected static TargetLayerDialogResult<Layer> askTargetLayer(List<Layer> targetLayers, boolean showCheckbox,
157 String checkbox, boolean checkboxDefault, String buttonText) {
158 return askTargetLayer(targetLayers.toArray(new Layer[0]),
159 tr("Please select the target layer."), checkbox,
160 tr("Select target layer"),
161 buttonText, "dialogs/mergedown", showCheckbox, checkboxDefault);
162 }
163
164 /**
165 * Ask user to choose the target layer.
166 * @param <T> type of layer
167 * @param targetLayers array of proposed target layers
168 * @param label label displayed in dialog
169 * @param title title of dialog
170 * @param buttonText text of button used to select target layer
171 * @param buttonIcon icon name of button used to select target layer
172 * @return chosen target layer
173 */
174 public static <T extends Layer> T askTargetLayer(T[] targetLayers, String label, String title, String buttonText, String buttonIcon) {
175 return askTargetLayer(targetLayers, label, null, title, buttonText, buttonIcon, false, false).selectedTargetLayer;
176 }
177
178 /**
179 * Ask user to choose the target layer. Can show a checkbox.
180 * @param <T> type of layer
181 * @param targetLayers array of proposed target layers
182 * @param label label displayed in dialog
183 * @param checkbox text of the checkbox displayed
184 * @param title title of dialog
185 * @param buttonText text of button used to select target layer
186 * @param buttonIcon icon name of button used to select target layer
187 * @param showCheckbox whether the checkbox is shown
188 * @param checkboxDefault whether the checkbox is ticked by default
189 * @return The {@link TargetLayerDialogResult} containing the chosen target layer and the state of the checkbox
190 * @since 14338
191 */
192 @SuppressWarnings("unchecked")
193 public static <T extends Layer> TargetLayerDialogResult<T> askTargetLayer(T[] targetLayers, String label, String checkbox, String title,
194 String buttonText, String buttonIcon, boolean showCheckbox, boolean checkboxDefault) {
195 JosmComboBox<T> layerList = new JosmComboBox<>(targetLayers);
196 layerList.setRenderer(new LayerListCellRenderer());
197 layerList.setSelectedIndex(0);
198
199 JPanel pnl = new JPanel(new GridBagLayout());
200 pnl.add(new JLabel(label), GBC.eol());
201 pnl.add(layerList, GBC.eol().fill(GBC.HORIZONTAL));
202
203 JCheckBox cb = null;
204 if (showCheckbox) {
205 cb = new JCheckBox(checkbox);
206 cb.setSelected(checkboxDefault);
207 pnl.add(cb, GBC.eol());
208 }
209
210 ExtendedDialog ed = new ExtendedDialog(MainApplication.getMainFrame(), title, buttonText, tr("Cancel"));
211 ed.setButtonIcons(buttonIcon, "cancel");
212 ed.setContent(pnl);
213 ed.showDialog();
214 if (ed.getValue() != 1) {
215 return new TargetLayerDialogResult<>();
216 }
217 return new TargetLayerDialogResult<>((T) layerList.getSelectedItem(), cb != null && cb.isSelected());
218 }
219
220 /**
221 * Warns user when there no layers the source layer could be merged to.
222 * @param sourceLayer source layer
223 */
224 protected void warnNoTargetLayersForSourceLayer(Layer sourceLayer) {
225 String message = tr("<html>There are no layers the source layer<br>''{0}''<br>could be merged to.</html>",
226 Utils.escapeReservedCharactersHTML(sourceLayer.getName()));
227 JOptionPane.showMessageDialog(MainApplication.getMainFrame(), message, tr("No target layers"), JOptionPane.WARNING_MESSAGE);
228 }
229}
Note: See TracBrowser for help on using the repository browser.