Creates a new instance of MessageItem
(Msg msg, boolean showSmiles)
| 55 | |
| 56 | /** Creates a new instance of MessageItem */ |
| 57 | public MessageItem(Msg msg, boolean showSmiles) { |
| 58 | msgLines = new Vector(); |
| 59 | this.msg=msg; |
| 60 | this.smiles=showSmiles; |
| 61 | //this.font=FontCache.getFont(false, FontCache.msg); |
| 62 | partialParse = msg.itemCollapsed; |
| 63 | parse(); |
| 64 | } |
| 65 | |
| 66 | public int getVHeight() { |
| 67 | if (msg==null) return 0; |