jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/SynthMenuItemUI.java
author alexsch
Fri, 15 Apr 2016 19:15:12 +0400
changeset 37698 4d798c873df0
parent 25859 3317bb8137f4
permissions -rw-r--r--
8132791: No access to SynthContext.getContext() Reviewed-by: serb, ssadetsky
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 20168
diff changeset
     2
 * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4848
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package javax.swing.plaf.synth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.beans.PropertyChangeEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.beans.PropertyChangeListener;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import javax.swing.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import javax.swing.plaf.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.swing.plaf.basic.*;
1295
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
    33
import sun.swing.MenuItemLayoutHelper;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
    37
 * Provides the Synth L&F UI delegate for
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    38
 * {@link javax.swing.JMenuItem}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * @author Georges Saab
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @author David Karlton
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @author Arnaud Weber
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @author Fredrik Lagerblad
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    44
 * @since 1.7
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 */
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    46
public class SynthMenuItemUI extends BasicMenuItemUI implements
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
                                   PropertyChangeListener, SynthUI {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private SynthStyle style;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private SynthStyle accStyle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    51
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    52
     * Creates a new UI object for the given component.
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    53
     *
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    54
     * @param c component to create UI object for
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    55
     * @return the UI object
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    56
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    public static ComponentUI createUI(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        return new SynthMenuItemUI();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    61
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
    62
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    63
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    64
    @Override
1295
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
    65
    public void uninstallUI(JComponent c) {
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
    66
        super.uninstallUI(c);
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
    67
        // Remove values from the parent's Client Properties.
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
    68
        JComponent p = MenuItemLayoutHelper.getMenuItemParent((JMenuItem) c);
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
    69
        if (p != null) {
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
    70
            p.putClientProperty(
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
    71
                    SynthMenuItemLayoutHelper.MAX_ACC_OR_ARROW_WIDTH, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    75
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
    76
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    77
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    78
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    protected void installDefaults() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        updateStyle(menuItem);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    83
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
    84
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    85
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    86
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    protected void installListeners() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        super.installListeners();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        menuItem.addPropertyChangeListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    private void updateStyle(JMenuItem mi) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        SynthContext context = getContext(mi, ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        SynthStyle oldStyle = style;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        style = SynthLookAndFeel.updateStyle(context, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        if (oldStyle != style) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            String prefix = getPropertyPrefix();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            Object value = style.get(context, prefix + ".textIconGap");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            if (value != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                LookAndFeel.installProperty(mi, "iconTextGap", value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            defaultTextIconGap = mi.getIconTextGap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            if (menuItem.getMargin() == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                         (menuItem.getMargin() instanceof UIResource)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                Insets insets = (Insets)style.get(context, prefix + ".margin");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                if (insets == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                    // Some places assume margins are non-null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                    insets = SynthLookAndFeel.EMPTY_UIRESOURCE_INSETS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                menuItem.setMargin(insets);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            acceleratorDelimiter = style.getString(context, prefix +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                                            ".acceleratorDelimiter", "+");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            arrowIcon = style.getIcon(context, prefix + ".arrowIcon");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            checkIcon = style.getIcon(context, prefix + ".checkIcon");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            if (oldStyle != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                uninstallKeyboardActions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                installKeyboardActions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        SynthContext accContext = getContext(mi, Region.MENU_ITEM_ACCELERATOR,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                                             ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        accStyle = SynthLookAndFeel.updateStyle(accContext, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   134
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   135
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   136
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   137
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    protected void uninstallDefaults() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        SynthContext context = getContext(menuItem, ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        style.uninstallDefaults(context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        style = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        SynthContext accContext = getContext(menuItem,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                                     Region.MENU_ITEM_ACCELERATOR, ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        accStyle.uninstallDefaults(accContext);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        accStyle = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        super.uninstallDefaults();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   151
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   152
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   153
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   154
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    protected void uninstallListeners() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        super.uninstallListeners();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        menuItem.removePropertyChangeListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   160
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   161
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   162
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   163
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    public SynthContext getContext(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        return getContext(c, getComponentState(c));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    SynthContext getContext(JComponent c, int state) {
25100
d527cc827d7d 8043627: NPE in SynthContext in plugin mode
malenkov
parents: 23010
diff changeset
   169
        return SynthContext.getContext(c, style, state);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   172
    SynthContext getContext(JComponent c, Region region) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        return getContext(c, region, getComponentState(c, region));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    private SynthContext getContext(JComponent c, Region region, int state) {
25100
d527cc827d7d 8043627: NPE in SynthContext in plugin mode
malenkov
parents: 23010
diff changeset
   177
        return SynthContext.getContext(c, region, accStyle, state);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    private int getComponentState(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        int state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        if (!c.isEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            state = DISABLED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        else if (menuItem.isArmed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            state = MOUSE_OVER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            state = SynthLookAndFeel.getComponentState(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        if (menuItem.isSelected()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            state |= SELECTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        return state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    private int getComponentState(JComponent c, Region region) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        return getComponentState(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   202
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   203
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   204
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   205
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    protected Dimension getPreferredMenuItemSize(JComponent c,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
                                                     Icon checkIcon,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                                                     Icon arrowIcon,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                                                     int defaultTextIconGap) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        SynthContext context = getContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        SynthContext accContext = getContext(c, Region.MENU_ITEM_ACCELERATOR);
1295
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   212
        Dimension value = SynthGraphicsUtils.getPreferredMenuItemSize(
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   213
                context, accContext, c, checkIcon, arrowIcon,
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   214
                defaultTextIconGap, acceleratorDelimiter,
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   215
                MenuItemLayoutHelper.useCheckAndArrow(menuItem),
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   216
                getPropertyPrefix());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   221
    /**
4848
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   222
     * Notifies this UI delegate to repaint the specified component.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   223
     * This method paints the component background, then calls
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   224
     * the {@link #paint(SynthContext,Graphics)} method.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   225
     *
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   226
     * <p>In general, this method does not need to be overridden by subclasses.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   227
     * All Look and Feel rendering code should reside in the {@code paint} method.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   228
     *
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   229
     * @param g the {@code Graphics} object used for painting
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   230
     * @param c the component being painted
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   231
     * @see #paint(SynthContext,Graphics)
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   232
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   233
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    public void update(Graphics g, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        SynthContext context = getContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        SynthLookAndFeel.update(context, g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        paintBackground(context, g, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        paint(context, g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   242
    /**
4848
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   243
     * Paints the specified component according to the Look and Feel.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   244
     * <p>This method is not used by Synth Look and Feel.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   245
     * Painting is handled by the {@link #paint(SynthContext,Graphics)} method.
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   246
     *
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   247
     * @param g the {@code Graphics} object used for painting
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   248
     * @param c the component being painted
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   249
     * @see #paint(SynthContext,Graphics)
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   250
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   251
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    public void paint(Graphics g, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        SynthContext context = getContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        paint(context, g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   258
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   259
     * Paints the specified component.
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   260
     *
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   261
     * @param context context for the component being painted
4848
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   262
     * @param g the {@code Graphics} object used for painting
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   263
     * @see #update(Graphics,JComponent)
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   264
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    protected void paint(SynthContext context, Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        SynthContext accContext = getContext(menuItem,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
                                             Region.MENU_ITEM_ACCELERATOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        // Refetch the appropriate check indicator for the current state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        String prefix = getPropertyPrefix();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        Icon checkIcon = style.getIcon(context, prefix + ".checkIcon");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        Icon arrowIcon = style.getIcon(context, prefix + ".arrowIcon");
1295
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   273
        SynthGraphicsUtils.paint(context, accContext, g, checkIcon, arrowIcon,
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   274
              acceleratorDelimiter, defaultTextIconGap, getPropertyPrefix());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    void paintBackground(SynthContext context, Graphics g, JComponent c) {
1295
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   278
        SynthGraphicsUtils.paintBackground(context, g, c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   281
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   282
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   283
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   284
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    public void paintBorder(SynthContext context, Graphics g, int x,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                            int y, int w, int h) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        context.getPainter().paintMenuItemBorder(context, g, x, y, w, h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   290
    /**
20168
137788883a22 8025070: [javadoc] fix some javadoc errors in javax/swing/plaf/synth
alexsch
parents: 7668
diff changeset
   291
     * {@inheritDoc}
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   292
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   293
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    public void propertyChange(PropertyChangeEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        if (SynthLookAndFeel.shouldUpdateStyle(e)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            updateStyle((JMenuItem)e.getSource());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
}