1 #ifndef __smiletab_h
2 #define __smiletab_h
3 
4 //
5 // The smiletab is the arry of smiley's from which xmemory takes it's symbols.
6 // The characters will be turned by 90 degrees and written from top to bottom
7 // Only ASCII-characters are allowed as letters of the smileys.
8 // The special character '\r' can be used to toggle the writing mode to
9 // uppside down.
10 //
11 // By the way:
12 //    Have a look at the David Sanderson compilation of smileys,
13 //    published by O'Reilly & Associates, to get more than 650 smileys ...
14 //
15 
16 char *smiletab[]= {
17 ":-)",	// standard
18 ":-(",	// sad
19 ":-o",	// amazed
20 ":-]",	// sarcastic
21 ":-[",
22 ":-|",	// apathetic
23 //		":-||",	// angry
24 ":)",		// happy
25 ":-#",	// my lipps are sealed
26 ":-()",	// I stubbed my toe
27 ":-)8",	// man with bowtie
28 ":-.)",	// Madonna
29 ":-/",	// skeptical
30 ";-)", "\r;-)",	// winking
31 ";-(", "\r;-(",	// crying
32 "%-(", "\r%-(",	// confused
33 "%-)", "\r%-)",	// feeling better again
34 //		"%+{",	// lost a fight
35 //		"%*}",	// very drunk
36 "%-\\", "\r%-\\",	// hungover
37 "=|:-)",	// Abe Lincoln
38 "=):-)",	// Uncle Sam
39 "B-)",	// Batman
40 //		"8-o",	// shocked
41 "8)",		// frog
42 "8:)",	// pig
43 "8:]",	// gorilla
44 "8:-)",	// little girl
45 "8-]",
46 "!=(",	// black eye
47 "|:-)",	// with bushy eyebrows
48 "`:-)", "\r`:-)",	// with one eyebrow raised
49 "#-)",	// partied all night
50 "#:-)",	// matted hair
51 "#:-o",
52 "$-)", "\r$-)",	// yuppie
53 "&:-)",	// curly hair
54 "(:-\\",	// very sad
55 "(:-(",	// frowning
56 ")8-)",
57 "):-)",
58 "):-(",
59 "*8-)",		// Beaker (muppet lab assistant
60 "*<:-)",		// small santa
61 //		"-=#:-)",	// wizzard
62 //		"*<|:-))",	// santa claus
63 ".-(",	// always should wear safety glasses
64 "/:-|",	// Mr. Spock
65 "/;-)",	//has one big thick cockeyed eyebrow
66 "O-)",	// scuba diver
67 "O-(",	// with broken mask
68 "7:-)",	// Fred Flintstone
69 "3:]",	// pet smiley
70 ":->",	// sarcastic
71 ":-<",	// real sad
72 ">:-)",	// devil
73 ">:-<",	// mad
74 ">:->",	// devilish
75 "[:-)",	// listening to walkman
76 "Q:-)",	// new graduate
77 };
78 
79 #endif
80