- Timestamp:
- 2016-03-20T03:58:05Z (9 years ago)
- Branches:
- master
- Children:
- 8f8a56f
- Parents:
- 14f912d
- git-author:
- dequis <dx@…> (08-12-15 22:31:05)
- git-committer:
- dequis <dx@…> (20-03-16 03:58:05)
- Location:
- protocols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/bee.h
r14f912d ra42fda4 131 131 132 132 void (*log)(bee_t *bee, const char *tag, const char *msg); 133 gboolean (*user_nick_change)(bee_t *bee, bee_user_t *bu, const char *hint); 133 134 } bee_ui_funcs_t; 134 135 -
protocols/nogaim.c
r14f912d ra42fda4 479 479 } 480 480 481 /* Mainly meant for ICQ (and now also for Jabber conferences) to allow IM 482 modules to suggest a nickname for a handle. */ 483 void imcb_buddy_nick_hint(struct im_connection *ic, const char *handle, const char *nick) 481 /* Implements either imcb_buddy_nick_hint() or imcb_buddy_nick_change() depending on the value of 'change' */ 482 static void buddy_nick_hint_or_change(struct im_connection *ic, const char *handle, const char *nick, gboolean change) 484 483 { 485 484 bee_t *bee = ic->bee; … … 493 492 bu->nick = g_strdup(nick); 494 493 495 if (bee->ui->user_nick_hint) { 494 if (change && bee->ui->user_nick_change) { 495 bee->ui->user_nick_change(bee, bu, nick); 496 } else if (!change && bee->ui->user_nick_hint) { 496 497 bee->ui->user_nick_hint(bee, bu, nick); 497 498 } 498 499 } 499 500 501 /* Soft variant, for newly created users. Does nothing if it's already online */ 502 void imcb_buddy_nick_hint(struct im_connection *ic, const char *handle, const char *nick) 503 { 504 buddy_nick_hint_or_change(ic, handle, nick, FALSE); 505 } 506 507 /* Hard variant, always changes the nick */ 508 void imcb_buddy_nick_change(struct im_connection *ic, const char *handle, const char *nick) 509 { 510 buddy_nick_hint_or_change(ic, handle, nick, TRUE); 511 } 500 512 501 513 struct imcb_ask_cb_data { -
protocols/nogaim.h
r14f912d ra42fda4 324 324 G_MODULE_EXPORT void imcb_rename_buddy(struct im_connection *ic, const char *handle, const char *realname); 325 325 G_MODULE_EXPORT void imcb_buddy_nick_hint(struct im_connection *ic, const char *handle, const char *nick); 326 G_MODULE_EXPORT void imcb_buddy_nick_change(struct im_connection *ic, const char *handle, const char *nick); 326 327 G_MODULE_EXPORT void imcb_buddy_action_response(bee_user_t *bu, const char *action, char * const args[], void *data); 327 328
Note: See TracChangeset
for help on using the changeset viewer.