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

« back to all changes in this revision

Viewing changes to flamingo/src/main/java/org/pushingpixels/flamingo/internal/utils/ButtonSizingUtils.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 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.flamingo.internal.utils;
 
31
 
 
32
import java.awt.*;
 
33
import java.awt.image.BufferedImage;
 
34
import java.beans.PropertyChangeEvent;
 
35
import java.beans.PropertyChangeListener;
 
36
 
 
37
import javax.swing.*;
 
38
 
 
39
public class ButtonSizingUtils {
 
40
        private static ButtonSizingUtils instance;
 
41
 
 
42
        private Insets outsets;
 
43
 
 
44
        private Insets toggleOutsets;
 
45
 
 
46
        public static synchronized ButtonSizingUtils getInstance() {
 
47
                if (instance == null)
 
48
                        instance = new ButtonSizingUtils();
 
49
                return instance;
 
50
        }
 
51
 
 
52
        private ButtonSizingUtils() {
 
53
                this.outsets = this.syncOutsets(new JButton(""));
 
54
                this.toggleOutsets = this.syncOutsets(new JToggleButton(""));
 
55
                UIManager.addPropertyChangeListener(new PropertyChangeListener() {
 
56
                        @Override
 
57
                        public void propertyChange(PropertyChangeEvent evt) {
 
58
                                if ("lookAndFeel".equals(evt.getPropertyName())) {
 
59
                                        outsets = syncOutsets(new JButton(""));
 
60
                                        toggleOutsets = syncOutsets(new JToggleButton(""));
 
61
                                }
 
62
                        }
 
63
                });
 
64
        }
 
65
 
 
66
        private Insets syncOutsets(AbstractButton renderer) {
 
67
                JPanel panel = new JPanel(null);
 
68
                renderer.putClientProperty("JButton.buttonStyle", "square");
 
69
                renderer.setFocusable(false);
 
70
                renderer.setOpaque(false);
 
71
                panel.add(renderer);
 
72
                renderer.setBounds(0, 0, 100, 50);
 
73
 
 
74
                GraphicsEnvironment e = GraphicsEnvironment
 
75
                                .getLocalGraphicsEnvironment();
 
76
                GraphicsDevice d = e.getDefaultScreenDevice();
 
77
                GraphicsConfiguration c = d.getDefaultConfiguration();
 
78
                BufferedImage compatibleImage = c.createCompatibleImage(100, 50,
 
79
                                Transparency.TRANSLUCENT);
 
80
                renderer.paint(compatibleImage.getGraphics());
 
81
 
 
82
                // analyze top
 
83
                int top = 0;
 
84
                for (int i = 0; i < 25; i++) {
 
85
                        int rgba = compatibleImage.getRGB(50, i);
 
86
                        int alpha = (rgba >>> 24) & 0xFF;
 
87
                        if (alpha == 255) {
 
88
                                top = i;
 
89
                                break;
 
90
                        }
 
91
                }
 
92
                // analyze bottom
 
93
                int bottom = 0;
 
94
                for (int i = 49; i > 25; i--) {
 
95
                        int rgba = compatibleImage.getRGB(50, i);
 
96
                        int alpha = (rgba >>> 24) & 0xFF;
 
97
                        if (alpha == 255) {
 
98
                                bottom = 49 - i;
 
99
                                break;
 
100
                        }
 
101
                }
 
102
                // analyze left
 
103
                int left = 0;
 
104
                for (int i = 0; i < 50; i++) {
 
105
                        int rgba = compatibleImage.getRGB(i, 25);
 
106
                        int alpha = (rgba >>> 24) & 0xFF;
 
107
                        if (alpha == 255) {
 
108
                                left = i;
 
109
                                break;
 
110
                        }
 
111
                }
 
112
                // analyze right
 
113
                int right = 0;
 
114
                for (int i = 99; i > 50; i--) {
 
115
                        int rgba = compatibleImage.getRGB(i, 25);
 
116
                        int alpha = (rgba >>> 24) & 0xFF;
 
117
                        if (alpha == 255) {
 
118
                                right = 99 - i;
 
119
                                break;
 
120
                        }
 
121
                }
 
122
 
 
123
                return new Insets(top, left, bottom, right);
 
124
        }
 
125
 
 
126
        public Insets getOutsets() {
 
127
                return new Insets(outsets.top, outsets.left, outsets.bottom,
 
128
                                outsets.right);
 
129
        }
 
130
 
 
131
        public Insets getToggleOutsets() {
 
132
                return new Insets(toggleOutsets.top, toggleOutsets.left,
 
133
                                toggleOutsets.bottom, toggleOutsets.right);
 
134
        }
 
135
}