Changeset 4022b68 for protocols/purple/purple.c
- Timestamp:
- 2010-08-21T22:42:01Z (14 years ago)
- Branches:
- master
- Children:
- fd424c8
- Parents:
- 327af51 (diff), c00dd71 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/purple/purple.c
r327af51 r4022b68 427 427 { 428 428 PurpleTypingState state = PURPLE_NOT_TYPING; 429 Purple Conversation *conv;429 PurpleAccount *pa = ic->proto_data; 430 430 431 431 if( flags & OPT_TYPING ) … … 434 434 state = PURPLE_TYPED; 435 435 436 if( ( conv = purple_find_conversation_with_account( PURPLE_CONV_TYPE_IM, 437 who, ic->proto_data ) ) == NULL ) 438 { 439 purple_conv_im_set_typing_state( purple_conversation_get_im_data( conv ), state ); 440 return 1; 441 } 442 else 443 { 444 return 0; 445 } 436 serv_send_typing( purple_account_get_connection( pa ), who, state ); 437 438 return 1; 446 439 } 447 440 … … 807 800 808 801 imcb_buddy_msg( ic, (char*) who, (char*) message, 0, mtime ); 802 } 803 804 /* No, this is not a ui_op but a signal. */ 805 static void prplcb_buddy_typing( PurpleAccount *account, const char *who, gpointer null ) 806 { 807 PurpleConversation *conv; 808 PurpleConvIm *im; 809 int state; 810 811 if( ( conv = purple_find_conversation_with_account( PURPLE_CONV_TYPE_IM, who, account ) ) == NULL ) 812 return; 813 814 im = PURPLE_CONV_IM(conv); 815 switch( purple_conv_im_get_typing_state( im ) ) 816 { 817 case PURPLE_TYPING: 818 state = OPT_TYPING; 819 break; 820 case PURPLE_TYPED: 821 state = OPT_THINKING; 822 break; 823 default: 824 state = 0; 825 } 826 827 imcb_buddy_typing( purple_ic_by_pa( account ), who, state ); 809 828 } 810 829 … … 1139 1158 purple_prefs_load(); 1140 1159 1160 /* No, really. So far there were ui_ops for everything, but now suddenly 1161 one needs to use signals for typing notification stuff. :-( */ 1162 purple_signal_connect( purple_conversations_get_handle(), "buddy-typing", 1163 &funcs, PURPLE_CALLBACK(prplcb_buddy_typing), NULL ); 1164 purple_signal_connect( purple_conversations_get_handle(), "buddy-typed", 1165 &funcs, PURPLE_CALLBACK(prplcb_buddy_typing), NULL ); 1166 purple_signal_connect( purple_conversations_get_handle(), "buddy-typing-stopped", 1167 &funcs, PURPLE_CALLBACK(prplcb_buddy_typing), NULL ); 1168 1141 1169 memset( &funcs, 0, sizeof( funcs ) ); 1142 1170 funcs.login = purple_login;
Note: See TracChangeset
for help on using the changeset viewer.