HomeSort by relevance Sort by last modified time
    Searched full:menu (Results 101 - 125 of 1265) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Email/res/menu/
message_list_context.xml 17 <!-- This context menu is shown for message lists except in trash, outbox, or drafts -->
19 <menu xmlns:android="http://schemas.android.com/apk/res/android">
26 </menu>
message_list_context_drafts.xml 17 <!-- This context menu is shown for drafts message lists -->
19 <menu xmlns:android="http://schemas.android.com/apk/res/android">
22 </menu>
message_list_context_outbox.xml 17 <!-- This context menu is shown for outbox message lists -->
19 <menu xmlns:android="http://schemas.android.com/apk/res/android">
22 </menu>
message_list_context_trash.xml 17 <!-- This context menu is shown for trash message lists -->
19 <menu xmlns:android="http://schemas.android.com/apk/res/android">
22 </menu>
  /frameworks/policies/base/mid/com/android/internal/policy/impl/
MidWindow.java 19 import com.android.internal.view.menu.ContextMenuBuilder;
20 import com.android.internal.view.menu.MenuBuilder;
21 import com.android.internal.view.menu.MenuDialogHelper;
22 import com.android.internal.view.menu.MenuView;
23 import com.android.internal.view.menu.SubMenuBuilder;
55 import android.view.Menu;
90 * Simple callback used by the context menu and its submenus. The options
91 * menu submenus do not use this (their behavior is more complex).
307 * Prepares the panel to either be opened or chorded. This creates the Menu
332 // Init the panel state's menu--return false if init faile
779 final MenuBuilder menu = new MenuBuilder(getContext()); local
817 final MenuBuilder menu = (MenuBuilder)st.menu; local
2439 Menu menu; field in class:PanelFeatureState
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader5.java 27 import android.view.Menu;
116 // Add our initial menu options. We will tweak this menu when it's loaded swap out
119 public boolean onCreateOptionsMenu(Menu menu){
122 super.onCreateOptionsMenu(menu);
124 menu.add(0, 0, R.string.menu_option_start, null);
125 menu.add(0, 1, R.string.menu_option_stop, null);
126 menu.add(0, 2, R.string.menu_option_add, null);
127 menu.add(0, 3, R.string.menu_option_delete, null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuTreePage.java 17 package com.android.ide.eclipse.adt.internal.editors.menu;
28 * Page for the menu form editor.
51 form.setText("Android Menu");
58 "Menu Elements",
59 "List of all menu elements in this XML file.");
  /external/webkit/WebCore/platform/mac/
PopupMenuMac.mm 68 BOOL messagesEnabled = [[m_popup.get() menu] menuChangedMessagesEnabled];
69 [[m_popup.get() menu] setMenuChangedMessagesEnabled:NO];
80 [[m_popup.get() menu] addItem:[NSMenuItem separatorItem]];
106 [[m_popup.get() menu] setMenuChangedMessagesEnabled:messagesEnabled];
122 // Workaround for crazy bug where a selected index of -1 for a menu with only 1 item will cause a blank menu.
131 NSMenu* menu = [m_popup.get() menu];
136 // These values were borrowed from AppKit to match their placement of the menu.
166 page->chrome()->client()->willPopUpMenu(menu);
    [all...]
  /external/webkit/WebKit/win/
WebCoreLocalizedStrings.cpp 42 String WebCore::contextMenuItemTagOpenLinkInNewWindow() { return String(LPCTSTR_UI_STRING("Open Link in New Window", "Open in New Window context menu item")); }
43 String WebCore::contextMenuItemTagDownloadLinkToDisk() { return String(LPCTSTR_UI_STRING("Download Linked File", "Download Linked File context menu item")); }
44 String WebCore::contextMenuItemTagCopyLinkToClipboard() { return String(LPCTSTR_UI_STRING("Copy Link", "Copy Link context menu item")); }
45 String WebCore::contextMenuItemTagOpenImageInNewWindow() { return String(LPCTSTR_UI_STRING("Open Image in New Window", "Open Image in New Window context menu item")); }
46 String WebCore::contextMenuItemTagDownloadImageToDisk() { return String(LPCTSTR_UI_STRING("Download Image", "Download Image context menu item")); }
47 String WebCore::contextMenuItemTagCopyImageToClipboard() { return String(LPCTSTR_UI_STRING("Copy Image", "Copy Image context menu item")); }
48 String WebCore::contextMenuItemTagOpenFrameInNewWindow() { return String(LPCTSTR_UI_STRING("Open Frame in New Window", "Open Frame in New Window context menu item")); }
49 String WebCore::contextMenuItemTagCopy() { return String(LPCTSTR_UI_STRING("Copy", "Copy context menu item")); }
50 String WebCore::contextMenuItemTagGoBack() { return String(LPCTSTR_UI_STRING("Back", "Back context menu item")); }
51 String WebCore::contextMenuItemTagGoForward() { return String(LPCTSTR_UI_STRING("Forward", "Forward context menu item"));
    [all...]
  /external/webkit/WebCore/platform/haiku/
ContextMenuHaiku.cpp 36 #include <Menu.h>
46 ContextMenuReceiver(ContextMenu* menu)
48 , m_menu(menu)
59 printf("Error: Context menu item with code %i not found!\n", m_result);
117 void ContextMenu::setPlatformDescription(PlatformMenuDescription menu)
119 if (static_cast<BMenu*>(menu) == m_platformDescription)
123 m_platformDescription = static_cast<BMenu*>(menu);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 28 import android.view.Menu;
45 /** Menu ID for the command to clear the window. */
46 private static final int CLEAR_ID = Menu.FIRST;
47 /** Menu ID for the command to toggle fading. */
48 private static final int FADE_ID = Menu.FIRST+1;
72 @Override public boolean onCreateOptionsMenu(Menu menu) {
73 menu.add(0, CLEAR_ID, 0, "Clear");
74 menu.add(0, FADE_ID, 0, "Fade").setCheckable(true);
75 return super.onCreateOptionsMenu(menu);
    [all...]
  /packages/apps/AlarmClock/src/com/android/alarmclock/
AlarmClock.java 33 import android.view.Menu;
288 public boolean onCreateOptionsMenu(Menu menu) {
289 // Inflate our menu.
290 getMenuInflater().inflate(R.menu.main_menu, menu);
292 return super.onCreateOptionsMenu(menu);
296 public void onCreateContextMenu(ContextMenu menu, View view,
298 // Inflate the menu from xml.
299 getMenuInflater().inflate(R.menu.context_menu, menu)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 34 import android.view.Menu;
162 public boolean onCreateOptionsMenu(Menu menu) {
163 super.onCreateOptionsMenu(menu);
165 inflater.inflate(R.menu.history, menu);
170 public boolean onPrepareOptionsMenu(Menu menu) {
171 menu.findItem(R.id.clear_history_menu_id).setVisible(Browser.canClearHistory(this.getContentResolver()));
194 public void onCreateContextMenu(ContextMenu menu, View v
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
Notepadv2.java 24 import android.view.Menu;
36 private static final int INSERT_ID = Menu.FIRST;
37 private static final int DELETE_ID = Menu.FIRST + 1;
71 public boolean onCreateOptionsMenu(Menu menu) {
72 super.onCreateOptionsMenu(menu);
73 menu.add(0, INSERT_ID, 0, R.string.menu_insert);
89 public void onCreateContextMenu(ContextMenu menu, View v,
91 super.onCreateContextMenu(menu, v, menuInfo);
92 menu.add(0, DELETE_ID, 0, R.string.menu_delete)
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
Notepadv3.java 24 import android.view.Menu;
36 private static final int INSERT_ID = Menu.FIRST;
37 private static final int DELETE_ID = Menu.FIRST + 1;
71 public boolean onCreateOptionsMenu(Menu menu) {
72 super.onCreateOptionsMenu(menu);
73 menu.add(0, INSERT_ID, 0, R.string.menu_insert);
89 public void onCreateContextMenu(ContextMenu menu, View v,
91 super.onCreateContextMenu(menu, v, menuInfo);
92 menu.add(0, DELETE_ID, 0, R.string.menu_delete)
    [all...]
  /external/webkit/WebKit/mac/DefaultDelegates/
WebDefaultContextMenuDelegate.mm 67 title = UI_STRING("Copy", "Copy context menu item");
71 title = UI_STRING("Back", "Back context menu item");
75 title = UI_STRING("Forward", "Forward context menu item");
79 title = UI_STRING("Stop", "Stop context menu item");
83 title = UI_STRING("Reload", "Reload context menu item");
87 title = UI_STRING("Search in Spotlight", "Search in Spotlight context menu item");
91 title = UI_STRING("Search in Google", "Search in Google context menu item");
95 title = UI_STRING("Look Up in Dictionary", "Look Up in Dictionary context menu item");
99 title = UI_STRING("Open Frame in New Window", "Open Frame in New Window context menu item");
150 // be better not to include it in the menu if the documentView isn't a WebHTMLView, but that could break
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferHistory.java 47 import android.view.Menu;
129 public boolean onCreateOptionsMenu(Menu menu) {
132 inflater.inflate(R.menu.transferhistory, menu);
138 public boolean onPrepareOptionsMenu(Menu menu) {
140 menu.findItem(R.id.transfer_menu_clear_all).setEnabled(showClear);
141 return super.onPrepareOptionsMenu(menu);
174 public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ZoneList.java 26 import android.view.Menu;
64 private static final int MENU_TIMEZONE = Menu.FIRST+1;
65 private static final int MENU_ALPHABETICAL = Menu.FIRST;
112 public boolean onCreateOptionsMenu(Menu menu) {
113 menu.add(0, MENU_ALPHABETICAL, 0, R.string.zone_list_menu_sort_alphabetically)
115 menu.add(0, MENU_TIMEZONE, 0, R.string.zone_list_menu_sort_by_timezone)
122 public boolean onPrepareOptionsMenu(Menu menu) {
125 menu.findItem(MENU_TIMEZONE).setVisible(false)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
MenuHelper.java 40 import android.view.Menu;
59 * A utility class to handle various kinds of menu operations.
106 public void gettingReadyToOpen(Menu menu, IImage image);
166 public static void enableShareMenuItem(Menu menu, boolean enabled) {
167 MenuItem item = menu.findItem(MENU_IMAGE_SHARE);
181 public static void enableShowOnMapMenuItem(Menu menu, boolean enabled) {
182 MenuItem item = menu.findItem(MENU_IMAGE_SHOWMAP)
    [all...]
  /frameworks/base/awt/java/awt/
MenuComponent.java 36 * The MenuComponent abstract class is the superclass for menu components. Menu
172 * Pop-up box for menu. It transfers the paint events, keyboard and mouse
173 * events to the menu component itself.
186 * mouse and keyboard // when sub-menu drops down due to keyboard navigation
241 * Gets the parent menu container.
415 * Processes an AWTEevent on this menu component.
496 * Recursively find the menu item for a menu shortcut.
500 * @return the menu item; or null if the item is not available for thi
    [all...]
  /packages/apps/IM/src/com/android/im/app/
NewChatActivity.java 45 import android.view.Menu;
146 public boolean onCreateOptionsMenu(Menu menu) {
148 inflater.inflate(R.menu.chat_screen_menu, menu);
152 menu.findItem(R.id.menu_view_friend_list).setTitle(
154 menu.findItem(R.id.menu_switch_chats).setTitle(
156 menu.findItem(R.id.menu_insert_smiley).setTitle(
158 menu.findItem(R.id.menu_end_conversation).setTitle(
160 menu.findItem(R.id.menu_view_profile).setTitle
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
Debug.java 29 import android.view.Menu;
113 public boolean onCreateOptionsMenu(Menu menu) {
114 super.onCreateOptionsMenu(menu);
115 getMenuInflater().inflate(R.menu.debug_option, menu);
  /development/simulator/app/
Resource.h 10 * IDs for dialogs, controls, menu items, and whatever else comes along.
19 // Menu item IDs
30 // leave space; each phone model gets a menu item ID
  /device/htc/dream/
trout-keypad-qwertz.kl 17 key 229 MENU WAKE_DROPPED
18 key 59 MENU WAKE_DROPPED
19 key 139 MENU WAKE_DROPPED
trout-keypad-v2.kl 17 key 229 MENU WAKE_DROPPED
18 key 59 MENU WAKE_DROPPED
19 key 139 MENU WAKE_DROPPED

Completed in 387 milliseconds

1 2 3 45 6 7 8 91011>>