~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to diff/src/org/netbeans/modules/diff/options/ColorComboBox.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
package org.netbeans.modules.diff.options;
 
42
 
 
43
import org.openide.util.NbBundle;
 
44
 
 
45
import javax.swing.*;
 
46
import java.awt.Color;
 
47
import java.awt.Dialog;
 
48
import java.awt.event.ActionListener;
 
49
import java.awt.event.ActionEvent;
 
50
 
 
51
/**
 
52
 *
 
53
 * copied from editor/options.
 
54
 * @author Maros Sandor
 
55
 */
 
56
class ColorComboBox {
 
57
    
 
58
    public static final String PROP_COLOR = "color"; //NOI18N
 
59
    
 
60
    private static Object[] content = new Object[] {
 
61
        new ColorValue(Color.BLACK), 
 
62
        new ColorValue(Color.BLUE), 
 
63
        new ColorValue(Color.CYAN), 
 
64
        new ColorValue(Color.DARK_GRAY), 
 
65
        new ColorValue(Color.GRAY), 
 
66
        new ColorValue(Color.GREEN), 
 
67
        new ColorValue(Color.LIGHT_GRAY), 
 
68
        new ColorValue(Color.MAGENTA), 
 
69
        new ColorValue(Color.ORANGE), 
 
70
        new ColorValue(Color.PINK), 
 
71
        new ColorValue(Color.RED), 
 
72
        new ColorValue(Color.WHITE), 
 
73
        new ColorValue(Color.YELLOW), 
 
74
        ColorValue.CUSTOM_COLOR, 
 
75
    };
 
76
    
 
77
    
 
78
    /** Creates a new instance of ColorChooser */
 
79
    static void init (final JComboBox combo) {
 
80
        combo.setModel (new DefaultComboBoxModel (content));
 
81
        combo.setRenderer (new ColorComboBoxRenderer(combo));
 
82
        combo.setEditable (true);
 
83
        combo.setEditor (new ColorComboBoxRenderer(combo));
 
84
        combo.setSelectedItem (new ColorValue(null, null));
 
85
        combo.addActionListener (new ColorComboBox.ComboBoxListener(combo));
 
86
    }
 
87
    
 
88
    static void setColor (JComboBox combo, Color color) {
 
89
        if (color == null) {
 
90
            combo.setSelectedIndex (content.length - 1);
 
91
        } else {
 
92
            combo.setSelectedItem (new ColorValue(color));
 
93
        }
 
94
    }
 
95
    
 
96
    static Color getColor (JComboBox combo) {
 
97
        // The last item is Inherited Color or None
 
98
        if (combo.getSelectedIndex() < combo.getItemCount() - 1) {
 
99
            return ((ColorValue) combo.getSelectedItem()).color;
 
100
        } else {
 
101
            return null;
 
102
        }
 
103
    }
 
104
    
 
105
    private static String loc (String key) {
 
106
        return NbBundle.getMessage (ColorComboBox.class, key);
 
107
    }
 
108
    
 
109
    // ..........................................................................
 
110
    private static class ComboBoxListener implements ActionListener {
 
111
        
 
112
        private JComboBox combo;
 
113
        private Object lastSelection;
 
114
        
 
115
        ComboBoxListener(JComboBox combo) {
 
116
            this.combo = combo;
 
117
            lastSelection = combo.getSelectedItem();
 
118
        }
 
119
        
 
120
        public void actionPerformed(ActionEvent ev) {
 
121
            if (combo.getSelectedItem() == ColorValue.CUSTOM_COLOR) {
 
122
                Color c = JColorChooser.showDialog(
 
123
                    SwingUtilities.getAncestorOfClass(Dialog.class, combo),
 
124
                    loc("SelectColor"), //NOI18N
 
125
                    lastSelection != null ? ((ColorValue) lastSelection).color : null
 
126
                );
 
127
                if (c != null) {
 
128
                    setColor(combo, c);
 
129
                } else if (lastSelection != null) {
 
130
                    combo.setSelectedItem(lastSelection);
 
131
                }
 
132
            }
 
133
            lastSelection = combo.getSelectedItem();
 
134
        }
 
135
        
 
136
    } // ComboListener
 
137
    
 
138
}