0

这是我用来添加(一般)、(耳语)、(公会)或(全局)类型消息的“协议语法”

// add the message in list box
ChatJInternalFrame.modelChatList.addElement("(general)" + characterName + ": " + chatMessage);

这是我设置列表的模型和单元格渲染器的地方:

modelChatList = new DefaultListModel<String>();
listForChat = new JList<String>(modelChatList);
listForChat.setFont(new Font("Lucida Console", Font.PLAIN, 14));
listForChat.setCellRenderer(new ColoredChatListRenderer());

这是我的自定义 cellRenderer:

public class ColoredChatListRenderer extends DefaultListCellRenderer {

    @Override
    public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {

        super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);  

        String s = String.valueOf(value);
        String splitPipe[] = s.split("\\)");        

        if(s.length() > 7 && s.substring(0, 8).equals("~SERVER~")){
            setForeground(Color.red);
        } else if (splitPipe[1].length() > 11 && (splitPipe[1].substring(0,12).equals("DEV Proskier") || splitPipe[1].substring(0,11).equals("DEV Sparkle"))){
            setForeground(Color.orange);
        } else {
            if (splitPipe[0].equals("(general")){
                setForeground(Color.black);
            } else if (splitPipe[0].equals("(whisper")){
                setForeground(Color.magenta);
            } else if (splitPipe[0].equals("(guild")){
                setForeground(Color.blue);
            } else if (splitPipe[0].equals("(global")){
                setForeground(Color.pink);
            }
        }
        return(this);
    }
}

聊天模式

现在这很好用,但是我想我不希望聊天中出现类型(一般)、(耳语)等,只是颜色变化。抱歉,如果这是一个真正简单的问题,我的大脑会因为在聊天窗口上工作而受到我用来切换聊天模式的焦点遍历废话的伤害。

有没有一些简单的方法可以做到这一点???就像只是切断前几个字符的子字符串一样,我可以使模式长度相同......又名(GEN),(GLO),(GUI),(WHI)

****编辑****

感谢您的帮助,但这对我来说是最简单的解决方案。请让我知道这是否在某些方面不好。

    if (splitPipe[0].equals("(general")){
        setText(splitPipe[1]);
        setForeground(Color.black);
    } else if (splitPipe[0].equals("(whisper")){
        setText(splitPipe[1]);
        setForeground(Color.magenta);
    } else if (splitPipe[0].equals("(guild")){
        setText(splitPipe[1]);
        setForeground(Color.blue);
    } else if (splitPipe[0].equals("(global")){
        setText(splitPipe[1]);
        setForeground(Color.pink);
    }
4

1 回答 1

2

创建一个包含两条数据的自定义对象,消息类型和消息文本。将对象添加到 ListModel。然后,您的渲染器可以检查类型以突出显示目的,并将文本用于显示目的。

请参阅:Java:Swing JComboBox,是否可以为列表中的每个项目隐藏数据?有关此方法的示例。该示例使用组合框,但概念相同。

于 2013-02-03T03:36:49.000 回答