summaryrefslogtreecommitdiff
path: root/src/ui/mobile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/mobile.c')
-rw-r--r--src/ui/mobile.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ui/mobile.c b/src/ui/mobile.c
index 08d8dba2..e34cad3a 100644
--- a/src/ui/mobile.c
+++ b/src/ui/mobile.c
@@ -37,6 +37,22 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
37# include "ios.h" 37# include "ios.h"
38#endif 38#endif
39 39
40const iToolbarActionSpec toolbarActions_Mobile[max_ToolbarAction] = {
41 { backArrow_Icon, "${menu.back}", "navigate.back" },
42 { forwardArrow_Icon, "${menu.forward}", "navigate.forward" },
43 { home_Icon, "${menu.home}", "navigate.home" },
44 { upArrow_Icon, "${menu.parent}", "navigate.parent" },
45 { reload_Icon, "${menu.reload}", "navigate.reload" },
46 { openTab_Icon, "${menu.newtab}", "tabs.new" },
47 { close_Icon, "${menu.closetab}", "tabs.close" },
48 { bookmark_Icon, "${menu.page.bookmark}", "bookmark.add" },
49 { globe_Icon, "${menu.page.translate}", "document.translate" },
50 { upload_Icon, "${menu.page.upload}", "document.upload" },
51 { edit_Icon, "${menu.page.upload.edit}", "document.upload copy:1" },
52 { magnifyingGlass_Icon, "${menu.find}", "focus.set id:find.input" },
53 { gear_Icon, "${menu.settings}", "preferences" },
54};
55
40iBool isUsingPanelLayout_Mobile(void) { 56iBool isUsingPanelLayout_Mobile(void) {
41 return deviceType_App() != desktop_AppDeviceType; 57 return deviceType_App() != desktop_AppDeviceType;
42} 58}