📄 messagelist.java
字号:
/* * Copyright (c) 2006, Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $Id: MessageList.java,v 1.3 2007/04/02 15:45:44 nifi Exp $ * * ----------------------------------------------------------------- * * Author : Adam Dunkels, Joakim Eriksson, Niclas Finne, Fredrik Osterlind * Created : 2006-06-14 * Updated : $Date: 2007/04/02 15:45:44 $ * $Revision: 1.3 $ */package se.sics.cooja.dialogs;import java.awt.Color;import java.awt.Component;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.io.PipedInputStream;import java.io.PipedOutputStream;import java.io.PrintStream;import javax.swing.DefaultListCellRenderer;import javax.swing.DefaultListModel;import javax.swing.JList;import javax.swing.ListModel;import javax.swing.ListSelectionModel;import javax.swing.SwingUtilities;public class MessageList extends JList { public static final int NORMAL = 0; public static final int WARNING = 1; public static final int ERROR = 2; private Color[] foregrounds = new Color[] { null, Color.red }; private Color[] backgrounds = new Color[] { null, null }; public MessageList() { super.setModel(new DefaultListModel()); setCellRenderer(new MessageRenderer()); setSelectionMode(ListSelectionModel.SINGLE_SELECTION); } public Color getForeground(int type) { Color c = type > 0 && type <= foregrounds.length ? foregrounds[type - 1] : null; return c == null ? getForeground() : c; } public void setForeground(int type, Color color) { if (type > 0 && type <= foregrounds.length) { foregrounds[type - 1] = color; } else if (type == NORMAL) { setForeground(color); } } public Color getBackground(int type) { Color c = type > 0 && type <= backgrounds.length ? backgrounds[type - 1] : null; return c == null ? getBackground() : c; } public void setBackground(int type, Color color) { if (type > 0 && type <= backgrounds.length) { backgrounds[type - 1] = color; } else if (type == NORMAL) { setBackground(color); } } public PrintStream getInputStream(final int type) { try { PipedInputStream input = new PipedInputStream(); PipedOutputStream output = new PipedOutputStream(input); final BufferedReader stringInput = new BufferedReader(new InputStreamReader(input)); Thread readThread = new Thread(new Runnable() { public void run() { String readLine; try { while ((readLine = stringInput.readLine()) != null) { final String line = readLine; SwingUtilities.invokeLater(new Runnable() { public void run() { addMessage(line, type); } }); } } catch (IOException e) { // Occurs when write end closes pipe - die quietly } } }); readThread.start(); return new PrintStream(output); } catch (Exception e) { System.out.println("Exception: "+ e); return null; } } public void addMessage(String message) { addMessage(message, NORMAL); } public void addMessage(String message, int type) { MessageContainer msg = new MessageContainer(message, type); ((DefaultListModel) getModel()).addElement(msg); ensureIndexIsVisible(getModel().getSize() - 1); } public void clearMessages() { ((DefaultListModel) getModel()).clear(); } public void setModel(ListModel model) { throw new IllegalArgumentException("changing model not permitted"); } // ------------------------------------------------------------------- // MessageContainer // ------------------------------------------------------------------- private static class MessageContainer { public final int type; public final String message; public MessageContainer(String message, int type) { this.message = message; this.type = type; } public String toString() { return message; } } // end of inner class MessageContainer // ------------------------------------------------------------------- // Renderer for messages // ------------------------------------------------------------------- private static class MessageRenderer extends DefaultListCellRenderer { public Component getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus); MessageContainer msg = (MessageContainer) value; setForeground(((MessageList) list).getForeground(msg.type)); setBackground(((MessageList) list).getBackground(msg.type)); return this; } } // end of inner class MessageRenderer} // end of MessagList
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -