The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <menu xmlns:android="http://schemas.android.com/apk/res/android"> |
| 18 | <group android:id="@+id/MAIN_MENU"> |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 19 | <item android:id="@+id/new_tab_menu_id" |
| 20 | android:title="@string/new_tab" |
Leon Scroggins | bbf5318 | 2009-09-25 13:28:15 -0400 | [diff] [blame] | 21 | android:icon="@drawable/ic_menu_new_window" |
Nicolas Roard | 91adfef | 2009-09-16 13:08:23 +0100 | [diff] [blame] | 22 | android:alphabeticShortcut="n" /> |
Leon Scroggins | b3a5bed | 2009-09-28 11:21:56 -0400 | [diff] [blame] | 23 | <item android:id="@+id/bookmarks_menu_id" |
| 24 | android:title="@string/bookmarks" |
| 25 | android:alphabeticShortcut="b" |
Michael Kolb | a418306 | 2011-01-16 10:43:21 -0800 | [diff] [blame^] | 26 | android:icon="@drawable/ic_bookmarks_holo_dark" /> |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 27 | <item android:id="@+id/active_tabs_menu_id" |
| 28 | android:title="@string/active_tabs" |
Michael Kolb | 5a72f18 | 2011-01-13 20:35:06 -0800 | [diff] [blame] | 29 | android:icon="@drawable/ic_windows_holo_dark" |
Nicolas Roard | 91adfef | 2009-09-16 13:08:23 +0100 | [diff] [blame] | 30 | android:alphabeticShortcut="t" /> |
Leon Scroggins | b3a5bed | 2009-09-28 11:21:56 -0400 | [diff] [blame] | 31 | <item android:id="@+id/stop_reload_menu_id" |
| 32 | android:alphabeticShortcut="r" /> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 33 | <item android:id="@+id/forward_menu_id" |
Nicolas Roard | 91adfef | 2009-09-16 13:08:23 +0100 | [diff] [blame] | 34 | android:title="@string/forward" |
Michael Kolb | 3470086 | 2010-09-15 15:06:08 -0700 | [diff] [blame] | 35 | android:icon="@*android:drawable/ic_menu_forward" /> |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 36 | <item android:id="@+id/add_bookmark_menu_id" |
| 37 | android:title="@string/save_to_bookmarks" |
Michael Kolb | 5a72f18 | 2011-01-13 20:35:06 -0800 | [diff] [blame] | 38 | android:icon="@drawable/ic_bookmark_on_holo_dark" |
Michael Kolb | a418306 | 2011-01-16 10:43:21 -0800 | [diff] [blame^] | 39 | android:alphabeticShortcut="d" /> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 40 | <item android:id="@+id/find_menu_id" |
Leon Scroggins | 4fc12cb | 2010-08-24 14:24:05 -0400 | [diff] [blame] | 41 | android:title="@*android:string/find_on_page" |
Michael Kolb | 3470086 | 2010-09-15 15:06:08 -0700 | [diff] [blame] | 42 | android:icon="@*android:drawable/ic_menu_find" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 43 | android:alphabeticShortcut="f" /> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 44 | <item android:id="@+id/share_page_menu_id" |
Nicolas Roard | 91adfef | 2009-09-16 13:08:23 +0100 | [diff] [blame] | 45 | android:title="@string/share_page" |
Michael Kolb | 5a72f18 | 2011-01-13 20:35:06 -0800 | [diff] [blame] | 46 | android:icon="@drawable/ic_share_holo_dark" |
Nicolas Roard | 91adfef | 2009-09-16 13:08:23 +0100 | [diff] [blame] | 47 | android:alphabeticShortcut="s" /> |
Michael Kolb | e0a3666 | 2010-06-29 10:37:12 -0700 | [diff] [blame] | 48 | <item android:id="@+id/page_info_menu_id" |
| 49 | android:title="@string/page_info" |
Michael Kolb | 5a72f18 | 2011-01-13 20:35:06 -0800 | [diff] [blame] | 50 | android:icon="@drawable/ic_pageinfo_holo_dark" |
Michael Kolb | e0a3666 | 2010-06-29 10:37:12 -0700 | [diff] [blame] | 51 | android:alphabeticShortcut="g" /> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 52 | <item android:id="@+id/view_downloads_menu_id" |
| 53 | android:title="@string/menu_view_download" |
Michael Kolb | 5a72f18 | 2011-01-13 20:35:06 -0800 | [diff] [blame] | 54 | android:icon="@drawable/ic_downloads_holo_dark" |
Michael Kolb | a418306 | 2011-01-16 10:43:21 -0800 | [diff] [blame^] | 55 | android:alphabeticShortcut="j" /> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 56 | <item android:id="@+id/preferences_menu_id" |
| 57 | android:title="@string/menu_preferences" |
Michael Kolb | 5a72f18 | 2011-01-13 20:35:06 -0800 | [diff] [blame] | 58 | android:icon="@drawable/ic_settings_holo_dark" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 59 | android:alphabeticShortcut="p" /> |
| 60 | <!-- followings are debug only --> |
| 61 | <item android:id="@+id/dump_nav_menu_id" |
| 62 | android:title="@string/dump_nav" |
| 63 | android:visible="false" /> |
Andrei Popescu | 7a8b88b | 2010-02-02 00:30:38 +0000 | [diff] [blame] | 64 | <item android:id="@+id/dump_counters_menu_id" |
| 65 | android:title="@string/dump_counters" |
| 66 | android:visible="false" /> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 67 | </group> |
| 68 | <group android:id="@+id/MAIN_SHORTCUT_MENU" android:visible="false"> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 69 | <item android:id="@+id/homepage_menu_id" |
| 70 | android:alphabeticShortcut=" " /> |
| 71 | <item android:id="@+id/classic_history_menu_id" |
| 72 | android:alphabeticShortcut="h" /> |
| 73 | <item android:id="@+id/zoom_in_menu_id" |
| 74 | android:alphabeticShortcut="i" /> |
| 75 | <item android:id="@+id/zoom_out_menu_id" |
| 76 | android:alphabeticShortcut="o" /> |
| 77 | <item android:id="@+id/window_one_menu_id" |
| 78 | android:alphabeticShortcut="1" /> |
| 79 | <item android:id="@+id/window_two_menu_id" |
| 80 | android:alphabeticShortcut="2" /> |
| 81 | <item android:id="@+id/window_three_menu_id" |
| 82 | android:alphabeticShortcut="3" /> |
| 83 | <item android:id="@+id/window_four_menu_id" |
| 84 | android:alphabeticShortcut="4" /> |
| 85 | <item android:id="@+id/window_five_menu_id" |
| 86 | android:alphabeticShortcut="5" /> |
| 87 | <item android:id="@+id/window_six_menu_id" |
| 88 | android:alphabeticShortcut="6" /> |
| 89 | <item android:id="@+id/window_seven_menu_id" |
| 90 | android:alphabeticShortcut="7" /> |
| 91 | <item android:id="@+id/window_eight_menu_id" |
| 92 | android:alphabeticShortcut="8" /> |
Michael Kolb | a418306 | 2011-01-16 10:43:21 -0800 | [diff] [blame^] | 93 | <item android:id="@+id/back_menu_id" /> |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 94 | <item android:id="@+id/goto_menu_id" |
Michael Kolb | e0a3666 | 2010-06-29 10:37:12 -0700 | [diff] [blame] | 95 | android:alphabeticShortcut="l" /> |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 96 | <item android:id="@+id/close_menu_id" |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 97 | android:alphabeticShortcut="w" /> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 98 | </group> |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 99 | <!-- these items are toggled in and out of @+id/stop_reload_menu_id --> |
| 100 | <item android:id="@+id/stop_menu_id" |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 101 | android:title="@string/stop" |
Michael Kolb | 3470086 | 2010-09-15 15:06:08 -0700 | [diff] [blame] | 102 | android:icon="@*android:drawable/ic_menu_stop" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 103 | android:visible="false" /> |
| 104 | <item android:id="@+id/reload_menu_id" |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 105 | android:title="@string/reload" |
Michael Kolb | 3470086 | 2010-09-15 15:06:08 -0700 | [diff] [blame] | 106 | android:icon="@*android:drawable/ic_menu_refresh" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 107 | android:visible="false" /> |
| 108 | </menu> |
| 109 | |