2010-03-06 11:16:35 -05:00
|
|
|
/*
|
|
|
|
Yaaic - Yet Another Android IRC Client
|
|
|
|
|
|
|
|
Copyright 2009 Sebastian Kaspari
|
|
|
|
|
|
|
|
This file is part of Yaaic.
|
|
|
|
|
|
|
|
Yaaic is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Yaaic is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
package org.yaaic.model;
|
|
|
|
|
2010-03-06 12:58:27 -05:00
|
|
|
import android.content.Context;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.text.Spannable;
|
2010-03-06 11:52:22 -05:00
|
|
|
import android.text.SpannableString;
|
2010-03-06 12:58:27 -05:00
|
|
|
import android.text.style.ImageSpan;
|
2010-03-06 11:52:22 -05:00
|
|
|
|
2010-03-06 11:16:35 -05:00
|
|
|
/**
|
|
|
|
* A channel or server message
|
|
|
|
*
|
|
|
|
* @author Sebastian Kaspari <sebastian@yaaic.org>
|
|
|
|
*/
|
|
|
|
public class Message {
|
|
|
|
private int icon;
|
|
|
|
private String text;
|
2010-03-06 12:58:27 -05:00
|
|
|
private SpannableString canvas;
|
2010-03-06 11:16:35 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new message without an icon
|
|
|
|
*
|
|
|
|
* @param text
|
|
|
|
*/
|
|
|
|
public Message(String text)
|
|
|
|
{
|
|
|
|
this.text = text;
|
|
|
|
this.icon = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-03-06 12:58:27 -05:00
|
|
|
* Set the message's icon
|
2010-03-06 11:16:35 -05:00
|
|
|
*/
|
2010-03-06 12:58:27 -05:00
|
|
|
public void setIcon(int icon)
|
2010-03-06 11:16:35 -05:00
|
|
|
{
|
|
|
|
this.icon = icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the message's icon
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public int getIcon()
|
|
|
|
{
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Does this message have an icon?
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public boolean hasIcon()
|
|
|
|
{
|
|
|
|
return icon != -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the text of this message
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public String getText()
|
|
|
|
{
|
|
|
|
return text;
|
|
|
|
}
|
2010-03-06 11:52:22 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Render message as spannable string
|
2010-03-06 12:58:27 -05:00
|
|
|
*
|
|
|
|
* @return
|
2010-03-06 11:52:22 -05:00
|
|
|
*/
|
2010-03-06 12:58:27 -05:00
|
|
|
public SpannableString render(Context context)
|
2010-03-06 11:52:22 -05:00
|
|
|
{
|
2010-03-06 12:58:27 -05:00
|
|
|
if (canvas == null) {
|
2010-03-06 14:37:58 -05:00
|
|
|
String prefix = hasIcon() ? "\n " : "\n";
|
2010-03-06 14:32:49 -05:00
|
|
|
canvas = new SpannableString(prefix + text);
|
2010-03-06 11:52:22 -05:00
|
|
|
if (hasIcon()) {
|
2010-03-06 12:58:27 -05:00
|
|
|
Drawable drawable = context.getResources().getDrawable(icon);
|
2010-03-06 13:31:24 -05:00
|
|
|
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
|
2010-03-06 13:20:17 -05:00
|
|
|
canvas.setSpan(new ImageSpan(drawable, ImageSpan.ALIGN_BOTTOM), 1, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
|
2010-03-06 11:52:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-06 12:58:27 -05:00
|
|
|
return canvas;
|
2010-03-06 11:52:22 -05:00
|
|
|
}
|
2010-03-06 11:16:35 -05:00
|
|
|
}
|