summaryrefslogtreecommitdiff
path: root/src/app.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-05-11 18:14:33 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-05-11 18:14:33 +0300
commit15c5ab9ec7563fb6fcb49657e075729c18461c3b (patch)
treeac203b1966879f9793055f11d86967f49ff6256e /src/app.h
parenta13543aa922647ea2f8cc40cb9f3f797df8758df (diff)
InputWidget: Word wrapping, inserting newlines
Diffstat (limited to 'src/app.h')
-rw-r--r--src/app.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/app.h b/src/app.h
index c8f0f1c2..aa647bfb 100644
--- a/src/app.h
+++ b/src/app.h
@@ -57,14 +57,15 @@ enum iAppEventMode {
57 57
58enum iUserEventCode { 58enum iUserEventCode {
59 command_UserEventCode = 1, 59 command_UserEventCode = 1,
60 refresh_UserEventCode = 2, 60 refresh_UserEventCode,
61 asleep_UserEventCode = 3, 61 arrange_UserEventCode,
62 asleep_UserEventCode,
62 /* The start of a potential touch tap event is notified via a custom event because 63 /* The start of a potential touch tap event is notified via a custom event because
63 sending SDL_MOUSEBUTTONDOWN would be premature: we don't know how long the tap will 64 sending SDL_MOUSEBUTTONDOWN would be premature: we don't know how long the tap will
64 take, it could turn into a tap-and-hold for example. */ 65 take, it could turn into a tap-and-hold for example. */
65 widgetTapBegins_UserEventCode = 4, 66 widgetTapBegins_UserEventCode,
66 widgetTouchEnds_UserEventCode = 5, /* finger lifted, but momentum may continue */ 67 widgetTouchEnds_UserEventCode, /* finger lifted, but momentum may continue */
67 immediateRefresh_UserEventCode = 6, /* refresh even though more events are pending */ 68 immediateRefresh_UserEventCode, /* refresh even though more events are pending */
68}; 69};
69 70
70const iString *execPath_App (void); 71const iString *execPath_App (void);