-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
community.livecode.paulmcclernan.xygrid.lci
59 lines (59 loc) · 2.93 KB
/
community.livecode.paulmcclernan.xygrid.lci
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import module community.livecode.paulmcclernan.xygrid
use com.livecode.canvas
use com.livecode.library.widgetutils
use com.livecode.widget
use com.livecode.string
use com.livecode.array
use com.livecode.list
use com.livecode.typeconvert
use com.livecode.arithmetic
use com.livecode.binary
use com.livecode.logic
use com.livecode.type
use com.livecode.engine
use com.livecode.char
use com.livecode.byte
handler getCircleColor() returns String
handler setBorderColor(in pColor as String) returns nothing
handler getBorderColor() returns String
handler rebuildGridLinePolygons() returns nothing
handler getGridLines() returns optional any
handler getSelectedGridLines() returns optional any
handler setSelectedGridLines(in pParam as optional any) returns nothing
handler setBorderWidth(in pBorderWidth as Number) returns nothing
handler setMaxXValue(in pBorderWidth as Number) returns nothing
handler getMaxXValue() returns Number
handler setMinXValue(in pBorderWidth as Number) returns nothing
handler getMinXValue() returns Number
handler setMaxYValue(in pBorderWidth as Number) returns nothing
handler getMaxYValue() returns Number
handler setMinYValue(in pBorderWidth as Number) returns nothing
handler getMinYValue() returns Number
handler setCircleSize(in pBorderWidth as Number) returns nothing
variable mGridEditMode as String
handler setGridEditMode(in pColor as String) returns nothing
handler getGridEditMode() returns String
handler setSelectMode(in pBool as Boolean) returns nothing
handler setDrawMode(in pBool as Boolean) returns nothing
handler OnSave(out rProperties as Array) returns optional any
handler OnLoad(in pProperties as Array) returns optional any
handler OnStopEditing() returns optional any
handler OnMouseUp() returns optional any
handler OnMouseDown() returns optional any
handler OnMouseMove() returns optional any
handler OnMouseCancel() returns optional any
handler OnMouseScroll(in deltaX as optional any, in deltaY as optional any) returns optional any
handler OnActionKeyPress(in pColor as String) returns nothing
handler OnKeyPress(in pColor as String) returns nothing
handler OnFocusEnter() returns nothing
handler OnFocusLeave() returns nothing
handler OnCreate() returns optional any
handler OnGeometryChanged() returns optional any
handler OnPaint() returns optional any
handler OnOpen() returns optional any
handler setLocalGridCoordsFromLoc(in pPosition as Point, in pReverseX as Boolean, in pReverseY as Boolean) returns nothing
handler getRectListSplitHorz(in pRect as optional any, in pDiv as Number, in pReverseOrder as Boolean) returns List
handler getRectListSplitVert(in pRect as optional any, in pDiv as Number, in pReverseOrder as Boolean) returns List
handler buildGridRectLists() returns optional any
handler hitTestPath(in pPoint as Point, in pPath as Path, in pStrokeWidth as Number, in pWithin as Boolean) returns Boolean
end module