forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
org.openscad.OpenSCAD.xml
60 lines (60 loc) · 2.37 KB
/
org.openscad.OpenSCAD.xml
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
60
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
<interface name="org.openscad.OpenSCAD">
<method name="zoom">
<arg name="zoom" type="d" direction="in"/>
</method>
<method name="zoomTo">
<arg name="zoom" type="d" direction="in"/>
</method>
<method name="rotate">
<arg name="x" type="d" direction="in"/>
<arg name="y" type="d" direction="in"/>
<arg name="z" type="d" direction="in"/>
</method>
<method name="rotateTo">
<arg name="x" type="d" direction="in"/>
<arg name="y" type="d" direction="in"/>
<arg name="z" type="d" direction="in"/>
</method>
<method name="rotateByVector">
<tp:docstring>
The vector [x,y,z] describes the rotation.
The direction of the vector is the angle around which to rotate,
and the length of the vector is the angle by which to rotate.
</tp:docstring>
<arg name="x" type="d" direction="in"/>
<arg name="y" type="d" direction="in"/>
<arg name="z" type="d" direction="in"/>
</method>
<method name="translate">
<arg name="x" type="d" direction="in"/>
<arg name="y" type="d" direction="in"/>
<arg name="z" type="d" direction="in"/>
</method>
<method name="translateTo">
<arg name="x" type="d" direction="in"/>
<arg name="y" type="d" direction="in"/>
<arg name="z" type="d" direction="in"/>
</method>
<method name="action">
<arg name="name" type="s" direction="in"/>
</method>
<method name="buttonPress">
<arg name="idx" type="u" direction="in"/>
</method>
<method name="getRotation">
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QList<double>"/>
<arg name="rotation" type="ad" direction="out"/>
</method>
<method name="getTranslation">
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QList<double>"/>
<arg name="rotation" type="ad" direction="out"/>
</method>
<method name="getActions">
<arg name="names" type="as" direction="out"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QStringList>"/>
</method>
</interface>
</node>