summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoSmileyElement.java
blob: 4e79f4d744d52dc0d88c45ddf62aa6102e8673ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package org.madore.damlengine;

import org.w3c.dom.*;

public final class TodoSmileyElement extends TodoDefaultElement {

    public enum Type {
	// Originally :-)
	SMILE("smile", "\u263A\uFE0F", "Smile", "Sourire"), 
	// Originally ;-)
	WINK("wink", new String(Character.toChars(0x1F609)), "Wink", "Clin d'\u0153il"), 
	// Originally :-o
	SURPRISED("surprised", new String(Character.toChars(0x1F632)), "Surprised", "Surpris"), 
	// Originally :-(
	SAD("sad", "\u2639\uFE0F", "Sad", "Triste"), 
	// Originally 8-)
	COOL("cool", new String(Character.toChars(0x1F60E)), "Cool", "Cool"), 
	// Originally :-D
	BIGGRIN("biggrin", new String(Character.toChars(0x1F601)), "Big grin", "Grand sourire"), 
	// Originally :-S
	CONFUSED("confused", new String(Character.toChars(0x1F615)), "Confused", "Embrouill\u00e9"), 
	// Originally %-)
	CRAZY("crazy", new String(Character.toChars(0x1F92A)), "Crazy", "Fou"), 
	// Originally :-|
	NEUTRAL("neutral", new String(Character.toChars(0x1F610)), "Non-grin", "Sans sourire"), 
	// Formerly "twisted", originally 8-> now thought of as >:-)
	EVILGRIN("evilgrin", new String(Character.toChars(0x1F608)), "Evil grin", "Sourire mauvais"), 
	// Originally \u00A6-(
	CRY("cry", new String(Character.toChars(0x1F622)), "Crying", "Pleure"), 
	// Originally >:-(
	EVIL("evil", new String(Character.toChars(0x1F47F)), "Evil", "Mauvais");
	final String emotion;
	final String altText;
	final String enName;
	final String frName;
	Type(String emotion, String altText,
	     String enName, String frName) {
	    this.emotion = emotion;
	    this.altText = altText;
	    this.enName = enName;
	    this.frName = frName;
	}
    }

    public static class Factory extends TodoElement.Factory {
	final Type t;
	public Factory(Type t) {
	    super();
	    this.t = t;
	}
	@Override
	public TodoSmileyElement newItem(Element node,
					 Context ctx,
					 TodoItem caller) {
	    return new TodoSmileyElement(t, node, ctx, caller);
	}
    }

    final Type t;

    public TodoSmileyElement(Type t,
			     Element node,
			     Context ctx,
			     TodoItem caller) {
	super(node, ctx, caller);
	this.t = t;
    }

    @Override
    public void handleNodeOnly() {
	String lang = LangHelper.getLangRec(node);
	Element img = ctx.doc.createElementNS(DamlEngine.XHTML_NS, "img");
	img.setAttributeNS(null, "src",
			   "data:image/png;base64,"
			   + Base64.encode(DamlEngine.class.getResourceAsStream("images/smileys/"+t.emotion+".png")));
	img.setAttributeNS(null, "class",
			   "smiley");
	img.setAttributeNS(null, "alt", t.altText);
	img.setAttributeNS(null, "height", "15");
	img.setAttributeNS(null, "width", "15");
	if ( lang != null && lang.equals("en") )
	    img.setAttributeNS(null, "title", t.enName);
	else if ( lang != null && lang.equals("fr") )
	    img.setAttributeNS(null, "title", t.frName);
	node.getParentNode().replaceChild(img, node);
    }

}