~ubuntu-branches/debian/stretch/insubstantial/stretch

« back to all changes in this revision

Viewing changes to substance-flamingo/src/main/java/org/pushingpixels/substance/flamingo/common/ui/SubstanceCommandPopupMenuUI.java

  • Committer: Package Import Robot
  • Author(s): Felix Natter
  • Date: 2016-01-18 20:58:45 UTC
  • Revision ID: package-import@ubuntu.com-20160118205845-crbmrkda61qsi5qa
Tags: upstream-7.3+dfsg2
ImportĀ upstreamĀ versionĀ 7.3+dfsg2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2005-2010 Flamingo / Substance Kirill Grouchnikov. All Rights Reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions are met:
 
6
 *
 
7
 *  o Redistributions of source code must retain the above copyright notice,
 
8
 *    this list of conditions and the following disclaimer.
 
9
 *
 
10
 *  o Redistributions in binary form must reproduce the above copyright notice,
 
11
 *    this list of conditions and the following disclaimer in the documentation
 
12
 *    and/or other materials provided with the distribution.
 
13
 *
 
14
 *  o Neither the name of Flamingo Kirill Grouchnikov nor the names of
 
15
 *    its contributors may be used to endorse or promote products derived
 
16
 *    from this software without specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
19
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
20
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
21
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
22
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
23
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
24
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 
25
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 
26
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 
27
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 
28
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
29
 */
 
30
package org.pushingpixels.substance.flamingo.common.ui;
 
31
 
 
32
import java.awt.*;
 
33
 
 
34
import javax.swing.*;
 
35
import javax.swing.plaf.ComponentUI;
 
36
 
 
37
import org.pushingpixels.flamingo.api.common.popup.JCommandPopupMenu;
 
38
import org.pushingpixels.flamingo.internal.ui.common.popup.BasicCommandPopupMenuUI;
 
39
import org.pushingpixels.lafwidget.LafWidgetUtilities;
 
40
import org.pushingpixels.substance.api.ComponentState;
 
41
import org.pushingpixels.substance.api.SubstanceColorScheme;
 
42
import org.pushingpixels.substance.api.SubstanceConstants.MenuGutterFillKind;
 
43
import org.pushingpixels.substance.internal.painter.SeparatorPainterUtils;
 
44
import org.pushingpixels.substance.internal.utils.SubstanceColorSchemeUtilities;
 
45
import org.pushingpixels.substance.internal.utils.SubstanceCoreUtilities;
 
46
import org.pushingpixels.substance.internal.utils.border.SubstanceBorder;
 
47
 
 
48
/**
 
49
 * UI for {@link JCommandPopupMenu} components in <b>Substance</b> look and
 
50
 * feel.
 
51
 * 
 
52
 * @author Kirill Grouchnikov
 
53
 */
 
54
public class SubstanceCommandPopupMenuUI extends BasicCommandPopupMenuUI {
 
55
        public static ComponentUI createUI(JComponent c) {
 
56
                SubstanceCoreUtilities.testComponentCreationThreadingViolation(c);
 
57
                return new SubstanceCommandPopupMenuUI();
 
58
        }
 
59
 
 
60
        @Override
 
61
        protected JPanel createMenuPanel() {
 
62
                return new SubstanceMenuPanel();
 
63
        }
 
64
 
 
65
        protected static class SubstanceMenuPanel extends MenuPanel {
 
66
                @Override
 
67
                protected void paintIconGutterSeparator(Graphics g) {
 
68
                        Graphics2D g2d = (Graphics2D) g.create();
 
69
                        int sepX = this.getSeparatorX();
 
70
                        g2d.translate(sepX, 0);
 
71
                        SeparatorPainterUtils.paintSeparator(this, g2d, 2,
 
72
                                        this.getHeight(), JSeparator.VERTICAL, true, 0, 0, false);
 
73
                        g2d.dispose();
 
74
                }
 
75
 
 
76
                @Override
 
77
                protected void paintIconGutterBackground(Graphics g) {
 
78
                        Graphics2D g2d = (Graphics2D) g.create();
 
79
                        MenuGutterFillKind fillKind = SubstanceCoreUtilities
 
80
                                        .getMenuGutterFillKind();
 
81
                        if (fillKind != MenuGutterFillKind.NONE) {
 
82
                                SubstanceColorScheme scheme = SubstanceColorSchemeUtilities
 
83
                                                .getColorScheme(this, ComponentState.ENABLED);
 
84
                                Color leftColor = ((fillKind == MenuGutterFillKind.SOFT_FILL) || (fillKind == MenuGutterFillKind.HARD)) ? scheme
 
85
                                                .getUltraLightColor()
 
86
                                                : scheme.getLightColor();
 
87
                                Color rightColor = ((fillKind == MenuGutterFillKind.SOFT_FILL) || (fillKind == MenuGutterFillKind.SOFT)) ? scheme
 
88
                                                .getUltraLightColor()
 
89
                                                : scheme.getLightColor();
 
90
                                g2d.setComposite(LafWidgetUtilities.getAlphaComposite(this,
 
91
                                                0.7f, g));
 
92
 
 
93
                                int sepX = this.getSeparatorX();
 
94
                                if (this.getComponentOrientation().isLeftToRight()) {
 
95
                                        GradientPaint gp = new GradientPaint(0, 0, leftColor,
 
96
                                                        sepX + 2, 0, rightColor);
 
97
                                        g2d.setPaint(gp);
 
98
                                        g2d.fillRect(0, 0, sepX, this.getHeight());
 
99
                                } else {
 
100
                                        GradientPaint gp = new GradientPaint(sepX, 0, leftColor,
 
101
                                                        this.getWidth(), 0, rightColor);
 
102
                                        g2d.setPaint(gp);
 
103
                                        g2d.fillRect(sepX + 2, 0, this.getWidth() - sepX, this
 
104
                                                        .getHeight());
 
105
                                }
 
106
                        }
 
107
                        g2d.dispose();
 
108
                }
 
109
        }
 
110
 
 
111
        /*
 
112
         * (non-Javadoc)
 
113
         * 
 
114
         * @see org.jvnet.flamingo.common.ui.BasicCommandPopupMenuUI#
 
115
         * createScrollableButtonPanel()
 
116
         */
 
117
        @Override
 
118
        protected ScrollableCommandButtonPanel createScrollableButtonPanel() {
 
119
                ScrollableCommandButtonPanel result = super
 
120
                                .createScrollableButtonPanel();
 
121
                result.setBorder(new SubstanceBorder(new Insets(0, 0, 1, 0)));
 
122
                return result;
 
123
        }
 
124
}