mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-22 08:52:18 -05:00
Implemented onNotice() event
This commit is contained in:
parent
6d8cbb6ff4
commit
dda143186b
BIN
res/drawable/info.png
Normal file
BIN
res/drawable/info.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 532 B |
@ -37,6 +37,7 @@ import org.yaaic.model.Conversation;
|
||||
import org.yaaic.model.Message;
|
||||
import org.yaaic.model.Query;
|
||||
import org.yaaic.model.Server;
|
||||
import org.yaaic.model.ServerInfo;
|
||||
import org.yaaic.model.Status;
|
||||
|
||||
public class IRCConnection extends PircBot
|
||||
@ -313,7 +314,22 @@ public class IRCConnection extends PircBot
|
||||
// Strip mIRC colors and formatting
|
||||
notice = Colors.removeFormattingAndColors(notice);
|
||||
|
||||
// XXX: Where should notices be shown? Current window? All windows? Server window?
|
||||
// Post notice to currently selected conversation
|
||||
Conversation conversation = server.getConversation(server.getSelectedConversation());
|
||||
|
||||
if (conversation == null) {
|
||||
// Fallback: Use ServerInfo view
|
||||
conversation = server.getConversation(ServerInfo.DEFAULT_NAME);
|
||||
}
|
||||
|
||||
Message message = new Message("-" + sourceNick + "- " + notice);
|
||||
message.setIcon(R.drawable.info);
|
||||
conversation.addMessage(message);
|
||||
|
||||
Intent intent = new Intent(Broadcast.CHANNEL_MESSAGE);
|
||||
intent.putExtra(Broadcast.EXTRA_SERVER, server.getId());
|
||||
intent.putExtra(Broadcast.EXTRA_CHANNEL, conversation.getName());
|
||||
service.sendBroadcast(intent);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user