Searched refs:event_flags (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/views/
H A Devent_utils.cc14 WindowOpenDisposition DispositionFromEventFlags(int event_flags) { argument
16 (event_flags & ui::EF_MIDDLE_BUTTON_DOWN) != 0,
17 (event_flags & ui::EF_ALT_DOWN) != 0,
18 (event_flags & ui::EF_CONTROL_DOWN) != 0,
20 (event_flags & ui::EF_SHIFT_DOWN) != 0);
H A Devent_utils.h19 // event_flags are the flags as understood by views::MouseEvent.
20 WindowOpenDisposition DispositionFromEventFlags(int event_flags);
/external/chromium_org/ui/base/
H A Dwindow_open_disposition.cc31 WindowOpenDisposition DispositionFromEventFlags(int event_flags) { argument
33 (event_flags & ui::EF_MIDDLE_MOUSE_BUTTON) != 0,
34 (event_flags & ui::EF_ALT_DOWN) != 0,
35 (event_flags & ui::EF_CONTROL_DOWN) != 0,
36 (event_flags & ui::EF_COMMAND_DOWN) != 0,
37 (event_flags & ui::EF_SHIFT_DOWN) != 0);
H A Dwindow_open_disposition.h31 // event_flags are the flags as understood by ui::MouseEvent.
32 UI_EXPORT WindowOpenDisposition DispositionFromEventFlags(int event_flags);
/external/chromium_org/ui/base/events/
H A Devent_conversion_gtk.cc12 int event_flags = 0; local
14 event_flags |= EF_SHIFT_DOWN;
16 event_flags |= EF_CONTROL_DOWN;
18 event_flags |= EF_ALT_DOWN;
19 return event_flags;
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_context_menu_delegate.h13 virtual void ExecuteLaunchCommand(int event_flags) = 0;
H A Dchrome_app_list_item.h20 // Activates the item. |event_flags| holds flags of a mouse/keyboard event
22 virtual void Activate(int event_flags) = 0;
/external/chromium_org/ui/app_list/
H A Dsearch_result_list_view_delegate.h16 // Invoked to open given |result|. |event_flags| contains the flags of the
18 // the |event_flags| information to choose different ways to open the result.
20 int event_flags) = 0;
26 int event_flags) = 0;
H A Dapps_grid_view_delegate.h21 // Invoked when an item is activated on the grid view. |event_flags| contains
23 virtual void ActivateApp(AppListItemModel* item, int event_flags) = 0;
/external/chromium_org/ui/app_list/views/
H A Dsearch_result_view_delegate.h16 int event_flags) = 0;
22 int event_flags) = 0;
H A Dsearch_result_actions_view_delegate.h14 virtual void OnSearchResultActionActivated(size_t index, int event_flags) = 0;
/external/chromium_org/ui/views/controls/
H A Dlink_listener.h17 virtual void LinkClicked(Link* source, int event_flags) = 0;
H A Dstyled_label_listener.h20 int event_flags) = 0;
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dsearch_webstore_result.h25 virtual void Open(int event_flags) OVERRIDE;
26 virtual void InvokeAction(int action_index, int event_flags) OVERRIDE;
H A Dchrome_search_result.h39 virtual void Open(int event_flags) = 0;
42 virtual void InvokeAction(int action_index, int event_flags) = 0;
H A Dsearch_controller.h41 void OpenResult(SearchResult* result, int event_flags);
44 int event_flags);
/external/chromium_org/chrome/browser/ui/ash/app_list/
H A Dapp_list_controller_ash.cc56 Profile* profile, const extensions::Extension* extension, int event_flags) {
58 event_flags);
63 Profile* profile, const extensions::Extension* extension, int event_flags) {
65 event_flags);
55 ActivateApp( Profile* profile, const extensions::Extension* extension, int event_flags) argument
62 LaunchApp( Profile* profile, const extensions::Extension* extension, int event_flags) argument
H A Dapp_list_controller_ash.h29 int event_flags) OVERRIDE;
32 int event_flags) OVERRIDE;
/external/chromium_org/chrome/browser/ui/ash/launcher/
H A Dchrome_launcher_app_menu_item.cc27 void ChromeLauncherAppMenuItem::Execute(int event_flags) { argument
H A Dchrome_launcher_app_menu_item_browser.cc36 void ChromeLauncherAppMenuItemBrowser::Execute(int event_flags) { argument
38 if (event_flags & (ui::EF_SHIFT_DOWN | ui::EF_MIDDLE_MOUSE_BUTTON)) {
H A Dchrome_launcher_app_menu_item_tab.cc34 void ChromeLauncherAppMenuItemTab::Execute(int event_flags) { argument
43 if (event_flags & (ui::EF_SHIFT_DOWN | ui::EF_MIDDLE_MOUSE_BUTTON)) {
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_sync_promo_view.h25 int event_flags) OVERRIDE;
/external/chromium_org/ui/views/examples/
H A Dlink_example.cc29 void LinkExample::LinkClicked(Link* source, int event_flags) { argument
H A Dlink_example.h26 virtual void LinkClicked(Link* source, int event_flags) OVERRIDE;
/external/chromium_org/ash/wm/
H A Ddefault_window_resizer.h36 virtual void Drag(const gfx::Point& location, int event_flags) OVERRIDE;
37 virtual void CompleteDrag(int event_flags) OVERRIDE;

Completed in 418 milliseconds

1234567891011>>