diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-21 14:29:51 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-21 14:29:51 +0200 |
commit | 2f9e203058df442921fc0151ddc5fe9b68b87935 (patch) | |
tree | 5441025fcf4e974e82128f65376650bec7a941bb /src/ios.h | |
parent | b93ba1bfb860c2a4b5bf46c77f3f0d11b4eb1282 (diff) |
iOS: Save to Files; hide toolbar on scroll
There is no downloads directory on mobile. Instead, the downloaded file is temporarily cached and given to the iOS document picker to export.
Added an option to hide the bottom toolbar while scrolling down.
Diffstat (limited to 'src/ios.h')
-rw-r--r-- | src/ios.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -32,7 +32,9 @@ enum iHapticEffect { | |||
32 | 32 | ||
33 | void setupApplication_iOS (void); | 33 | void setupApplication_iOS (void); |
34 | void setupWindow_iOS (iWindow *window); | 34 | void setupWindow_iOS (iWindow *window); |
35 | iBool isPhone_iOS (void); | ||
36 | void safeAreaInsets_iOS (float *left, float *top, float *right, float *bottom); | ||
37 | iBool processEvent_iOS (const SDL_Event *); | 35 | iBool processEvent_iOS (const SDL_Event *); |
38 | void playHapticEffect_iOS (enum iHapticEffect effect); | 36 | void playHapticEffect_iOS (enum iHapticEffect effect); |
37 | void exportDownloadedFile_iOS(const iString *path); | ||
38 | |||
39 | iBool isPhone_iOS (void); | ||
40 | void safeAreaInsets_iOS (float *left, float *top, float *right, float *bottom); | ||