|
isIn(element,
x,
y)
Given an element and an absolute x and y, return True if the (x,y)
coordinate is within the element. |
source code
|
|
|
isCanceled(event)
Has the DragEvent been canceled? Coding this package was much easier
with this function. |
source code
|
|
|
findDraggable(element,
x,
y)
Find the element within a widget's main element that is draggable and
under the mouse cursor. |
source code
|
|
|
|
|
getComputedStyle(element,
style=None)
Get computed style of an element, like in
http://efreedom.com/Question/1-1848445/Duplicating-Element-Style-JavaScript |
source code
|
|
|
copyStyles(elem1,
elem2)
Copy styles from one element to another, like in
http://efreedom.com/Question/1-1848445/Duplicating-Element-Style-JavaScript |
source code
|
|
|
|
|
getElementUnderMouse(widget,
x,
y)
Return the most specific element in widget that contains (x,y). |
source code
|
|
|
|
|
|