From 29a7aacc5273d70c94cef0b6077dde574d8e3a4a Mon Sep 17 00:00:00 2001 From: tlatorre Date: Sat, 12 Nov 2022 12:56:14 -0600 Subject: add more emoji --- vito.c | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/vito.c b/vito.c index 9b76c56..ee5c623 100644 --- a/vito.c +++ b/vito.c @@ -18,10 +18,17 @@ static void aeGetTime(long *seconds, long *milliseconds) GtkWidget *text_widget; GtkTextTag *tag; +#define ROLLING_EYES "\xf0\x9f\x99\x84" +#define OVERHEATED "\xf0\x9f\xa5\xb5" +#define FREEZING "\xf0\x9f\xa5\xb6" +#define NAUSEOUS "\xf0\x9f\xa4\xa2" +#define THINKING "\xf0\x9f\xa4\x94" +#define THUMBS_UP "\xf0\x9f\x91\x8d" +#define THUMBS_DOWN "\xf0\x9f\x91\x8e" #define LEFT_ARROW "\xe2\x86\x90" #define CLEAR_SCREEN "\xe2\x8e\x9a" #define SOUND "\xf0\x9f\x94\x8a" -#define DRINK "\xf0\x9f\x9a\xb0" +#define DROPLET "\xf0\x9f\x92\xa7" #define FOOD "\xf0\x9f\x8d\xb2" #define TIRED "\xf0\x9f\x98\xab" #define HAPPY "\xf0\x9f\x98\x80" @@ -29,11 +36,18 @@ GtkTextTag *tag; #define NEWLINE "\xe2\x86\xb5" const char *alphabet[] = { - DRINK, - FOOD, + THINKING, + THUMBS_UP, + THUMBS_DOWN, HAPPY, LAUGHING, TIRED, + FREEZING, + OVERHEATED, + NAUSEOUS, + ROLLING_EYES, + //DROPLET, + //FOOD, "a", "b", "c", -- cgit