diff options
Diffstat (limited to 'include/contacts_views.h')
-rwxr-xr-x | include/contacts_views.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/include/contacts_views.h b/include/contacts_views.h index 2660343..90bbe36 100755 --- a/include/contacts_views.h +++ b/include/contacts_views.h @@ -62,11 +62,12 @@ _CONTACTS_BEGIN_VIEW() _CONTACTS_PROPERTY_STR( vibration ) // read, write _CONTACTS_PROPERTY_STR( status ) // read only _CONTACTS_PROPERTY_BOOL( is_favorite ) // read, write - _CONTACTS_PROPERTY_DOUBLE( favorite_priority ) // read only + _CONTACTS_PROPERTY_DOUBLE( favorite_priority ) // filter only _CONTACTS_PROPERTY_INT( link_count ) // read only _CONTACTS_PROPERTY_STR( addressbook_ids ) // read only _CONTACTS_PROPERTY_BOOL( has_phonenumber ) // read only _CONTACTS_PROPERTY_BOOL( has_email ) // read only + _CONTACTS_PROPERTY_STR( message_alert ) // read, write _CONTACTS_END_VIEW( _contacts_person ) // simple contact @@ -84,6 +85,7 @@ _CONTACTS_BEGIN_VIEW() _CONTACTS_PROPERTY_STR( uid ) // read, write _CONTACTS_PROPERTY_STR( vibration ) // read, write _CONTACTS_PROPERTY_INT( changed_time ) // read only + _CONTACTS_PROPERTY_STR( message_alert ) // read, write _CONTACTS_END_VIEW( _contacts_simple_contact ) // contact @@ -117,6 +119,7 @@ _CONTACTS_BEGIN_VIEW() _CONTACTS_PROPERTY_CHILD_MULTIPLE( relationship ) // read, write _CONTACTS_PROPERTY_CHILD_MULTIPLE( group_relation ) // read, write _CONTACTS_PROPERTY_CHILD_MULTIPLE( extension ) // read, write + _CONTACTS_PROPERTY_STR( message_alert ) // read, write _CONTACTS_END_VIEW( _contacts_contact ) // my_profile @@ -166,6 +169,7 @@ _CONTACTS_BEGIN_VIEW() _CONTACTS_PROPERTY_STR( label ) // read, write _CONTACTS_PROPERTY_BOOL( is_default ) // read, write _CONTACTS_PROPERTY_STR( number ) // read, write + _CONTACTS_PROPERTY_STR( normalized_number ) // filter only _CONTACTS_END_VIEW( _contacts_number ) // contact_email @@ -352,6 +356,7 @@ _CONTACTS_BEGIN_VIEW() _CONTACTS_PROPERTY_INT( person_id ) // read only _CONTACTS_PROPERTY_STR( display_name ) // read only _CONTACTS_PROPERTY_STR( image_thumbnail_path ) // read only + _CONTACTS_PROPERTY_STR( normalized_number) // filter only _CONTACTS_END_VIEW( _contacts_speeddial ) // phone_log @@ -363,6 +368,7 @@ _CONTACTS_BEGIN_VIEW() _CONTACTS_PROPERTY_INT( log_type ) // read, write _CONTACTS_PROPERTY_INT( extra_data1 ) // read, write once : message or email id, duration _CONTACTS_PROPERTY_STR( extra_data2 ) // read, write once : shortmsg, subject + _CONTACTS_PROPERTY_STR( normalized_address ) // filter only _CONTACTS_END_VIEW( _contacts_phone_log ) // contact_updated_info : read only @@ -426,6 +432,7 @@ _CONTACTS_BEGIN_READ_ONLY_VIEW() _CONTACTS_PROPERTY_INT( address_book_id ) _CONTACTS_PROPERTY_STR( address_book_name ) _CONTACTS_PROPERTY_INT( address_book_mode ) + _CONTACTS_PROPERTY_PROJECTION_STR( message_alert ) _CONTACTS_END_READ_ONLY_VIEW( _contacts_person_contact ) // person_number : read only @@ -446,6 +453,8 @@ _CONTACTS_BEGIN_READ_ONLY_VIEW() _CONTACTS_PROPERTY_BOOL( is_primary_default ) _CONTACTS_PROPERTY_STR( number ) _CONTACTS_PROPERTY_FILTER_STR( number_filter ) + _CONTACTS_PROPERTY_FILTER_STR( normalized_number ) + _CONTACTS_PROPERTY_PROJECTION_STR( message_alert ) _CONTACTS_END_READ_ONLY_VIEW( _contacts_person_number ) // person_email : read only @@ -465,6 +474,7 @@ _CONTACTS_BEGIN_READ_ONLY_VIEW() _CONTACTS_PROPERTY_PROJECTION_STR( label ) _CONTACTS_PROPERTY_BOOL( is_primary_default ) _CONTACTS_PROPERTY_STR( email ) + _CONTACTS_PROPERTY_PROJECTION_STR( message_alert ) _CONTACTS_END_READ_ONLY_VIEW( _contacts_person_email ) // person_group : read only @@ -487,6 +497,7 @@ _CONTACTS_BEGIN_READ_ONLY_VIEW() _CONTACTS_PROPERTY_STR( address_book_name ) _CONTACTS_PROPERTY_INT( address_book_mode ) _CONTACTS_PROPERTY_PROJECTION_INT( contact_id ) + _CONTACTS_PROPERTY_PROJECTION_STR( message_alert ) _CONTACTS_END_READ_ONLY_VIEW( _contacts_person_grouprel ) //person phone_log : read only @@ -501,6 +512,7 @@ _CONTACTS_BEGIN_READ_ONLY_VIEW() _CONTACTS_PROPERTY_INT( log_type ) _CONTACTS_PROPERTY_PROJECTION_INT( extra_data1 ) _CONTACTS_PROPERTY_PROJECTION_STR( extra_data2 ) + _CONTACTS_PROPERTY_FILTER_STR( normalized_address) _CONTACTS_END_READ_ONLY_VIEW( _contacts_person_phone_log ) // person, stat : read only @@ -517,6 +529,7 @@ _CONTACTS_BEGIN_READ_ONLY_VIEW() _CONTACTS_PROPERTY_BOOL( has_email ) _CONTACTS_PROPERTY_INT( usage_type ) _CONTACTS_PROPERTY_INT( times_used ) + _CONTACTS_PROPERTY_PROJECTION_STR( message_alert ) _CONTACTS_END_READ_ONLY_VIEW( _contacts_person_usage ) // simple contact number : read only @@ -534,6 +547,7 @@ _CONTACTS_BEGIN_READ_ONLY_VIEW() _CONTACTS_PROPERTY_BOOL( is_default ) _CONTACTS_PROPERTY_STR( number ) _CONTACTS_PROPERTY_FILTER_STR( number_filter ) + _CONTACTS_PROPERTY_FILTER_STR( normalized_number ) _CONTACTS_END_READ_ONLY_VIEW( _contacts_contact_number ) // simple contact email : read only |