From 562c232a4c172aa1f6fcf11765531c464f5c832a Mon Sep 17 00:00:00 2001 From: srimaldia Date: Thu, 22 Dec 2016 18:42:54 +0900 Subject: Add status icon for bluetooth Change-Id: I598fd21f66620a518d5cc4068c352c31961834bd Signed-off-by: srimaldia --- bluetooth-manager.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'bluetooth-manager.h') diff --git a/bluetooth-manager.h b/bluetooth-manager.h index cb018b0..3602a78 100644 --- a/bluetooth-manager.h +++ b/bluetooth-manager.h @@ -77,6 +77,11 @@ #define AGENT_CONN (cli.agent_conn) #define OBEX_CONN (cli.obex_conn) +#define HOMESCREEN_SERVICE "org.agl.homescreen" +#define HOMESCREEN_ICON_INTERFACE "org.agl.statusbar" +#define HOMESCREEN_ICON_PATH "/StatusBar" +#define HOMESCREEN_BT_ICON_POSITION 1 + #define DBUS_REPLY_TIMEOUT (120 * 1000) #define DBUS_REPLY_TIMEOUT_SHORT (10 * 1000) @@ -115,6 +120,9 @@ typedef struct { GSList * device; } stBluetoothManage; +enum btStates {INACTIVE, ACTIVE}; + + int BluetoothManageInit(void); int adapter_set_powered(gboolean value); @@ -136,6 +144,9 @@ int device_set_property(struct btd_device * addr, const char *property, const ch int isAVPConnected(struct btd_device *BDdevice); int isHFPConnected(struct btd_device *BDdevice); +GError* setHMIStatus(enum btStates); + + #endif /* BLUETOOTH_MANAGER_H */ -- cgit 1.2.3-korg