jdk/src/share/classes/javax/swing/plaf/synth/SynthMenuItemUI.java
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 5506 202f599c92aa
child 20168 137788883a22
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 5506
diff changeset
     2
 * Copyright (c) 2002, 2010, 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
/**
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    37
 * Provides the Synth L&F UI delegate for
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
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    62
     * @inheritDoc
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
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    76
     * @inheritDoc
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
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
    84
     * @inheritDoc
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
        context.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        SynthContext accContext = getContext(mi, Region.MENU_ITEM_ACCELERATOR,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                                             ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        accStyle = SynthLookAndFeel.updateStyle(accContext, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        accContext.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
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
     * @inheritDoc
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   138
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   139
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    protected void uninstallDefaults() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        SynthContext context = getContext(menuItem, ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        style.uninstallDefaults(context);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        context.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        style = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        SynthContext accContext = getContext(menuItem,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                                     Region.MENU_ITEM_ACCELERATOR, ENABLED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        accStyle.uninstallDefaults(accContext);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        accContext.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        accStyle = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        super.uninstallDefaults();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   155
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   156
     * @inheritDoc
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   157
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   158
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    protected void uninstallListeners() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        super.uninstallListeners();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        menuItem.removePropertyChangeListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   164
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   165
     * @inheritDoc
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   166
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   167
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    public SynthContext getContext(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        return getContext(c, getComponentState(c));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    SynthContext getContext(JComponent c, int state) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        return SynthContext.getContext(SynthContext.class, c,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                    SynthLookAndFeel.getRegion(c), style, state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   177
    SynthContext getContext(JComponent c, Region region) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        return getContext(c, region, getComponentState(c, region));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    private SynthContext getContext(JComponent c, Region region, int state) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        return SynthContext.getContext(SynthContext.class, c,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                                       region, accStyle, state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    private int getComponentState(JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        int state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        if (!c.isEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            state = DISABLED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        else if (menuItem.isArmed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            state = MOUSE_OVER;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            state = SynthLookAndFeel.getComponentState(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        if (menuItem.isSelected()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            state |= SELECTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        return state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    private int getComponentState(JComponent c, Region region) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        return getComponentState(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   208
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   209
     * @inheritDoc
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   210
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   211
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    protected Dimension getPreferredMenuItemSize(JComponent c,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                                                     Icon checkIcon,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                                                     Icon arrowIcon,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                                                     int defaultTextIconGap) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        SynthContext context = getContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        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
   218
        Dimension value = SynthGraphicsUtils.getPreferredMenuItemSize(
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   219
                context, accContext, c, checkIcon, arrowIcon,
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   220
                defaultTextIconGap, acceleratorDelimiter,
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   221
                MenuItemLayoutHelper.useCheckAndArrow(menuItem),
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   222
                getPropertyPrefix());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        context.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        accContext.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   229
    /**
4848
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   230
     * 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
   231
     * 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
   232
     * 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
   233
     *
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   234
     * <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
   235
     * 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
   236
     *
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   237
     * @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
   238
     * @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
   239
     * @see #paint(SynthContext,Graphics)
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   240
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   241
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    public void update(Graphics g, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        SynthContext context = getContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        SynthLookAndFeel.update(context, g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        paintBackground(context, g, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        paint(context, g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        context.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   251
    /**
4848
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   252
     * 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
   253
     * <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
   254
     * 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
   255
     *
ffcc849b9351 6912118: Incosistency in several SynthUI classes between inherited specs ofupdate() and paint() methods
peterz
parents: 4394
diff changeset
   256
     * @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
   257
     * @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
   258
     * @see #paint(SynthContext,Graphics)
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   259
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   260
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    public void paint(Graphics g, JComponent c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        SynthContext context = getContext(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        paint(context, g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        context.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   268
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   269
     * Paints the specified component.
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   270
     *
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   271
     * @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
   272
     * @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
   273
     * @see #update(Graphics,JComponent)
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   274
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    protected void paint(SynthContext context, Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        SynthContext accContext = getContext(menuItem,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                                             Region.MENU_ITEM_ACCELERATOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        // Refetch the appropriate check indicator for the current state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        String prefix = getPropertyPrefix();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        Icon checkIcon = style.getIcon(context, prefix + ".checkIcon");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        Icon arrowIcon = style.getIcon(context, prefix + ".arrowIcon");
1295
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   283
        SynthGraphicsUtils.paint(context, accContext, g, checkIcon, arrowIcon,
3cf2264a5743 6584657: GTK Look and Feel: Bugs in menu item layout
mlapshin
parents: 1290
diff changeset
   284
              acceleratorDelimiter, defaultTextIconGap, getPropertyPrefix());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        accContext.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    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
   289
        SynthGraphicsUtils.paintBackground(context, g, c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
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
     * @inheritDoc
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   294
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   295
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    public void paintBorder(SynthContext context, Graphics g, int x,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                            int y, int w, int h) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        context.getPainter().paintMenuItemBorder(context, g, x, y, w, h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
4394
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   301
    /**
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   302
     * @inheritDoc
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   303
     */
92a8ec883f5d 6827653: Make Synth UI classes public
peterz
parents: 1295
diff changeset
   304
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    public void propertyChange(PropertyChangeEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        if (SynthLookAndFeel.shouldUpdateStyle(e)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            updateStyle((JMenuItem)e.getSource());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
}