summaryrefslogtreecommitdiff
path: root/src/app.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.h')
-rw-r--r--src/app.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app.h b/src/app.h
index 50d3ac6b..5968de0d 100644
--- a/src/app.h
+++ b/src/app.h
@@ -61,6 +61,7 @@ enum iUserEventCode {
61 command_UserEventCode = 1, 61 command_UserEventCode = 1,
62 refresh_UserEventCode, 62 refresh_UserEventCode,
63 asleep_UserEventCode, 63 asleep_UserEventCode,
64 periodic_UserEventCode,
64 /* The start of a potential touch tap event is notified via a custom event because 65 /* The start of a potential touch tap event is notified via a custom event because
65 sending SDL_MOUSEBUTTONDOWN would be premature: we don't know how long the tap will 66 sending SDL_MOUSEBUTTONDOWN would be premature: we don't know how long the tap will
66 take, it could turn into a tap-and-hold for example. */ 67 take, it could turn into a tap-and-hold for example. */
@@ -110,6 +111,8 @@ enum iColorTheme colorTheme_App (void);
110const iString * schemeProxy_App (iRangecc scheme); 111const iString * schemeProxy_App (iRangecc scheme);
111iBool willUseProxy_App (const iRangecc scheme); 112iBool willUseProxy_App (const iRangecc scheme);
112const iString * searchQueryUrl_App (const iString *queryStringUnescaped); 113const iString * searchQueryUrl_App (const iString *queryStringUnescaped);
114const iString * fileNameForUrl_App (const iString *url, const iString *mime);
115const iString * temporaryPathForUrl_App(const iString *url, const iString *mime); /* deleted before quitting */
113const iString * downloadPathForUrl_App(const iString *url, const iString *mime); 116const iString * downloadPathForUrl_App(const iString *url, const iString *mime);
114 117
115typedef void (*iTickerFunc)(iAny *); 118typedef void (*iTickerFunc)(iAny *);