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

« back to all changes in this revision

Viewing changes to core/windows/src/org/netbeans/core/windows/view/ui/StatusLine.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-2006 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
 
 
42
package org.netbeans.core.windows.view.ui;
 
43
 
 
44
import java.awt.event.ActionEvent;
 
45
import org.openide.awt.StatusDisplayer;
 
46
 
 
47
import javax.swing.*;
 
48
import javax.swing.event.ChangeEvent;
 
49
import javax.swing.event.ChangeListener;
 
50
import java.awt.*;
 
51
import java.awt.event.ActionListener;
 
52
 
 
53
/** The status line component of the main window.
 
54
*
 
55
* @author Jaroslav Tulach, Jesse Glick
 
56
*/
 
57
final class StatusLine extends JLabel implements ChangeListener, Runnable {
 
58
    private static int SURVIVING_TIME = Integer.getInteger("org.openide.awt.StatusDisplayer.DISPLAY_TIME", 5000);
 
59
    
 
60
    private StatusDisplayer d = StatusDisplayer.getDefault();
 
61
    
 
62
    Object clearing;
 
63
    
 
64
    private class Updater implements ActionListener {
 
65
        
 
66
        private Object token;
 
67
 
 
68
        private long startTime;
 
69
        
 
70
        private Timer controller;
 
71
        
 
72
        public Updater(Object token) {
 
73
            this.token = token;
 
74
        }
 
75
        
 
76
        public void schedule() {
 
77
            controller = new Timer(SURVIVING_TIME, this);
 
78
            controller.setDelay(100);
 
79
            controller.start();
 
80
        }
 
81
        
 
82
        public void actionPerformed(ActionEvent arg0) {
 
83
            if (clearing == token) {
 
84
                long t = System.currentTimeMillis();
 
85
                if (startTime != 0L) {
 
86
                    Color c = UIManager.getColor("Label.foreground");
 
87
                    if (c != null) {
 
88
                        int alpha = 256 * (int)(t - startTime) / 2000;
 
89
                        StatusLine.this.setForeground(
 
90
                                new Color(c.getRed(), c.getGreen(), c.getBlue(), 255 - Math.min(255, alpha)));
 
91
                    }
 
92
                }
 
93
                else {
 
94
                    startTime = t;
 
95
                }
 
96
                if (t > startTime + 2000) {
 
97
                    controller.stop();
 
98
                }
 
99
            }
 
100
            else {
 
101
                controller.stop();
 
102
            }
 
103
        }
 
104
    };
 
105
    
 
106
    /** Creates a new StatusLine */
 
107
    public StatusLine () {
 
108
    }
 
109
    
 
110
    public void addNotify() {
 
111
        super.addNotify();
 
112
        run();
 
113
        d.addChangeListener(this);
 
114
    }
 
115
    
 
116
    public void removeNotify() {
 
117
        super.removeNotify();
 
118
        d.removeChangeListener(this);
 
119
    }
 
120
    
 
121
    public void updateUI() {
 
122
        super.updateUI();
 
123
        Font f = UIManager.getFont ("controlFont"); //NOI18N
 
124
        if (f == null) {
 
125
            f = UIManager.getFont ("Tree.font"); //NOI18N
 
126
        }
 
127
        if (f != null) {
 
128
            setFont(f);
 
129
        }
 
130
    }
 
131
 
 
132
    public void stateChanged(ChangeEvent e) {
 
133
        if(SwingUtilities.isEventDispatchThread()) {
 
134
            run();
 
135
        } else {
 
136
            SwingUtilities.invokeLater (this);
 
137
        }
 
138
    }
 
139
    
 
140
    /** Called in event queue, should update the status text.
 
141
    */
 
142
    public void run () {
 
143
        String currentMsg = d.getStatusText ();
 
144
        setForeground(UIManager.getColor("Label.foreground"));
 
145
        setText (currentMsg);
 
146
        if (SURVIVING_TIME != 0) {
 
147
            Object token = new Object();
 
148
            clearing = token;
 
149
            if (!"".equals(currentMsg)) {
 
150
                new Updater(token).schedule();
 
151
            }
 
152
        }
 
153
    }
 
154
    
 
155
    /** #62967: Pref size so that status line is able to shrink as much as possible.
 
156
     */
 
157
    public Dimension getPreferredSize() {
 
158
        return new Dimension(100, 0);
 
159
    }
 
160
    
 
161
    /** #62967: Minimum size so that status line is able to shrink as much as possible.
 
162
     */
 
163
    public Dimension getMinimumSize() {
 
164
        return new Dimension(0, 0);
 
165
    }
 
166
 
 
167
}