Searched refs:event_flags (Results 1 - 25 of 330) 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/chrome/browser/ui/app_list/
H A Dapp_context_menu_delegate.h13 virtual void ExecuteLaunchCommand(int event_flags) = 0;
/external/chromium_org/ui/app_list/views/
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 Dsearch_result_view_delegate.h16 int event_flags) = 0;
22 int event_flags) = 0;
H A Dfolder_header_view_delegate.h16 // |event_flags| contains the flags of the keyboard/mouse event that triggers
19 const ui::Event& 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.h41 virtual void Open(int event_flags) = 0;
44 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/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)) {
/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/ui/base/accelerators/
H A Dplatform_accelerator_gtk.cc14 int event_flags = 0; local
16 event_flags |= EF_SHIFT_DOWN;
18 event_flags |= EF_CONTROL_DOWN;
20 event_flags |= EF_ALT_DOWN;
21 return event_flags;
/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;
/external/chromium_org/chrome/browser/ui/app_list/search/people/
H A Dpeople_result.h27 virtual void Open(int event_flags) OVERRIDE;
28 virtual void InvokeAction(int action_index, int event_flags) OVERRIDE;
/external/chromium_org/chrome/browser/ui/views/accessibility/
H A Dinvert_bubble_view.cc44 virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE;
46 void OpenLink(const std::string& url, int event_flags);
133 void InvertBubbleView::LinkClicked(views::Link* source, int event_flags) { argument
135 OpenLink(kHighContrastExtensionUrl, event_flags);
137 OpenLink(kDarkThemeSearchUrl, event_flags);
139 OpenLink(kLearnMoreUrl, event_flags);
146 void InvertBubbleView::OpenLink(const std::string& url, int event_flags) { argument
148 ui::DispositionFromEventFlags(event_flags);
/external/qemu/telephony/
H A Dsysdeps.h39 typedef void (*SysChannelCallback)( void* opaque, int event_flags );
48 int event_flags,
/external/chromium_org/chrome/browser/ui/ash/app_list/
H A Dapp_list_controller_ash.cc71 int event_flags) {
75 event_flags);
84 int event_flags) {
88 event_flags);
67 ActivateApp( Profile* profile, const extensions::Extension* extension, AppListSource source, int event_flags) argument
80 LaunchApp( Profile* profile, const extensions::Extension* extension, AppListSource source, int event_flags) argument

Completed in 980 milliseconds

1234567891011>>