/external/chromium_org/ui/views/controls/menu/ |
H A D | menu_2.cc | 24 void Menu2::RunMenuAt(const gfx::Point& point, Alignment alignment) { function in class:views::Menu2 25 wrapper_->RunMenuAt(point, alignment); 29 RunMenuAt(point, ALIGN_TOPLEFT);
|
H A D | menu_runner_handler.h | 21 virtual MenuRunner::RunResult RunMenuAt(Widget* parent,
|
H A D | menu_2.h | 50 void RunMenuAt(const gfx::Point& point, Alignment alignment); 67 // Get the result of the last call to RunMenuAt to determine whether an
|
H A D | menu_wrapper.h | 27 // All of the possible actions that can result from RunMenuAt. 41 virtual void RunMenuAt(const gfx::Point& point, int alignment) = 0; 57 // Get the result of the last call to RunMenuAt to determine whether an
|
H A D | menu_runner.cc | 29 // Release() cancels the menu and when the nested RunMenuAt() call returns 43 MenuRunner::RunResult RunMenuAt(Widget* parent, 143 MenuRunner::RunResult MenuRunnerImpl::RunMenuAt( function in class:views::internal::MenuRunnerImpl 310 MenuRunner::RunResult MenuRunner::RunMenuAt(Widget* parent, function in class:views::MenuRunner 317 return runner_handler_->RunMenuAt(parent, button, bounds, anchor, 345 return holder_->RunMenuAt(parent, button, bounds, anchor, types);
|
H A D | menu_runner.h | 34 // owning the MenuItemView. RunMenuAt() runs a nested message loop. It is safe 44 // if RunMenuAt() returns MENU_DELETED, you should return immediately. 77 // Indicates RunMenuAt is returning because the MenuRunner was deleted. 80 // Indicates RunMenuAt returned and MenuRunner was not deleted. 103 RunResult RunMenuAt(Widget* parent, 122 // Sets an implementation of RunMenuAt. This is intended to be used at test. 129 // An implementation of RunMenuAt. This is usually NULL and ignored. If this
|
H A D | menu_win.h | 62 virtual void RunMenuAt(int x, int y) OVERRIDE;
|
H A D | native_menu_win.h | 36 virtual void RunMenuAt(const gfx::Point& point, int alignment) OVERRIDE; 136 // The action that took place during the call to RunMenuAt.
|
/external/chromium/chrome/browser/ui/views/ |
H A D | profile_menu_model.cc | 25 void ProfileMenuModel::RunMenuAt(const gfx::Point& point) { function in class:views::ProfileMenuModel 26 menu_->RunMenuAt(point, views::Menu2::ALIGN_TOPRIGHT);
|
H A D | profile_menu_model.h | 31 void RunMenuAt(const gfx::Point& point);
|
/external/chromium_org/ui/app_list/views/ |
H A D | app_list_menu_views.cc | 32 void AppListMenuViews::RunMenuAt(views::MenuButton* button, function in class:app_list::AppListMenuViews 34 ignore_result(menu_runner_->RunMenuAt(button->GetWidget(), button,
|
H A D | app_list_menu_views.h | 30 void RunMenuAt(views::MenuButton* button, const gfx::Point& point);
|
/external/chromium/chrome/browser/ui/views/tab_contents/ |
H A D | render_view_context_menu_views.h | 21 void RunMenuAt(int x, int y);
|
H A D | render_view_context_menu_views.cc | 28 void RenderViewContextMenuViews::RunMenuAt(int x, int y) { function in class:RenderViewContextMenuViews
|
/external/chromium_org/chrome/browser/ui/views/download/ |
H A D | download_shelf_context_menu_view.cc | 40 // The return value of RunMenuAt indicates whether the MenuRunner was deleted 44 if (menu_runner_->RunMenuAt(
|
/external/chromium/chrome/browser/ui/views/bookmarks/ |
H A D | bookmark_context_menu.cc | 39 void BookmarkContextMenu::RunMenuAt(const gfx::Point& point) { function in class:BookmarkContextMenu 47 menu_->RunMenuAt(parent_window_, NULL, gfx::Rect(point.x(), point.y(), 0, 0),
|
H A D | bookmark_context_menu.h | 38 void RunMenuAt(const gfx::Point& point);
|
H A D | bookmark_menu_controller_views.h | 63 void RunMenuAt(BookmarkBarView* bookmark_bar, bool for_drop); 66 void RunMenuAt(views::MenuButton* button,
|
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
H A D | bookmark_context_menu.cc | 63 void BookmarkContextMenu::RunMenuAt(const gfx::Point& point, function in class:BookmarkContextMenu 70 if (menu_runner_->RunMenuAt(
|
H A D | bookmark_context_menu.h | 48 void RunMenuAt(const gfx::Point& point,
|
/external/chromium/chrome/browser/chromeos/login/ |
H A D | keyboard_switch_menu.cc | 49 input_method_menu().RunMenuAt(new_pt, views::Menu2::ALIGN_TOPLEFT);
|
/external/chromium_org/chrome/browser/ui/views/tab_contents/ |
H A D | render_view_context_menu_views.h | 32 void RunMenuAt(views::Widget* parent,
|
H A D | render_view_context_menu_views.cc | 47 void RenderViewContextMenuViews::RunMenuAt(views::Widget* parent, function in class:RenderViewContextMenuViews 55 if (menu_runner_->RunMenuAt(parent, NULL, gfx::Rect(point, gfx::Size()),
|
/external/chromium/chrome/browser/ui/views/infobars/ |
H A D | after_translate_infobar.cc | 161 original_language_menu_->RunMenuAt(pt, views::Menu2::ALIGN_TOPRIGHT); 163 target_language_menu_->RunMenuAt(pt, views::Menu2::ALIGN_TOPRIGHT); 166 options_menu_->RunMenuAt(pt, views::Menu2::ALIGN_TOPRIGHT);
|
/external/chromium_org/chrome/browser/ui/views/infobars/ |
H A D | after_translate_infobar.cc | 174 RunMenuAt(original_language_menu_model_.get(), 177 RunMenuAt(target_language_menu_model_.get(), target_language_menu_button_, 181 RunMenuAt(options_menu_model_.get(), options_menu_button_,
|