#define CONTEXT_TRIGGER_TYPE "Type"
/**
- * @brief The attribute key denoting "view".
- * @details This can be used as left operands of context_trigger_rule_entry_add_comparison_string().@n
- * See the programming guide to find available right operands.
- * @since_tizen 3.0
- */
-#define CONTEXT_TRIGGER_VIEW "View"
-
-/**
* @brief The attribute key denoting "event".
* @details This can be used as left operands of context_trigger_rule_entry_add_comparison_string().@n
* See the programming guide to find available right operands.
#define CONTEXT_TRIGGER_PERSON "Person"
/**
+ * @brief The attribute value denoting the "Changed" event.
+ * @details This can be used as right operands of context_trigger_rule_entry_add_comparison_string().@n
+ * See the programming guide to find the corresponding left operand attribute keys.
+ * @since_tizen 3.0
+ */
+#define CONTEXT_TRIGGER_CHANGED "Changed"
+
+/**
* @brief The attribute value denoting the "detected" event.
* @details This can be used as right operands of context_trigger_rule_entry_add_comparison_string().@n
* See the programming guide to find the corresponding left operand attribute keys.
CONTEXT_TRIGGER_EVENT_CALL = 0x10300, /**< Call state changed @n Privilege: http://tizen.org/privilege/telephony */
CONTEXT_TRIGGER_EVENT_EMAIL, /**< Email sent/received */
CONTEXT_TRIGGER_EVENT_MESSAGE, /**< Message sent/received @n Privilege: http://tizen.org/privilege/message.read */
- CONTEXT_TRIGGER_EVENT_CONTACTS_DB_CHANGED, /**< Contacts db changed (Since Tizen 3.0) @n Privilege: http://tizen.org/privilege/contact.read */
+ CONTEXT_TRIGGER_EVENT_CONTACTS, /**< Contacts changed (Since Tizen 3.0) @n Privilege: http://tizen.org/privilege/contact.read */
CONTEXT_TRIGGER_EVENT_ACTIVITY_STATIONARY = 0x10400, /**< 'Stationary' activity detected */
CONTEXT_TRIGGER_EVENT_ACTIVITY_WALKING, /**< 'Walking' activity detected */
CONTEXT_TRIGGER_EVENT_ACTIVITY_RUNNING, /**< 'Running' activity detected */
#define CT_EVENT_CALL "social/call"
#define CT_EVENT_EMAIL "social/email"
#define CT_EVENT_MESSAGE "social/message"
-#define CT_EVENT_CONTACTS_DB_CHANGED "social/contacts"
+#define CT_EVENT_CONTACTS "social/contacts"
#define CT_EVENT_ACTIVITY_STATIONARY "activity/stationary"
#define CT_EVENT_ACTIVITY_WALKING "activity/walking"
#define CT_EVENT_ACTIVITY_RUNNING "activity/running"
case CONTEXT_TRIGGER_EVENT_MESSAGE:
str = CT_EVENT_MESSAGE;
break;
- case CONTEXT_TRIGGER_EVENT_CONTACTS_DB_CHANGED:
- str = CT_EVENT_CONTACTS_DB_CHANGED;
+ case CONTEXT_TRIGGER_EVENT_CONTACTS:
+ str = CT_EVENT_CONTACTS;
break;
case CONTEXT_TRIGGER_EVENT_ACTIVITY_STATIONARY:
str = CT_EVENT_ACTIVITY_STATIONARY;