diff options
| author | C. McEnroe | 2020-02-01 02:55:07 -0500 |
|---|---|---|
| committer | C. McEnroe | 2020-02-01 02:55:07 -0500 |
| commit | e289ff6b18e643eea4c72e04f7c0dc6ff768a335 (patch) | |
| tree | d8f515192ac7756ffb908b8171787d7f3924637b /chat.h | |
| parent | 03cb0d7c04d287ba95b26924620ece0855002ad5 (diff) | |
Add term stuff
Copied almost verbatim from existing catgirl... I think I did a better
job on that state machine this time tbh.
Diffstat (limited to 'chat.h')
| -rw-r--r-- | chat.h | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -91,6 +91,23 @@ void ircFormat(const char *format, ...) void handle(struct Message msg); +enum TermMode { + TermFocus, + TermPaste, +}; +enum TermEvent { + TermNone, + TermFocusIn, + TermFocusOut, + TermPasteStart, + TermPasteEnd, +}; +void termInit(void); +void termNoFlow(void); +void termTitle(const char *title); +void termMode(enum TermMode mode, bool set); +enum TermEvent termEvent(char ch); + #define BASE64_SIZE(len) (1 + ((len) + 2) / 3 * 4) static const char Base64[64] = { |
