summaryrefslogtreecommitdiff
path: root/src/app.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-05-12 14:10:55 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-05-12 14:10:55 +0300
commit06882d2014f56297295e32d353781db34078e8fe (patch)
tree54221ecaa42c3440ba1ac20216b040eb301951b6 /src/app.h
parent9f7a9058d3593d09a8fad9cd42b59f8a15873837 (diff)
parentbe76ad93ea6218f6f3b019a07ddc074e84d86969 (diff)
Merge branch 'dev' into work/typesetter
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);