diff options
author | 2018-11-30 13:29:39 +0900 | |
---|---|---|
committer | 2018-11-30 13:29:39 +0900 | |
commit | ca5835ae771cc3921433b951f25f5207ac3d6999 (patch) | |
tree | f08157065e593b650d9f8608dca40882a583d0d4 /app/dbusinterface | |
parent | 94055f5398b01a58624b3dc91f2f04027ec2a4b5 (diff) |
add aw navigationsandbox/zheng_wenlong/testqt
Diffstat (limited to 'app/dbusinterface')
-rw-r--r-- | app/dbusinterface/org.agl.naviapi.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app/dbusinterface/org.agl.naviapi.xml b/app/dbusinterface/org.agl.naviapi.xml new file mode 100644 index 0000000..f5b095c --- /dev/null +++ b/app/dbusinterface/org.agl.naviapi.xml @@ -0,0 +1,36 @@ +<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> +<node> + <interface name="org.agl.naviapi"> + <method name="addPOI"> + <arg direction="in" name="category_id" type="u"/> + <arg direction="in" name="poi_Lat" type="d"/> + <arg direction="in" name="poi_Lon" type="d"/> + </method> + <method name="removePOIs"> + <arg direction="in" name="category_id" type="u"/> + </method> + <!-- void signalRouteInfo() --> + <signal name="signalRouteInfo"> + <arg name="start_latitude" type="d" direction="out"/> + <arg name="start_longitude" type="d" direction="out"/> + <arg name="end_latitude" type="d" direction="out"/> + <arg name="end_longitude" type="d" direction="out"/> + </signal> + <!-- void signalPosInfo() --> + <signal name="signalPosInfo"> + <arg name="latitude" type="d" direction="out"/> + <arg name="longitude" type="d" direction="out"/> + <arg name="direction" type="d" direction="out"/> + <arg name="distance" type="d" direction="out"/> + </signal> + <!-- void signalStopDemo() --> + <signal name="signalStopDemo"> + </signal> + <!-- void signalArrvied() --> + <signal name="signalArrvied"> + </signal> + <!-- void getRouteInfo() --> + <signal name="getRouteInfo"> + </signal> + </interface> +</node> |