Changeset 10849 in josm


Ignore:
Timestamp:
2016-08-19T00:07:48+02:00 (8 years ago)
Author:
Don-vip
Message:

fix #13360 - display bigger item icon in preset dialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPreset.java

    r10714 r10849  
    5050import org.openstreetmap.josm.gui.preferences.ToolbarPreferences;
    5151import org.openstreetmap.josm.gui.tagging.presets.items.Key;
    52 import org.openstreetmap.josm.gui.tagging.presets.items.Label;
    5352import org.openstreetmap.josm.gui.tagging.presets.items.Link;
    5453import org.openstreetmap.josm.gui.tagging.presets.items.Optional;
     
    174173
    175174    /**
    176      * Returns the preset icon.
     175     * Returns the preset icon (16px).
    177176     * @return The preset icon, or {@code null} if none defined
    178177     * @since 6403
    179178     */
    180179    public final ImageIcon getIcon() {
    181         Object icon = getValue(Action.SMALL_ICON);
     180        return getIcon(Action.SMALL_ICON);
     181    }
     182
     183    /**
     184     * Returns the preset icon (16 or 24px).
     185     * @param key Key determining icon size: {@code Action.SMALL_ICON} for 16x, {@code Action.LARGE_ICON_KEY} for 24px
     186     * @return The preset icon, or {@code null} if none defined
     187     * @since 10849
     188     */
     189    public final ImageIcon getIcon(String key) {
     190        Object icon = getValue(key);
    182191        if (icon instanceof ImageIcon) {
    183192            return (ImageIcon) icon;
     
    289298            pp.add(label);
    290299        }
    291         if (pp.getComponentCount() > 0) {
    292             p.add(pp, GBC.eol());
    293         }
     300        final int count = pp.getComponentCount();
    294301        if (preset_name_label) {
    295             Label.addLabel(p, getIcon(), getName());
     302            p.add(new JLabel(getIcon(Action.LARGE_ICON_KEY)), GBC.std(0, 0).span(1, count > 0 ? 2 : 1).insets(0, 0, 5, 0));
     303        }
     304        if (count > 0) {
     305            p.add(pp, GBC.std(1, 0).span(GBC.REMAINDER));
     306        }
     307        if (preset_name_label) {
     308            p.add(new JLabel(getName()), GBC.std(1, count > 0 ? 1 : 0).insets(5, 0, 0, 0).span(GBC.REMAINDER).fill(GBC.HORIZONTAL));
    296309        }
    297310
     
    331344        JToggleButton tb = new JToggleButton(new ToolbarButtonAction());
    332345        tb.setFocusable(false);
    333         p.add(tb, GBC.std(0, 0).anchor(GBC.LINE_END));
     346        p.add(tb, GBC.std(1, 0).anchor(GBC.LINE_END));
    334347        return p;
    335348    }
     
    402415
    403416    private static class PresetDialog extends ExtendedDialog {
     417
     418        /**
     419         * Constructs a new {@code PresetDialog}.
     420         * @param content the content that will be displayed in this dialog
     421         * @param title the text that will be shown in the window titlebar
     422         * @param icon the image to be displayed as the icon for this window
     423         * @param disableApply whether to disable "Apply" button
     424         * @param showNewRelation whether to display "New relation" button
     425         */
    404426        PresetDialog(Component content, String title, ImageIcon icon, boolean disableApply, boolean showNewRelation) {
    405427            super(Main.parent, title,
    406428                    showNewRelation ?
    407                             new String[] {tr("Apply Preset"), tr("New relation"), tr("Cancel")} :
    408                                 new String[] {tr("Apply Preset"), tr("Cancel")},
    409                                 true);
     429                            (new String[] {tr("Apply Preset"), tr("New relation"), tr("Cancel")}) :
     430                            (new String[] {tr("Apply Preset"), tr("Cancel")}),
     431                    true);
    410432            if (icon != null)
    411433                setIconImage(icon.getImage());
     
    427449                setSize(d);
    428450            }
    429             showDialog();
    430         }
    431     }
    432 
     451            super.showDialog();
     452        }
     453    }
     454
     455    /**
     456     * Shows the preset dialog.
     457     * @param sel selection
     458     * @param showNewRelation whether to display "New relation" button
     459     * @return the user choice after the dialog has been closed
     460     */
    433461    public int showDialog(Collection<OsmPrimitive> sel, boolean showNewRelation) {
    434462        PresetPanel p = createPanel(sel);
    435         if (p == null)
    436             return DIALOG_ANSWER_CANCEL;
    437463
    438464        int answer = 1;
Note: See TracChangeset for help on using the changeset viewer.