Home
last modified time | relevance | path

Searched refs:swallowEvent (Results 1 – 23 of 23) sorted by relevance

/dports/audio/supercollider/SuperCollider-3.11.0-Source/HelpSource/Classes/
H A DMIDIResponder.schelp25 ## CCResponder(function, src, chan, num, value, install = true, swallowEvent = false)
26 ## NoteOnResponder(function, src, chan, num, veloc, install = true, swallowEvent = false)
27 ## NoteOffResponder(function, src, chan, num, veloc, install = true, swallowEvent = false)
28 ## BendResponder(function, src, chan, value, install = true, swallowEvent = false)
29 ## TouchResponder(function, src, chan, value, install = true, swallowEvent = false)
49swallowEvent || If true, then if the midi event is matched, cease testing any further responders. …
H A DTouchResponder.schelp27 argument::swallowEvent
H A DBendResponder.schelp28 argument::swallowEvent
H A DNoteOffResponder.schelp30 argument::swallowEvent
H A DCCResponder.schelp30 argument::swallowEvent
H A DNoteOnResponder.schelp30 argument::swallowEvent
/dports/audio/supercollider/SuperCollider-3.11.0-Source/SCClassLibrary/Common/Control/
H A DMIDIResponder.sc5 var <>function,<>swallowEvent=false,
15 ^swallowEvent
43 *new { arg function, src, chan, num, veloc, install=true,swallowEvent=false;
48 .swallowEvent_(swallowEvent)
109 *new { arg function, src, chan, num, value, install=true,swallowEvent=false;
112 ^super.new.function_(function).swallowEvent_(swallowEvent)
176 *new { arg function, src, chan, value, install=true,swallowEvent=false;
177 ^super.new.function_(function).swallowEvent_(swallowEvent)
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/dom/
H A DMouseEvent.cpp177 bool swallowEvent = event()->defaultHandled() || event()->defaultPrevented(); in dispatchEvent() local
192 swallowEvent = true; in dispatchEvent()
195 return swallowEvent; in dispatchEvent()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/page/
H A DEventHandler.cpp487 bool swallowEvent = false; in handleMousePressEvent() local
501 return swallowEvent; in handleMousePressEvent()
1437 if (swallowEvent) { in handleMousePressEvent()
1468 return swallowEvent; in handleMousePressEvent()
1610 bool swallowEvent = false; in handleMouseMoveEvent() local
1648 if (swallowEvent) in handleMouseMoveEvent()
1653 if (!swallowEvent) in handleMouseMoveEvent()
1657 return swallowEvent; in handleMouseMoveEvent()
2054 return swallowEvent; in dispatchMouseEvent()
2186 bool swallowEvent; in sendContextMenuEvent() local
[all …]
/dports/math/gnuplot/gnuplot-5.4.1/src/qtterminal/
H A DQtGnuplotApplication.cpp120 swallowEvent(type, in); in processEvent()
H A DQtGnuplotEvent.h95 void swallowEvent(QtGnuplotEventType type, QDataStream& in);
H A DQtGnuplotEvent.cpp165 void QtGnuplotEventReceiver::swallowEvent(QtGnuplotEventType type, QDataStream& in) in swallowEvent() function in QtGnuplotEventReceiver
H A DQtGnuplotScene.cpp675 swallowEvent(type, in); in processEvent()
/dports/math/gnuplot-lite/gnuplot-5.4.1/src/qtterminal/
H A DQtGnuplotApplication.cpp120 swallowEvent(type, in); in processEvent()
H A DQtGnuplotEvent.h95 void swallowEvent(QtGnuplotEventType type, QDataStream& in);
H A DQtGnuplotEvent.cpp165 void QtGnuplotEventReceiver::swallowEvent(QtGnuplotEventType type, QDataStream& in) in swallowEvent() function in QtGnuplotEventReceiver
H A DQtGnuplotScene.cpp675 swallowEvent(type, in); in processEvent()
/dports/math/gnuplot-tex-extras/gnuplot-5.2.8/src/qtterminal/
H A DQtGnuplotApplication.cpp120 swallowEvent(type, in); in processEvent()
H A DQtGnuplotEvent.h95 void swallowEvent(QtGnuplotEventType type, QDataStream& in);
H A DQtGnuplotEvent.cpp165 void QtGnuplotEventReceiver::swallowEvent(QtGnuplotEventType type, QDataStream& in) in swallowEvent() function in QtGnuplotEventReceiver
H A DQtGnuplotScene.cpp661 swallowEvent(type, in); in processEvent()
/dports/www/kf5-khtml/khtml-5.89.0/src/
H A Dkhtmlview.cpp1269 if (!swallowEvent) { in mousePressEvent()
1308 if (!swallowEvent) { in mouseDoubleClickEvent()
1389 …bool swallowEvent = dispatchMouseEvent(EventImpl::MOUSEMOVE_EVENT, target, mev.innerNonSharedNode.… in mouseMoveEvent() local
1584 if (!swallowEvent) { in mouseMoveEvent()
1592 bool swallowEvent = false; in mouseReleaseEvent() local
1611swallowEvent = dispatchMouseEvent(EventImpl::MOUSEUP_EVENT, target, mev.innerNonSharedNode.handle(… in mouseReleaseEvent()
1633 if (!swallowEvent) { in mouseReleaseEvent()
3681 bool swallowEvent = false; in dispatchMouseEvent() local
3718 swallowEvent = true; in dispatchMouseEvent()
3723 swallowEvent = true; in dispatchMouseEvent()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/
H A DChangeLog-2007-10-1463205 swallowEvent since WebCore context menus ensure that we always
63593 …* page/EventHandler.cpp: (WebCore::EventHandler::handleMousePressEvent): Set swallowEvent bool ins…
65982 swallowEvent was false in the case where we want to pop up a menu.