HomeSort by relevance Sort by last modified time
    Searched full:onmousewheel (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/ui/views/controls/menu/
menu_host_root_view.cc 53 bool MenuHostRootView::OnMouseWheel(const ui::MouseWheelEvent& event) {
58 GetMenuController()->OnMouseWheel(submenu_, event);
62 // RootView::OnMouseWheel forwards to the focused view. We don't have a
64 return submenu_->OnMouseWheel(event);
menu_host_root_view.h 32 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
  /build/tools/droiddoc/templates-ds/assets/scroller/
jquery.mousewheel.min.js 12 (function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)
  /external/chromium_org/ui/views/controls/scrollbar/
native_scroll_bar.cc 87 bool NativeScrollBar::OnMouseWheel(const ui::MouseWheelEvent& event) {
90 return native_wrapper_->GetView()->OnMouseWheel(event);
native_scroll_bar.h 51 virtual bool OnMouseWheel(const ui::MouseWheelEvent& e) OVERRIDE;
base_scroll_bar.h 75 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
  /external/chromium_org/ui/app_list/views/
contents_view.h 65 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
search_box_view.h 56 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
search_box_view.cc 126 bool SearchBoxView::OnMouseWheel(const ui::MouseWheelEvent& event) {
128 return contents_view_->OnMouseWheel(event);
contents_view.cc 177 bool ContentsView::OnMouseWheel(const ui::MouseWheelEvent& event) {
  /external/chromium_org/ui/message_center/views/
notifier_settings_view.h 60 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
message_center_view.h 67 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
notifier_settings_view.cc 497 bool NotifierSettingsView::OnMouseWheel(const ui::MouseWheelEvent& event) {
498 return scroller_->OnMouseWheel(event);
  /external/chromium_org/ash/wm/
partial_screenshot_view.h 59 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAttributeNames.in 219 onmousewheel
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementInstance.idl 59 [NotEnumerable] attribute EventHandler onmousewheel;
  /external/chromium_org/chrome/browser/resources/uber/
uber_frame.js 28 document.documentElement.addEventListener('mousewheel', onMouseWheel);
121 function onMouseWheel(e) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginScrollbarImpl.h 93 bool onMouseWheel(const WebInputEvent&);
WebPluginScrollbarImpl.cpp 251 return onMouseWheel(event);
325 bool WebPluginScrollbarImpl::onMouseWheel(const WebInputEvent& event)
  /external/chromium_org/ash/launcher/
overflow_bubble.cc 73 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event) OVERRIDE;
175 bool OverflowBubbleView::OnMouseWheel(const ui::MouseWheelEvent& event) {
  /external/chromium_org/tools/trace/
trace.html 258 window.onmousewheel = document.onmousewheel = change_scale;
  /external/chromium_org/chrome/tools/tracing/
trace.html 365 window.onmousewheel = document.onmousewheel = change_scale;
  /external/chromium_org/third_party/flot/
jquery.flot.navigate.min.js 1 (function(i){i.fn.drag=function(j,k,l){if(k){this.bind("dragstart",j)}if(l){this.bind("dragend",l)}return !j?this.trigger("drag"):this.bind("drag",k?k:j)};var d=i.event,c=d.special,h=c.drag={not:":input",distance:0,which:1,dragging:false,setup:function(j){j=i.extend({distance:h.distance,which:h.which,not:h.not},j||{});j.distance=e(j.distance);d.add(this,"mousedown",f,j);if(this.attachEvent){this.attachEvent("ondragstart",a)}},teardown:function(){d.remove(this,"mousedown",f);if(this===h.dragging){h.dragging=h.proxy=false}g(this,true);if(this.detachEvent){this.detachEvent("ondragstart",a)}}};c.dragstart=c.dragend={setup:function(){},teardown:function(){}};function f(j){var k=this,l,m=j.data||{};if(m.elem){k=j.dragTarget=m.elem;j.dragProxy=h.proxy||k;j.cursorOffsetX=m.pageX-m.left;j.cursorOffsetY=m.pageY-m.top;j.offsetX=j.pageX-j.cursorOffsetX;j.offsetY=j.pageY-j.cursorOffsetY}else{if(h.dragging||(m.which>0&&j.which!=m.which)||i(j.target).is(m.not)){return}}switch(j.type){case"mousedown":i.extend(m,i(k).offset(),{elem:k,target:j.target,pageX:j.pageX,pageY:j.pageY});d.add(document,"mousemove mouseup",f,m);g(k,false);h.dragging=null;return false;case !h.dragging&&"mousemove":if(e(j.pageX-m.pageX)+e(j.pageY-m.pageY)<m.distance){break}j.target=m.target;l=b(j,"dragstart",k);if(l!==false){h.dragging=k;h.proxy=j.dragProxy=i(l||k)[0]}case"mousemove":if(h.dragging){l=b(j,"drag",k);if(c.drop){c.drop.allowed=(l!==false);c.drop.handler(j)}if(l!==false){break}j.type="mouseup"}case"mouseup":d.remove(document,"mousemove mouseup",f);if(h.dragging){if(c.drop){c.drop.handler(j)}b(j,"dragend",k)}g(k,true);h.dragging=h.proxy=m.elem=false;break}return true}function b(m,k,j){m.type=k;var l=i.event.handle.call(j,m);return l===false?false:l||m.result}function e(j){return Math.pow(j,2)}function a(){return(h.dragging===false)}function g(j,k){if(!j){return}j.unselectable=k?"off":"on";j.onselectstart=function(){return k};if(j.style){j.style.MozUserSelect=k?"":"none"}}})(jQuery);(function(f){var e=["DOMMouseScroll","mousewheel"];f.event.special.mousewheel={setup:function(){if(this.addEventListener){for(var a=e.length;a;){this.addEventListener(e[--a],d,false)}}else{this.onmousewheel=d}},teardown:function(){if(this.removeEventListener){for(var a=e.length;a;){this.removeEventListener(e[--a],d,false)}}else{this.onmousewheel=null}}};f.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mouse (…)
  /external/chromium_org/ui/views/controls/textfield/
native_textfield_win.h 145 MESSAGE_HANDLER_EX(WM_MOUSEWHEEL, OnMouseWheel)
208 LRESULT OnMouseWheel(UINT message, WPARAM w_param, LPARAM l_param);
  /external/chromium_org/ui/views/controls/
scroll_view.h 72 virtual bool OnMouseWheel(const ui::MouseWheelEvent& e) OVERRIDE;

Completed in 4280 milliseconds

1 2 3