diff options
author | tlatorre <tlatorre@uchicago.edu> | 2022-11-12 15:51:39 -0800 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2022-11-12 15:51:39 -0800 |
commit | 4f2ab073ce960e0457d4e22aeca85a8fa20b57c2 (patch) | |
tree | be3a11ce3b57cd3a4545a68c51303c2d067b946e /moji.c | |
parent | 40e812e3b429955221d2383fc705e24803dc5c5b (diff) | |
download | moji-4f2ab073ce960e0457d4e22aeca85a8fa20b57c2.tar.gz moji-4f2ab073ce960e0457d4e22aeca85a8fa20b57c2.tar.bz2 moji-4f2ab073ce960e0457d4e22aeca85a8fa20b57c2.zip |
add thought bubble
Diffstat (limited to 'moji.c')
-rw-r--r-- | moji.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,7 +16,6 @@ #include <sys/time.h> #include <stdlib.h> #include <gdk/gdkkeysyms.h> -#include <gdk/gdkenums.h> /* Time in milliseconds it takes to write a character, i.e. if you hold down * the mouse button for this many ms it will write the character and move on to @@ -43,6 +42,7 @@ GtkWidget *text_widget; GtkTextTag *tag; /* List of emojis. */ +#define THOUGHT_BALLOON "\xf0\x9f\x92\xad" #define STOP "\xf0\x9f\x9b\x91" #define THANK_YOU "\xf0\x9f\x99\x8f" #define UNAMUSED "\xf0\x9f\x98\x92" @@ -92,6 +92,7 @@ const char *emoji_array[] = { DROPLET, CHAIR, BED, + THOUGHT_BALLOON, //FOOD, LEFT_ARROW, CLEAR_SCREEN, |