comparison src/conversation.c @ 1464:ae075ecc7c34

[gaim-migrate @ 1474] I got the "internet" keys on my keyboard working. <Creedence Clearwater playing....> o/~ and daddy always smiled, took me by the hand, saying someday, you'll understand. o/~ Next Track! <Searchers...> o/~ Seven little bottles of: Love Potion #9! o/~ Next! <Marcy Playground...> o/~ Blue... like water. Blue... like heaven has, allllll of the time o/~ Next! <Wat Tyler> o/~ I'm, going, to, fart in the face of my father, wank in the wig of a judge, piss in the whistle of a policeman, i bear them all a grudge o/~ Next! <Veruca Salt> o/~ Leave me! Right here! Cuz I don't wanna go! o/~ Next! <Turtles> o/~ Imagine me and you, I do, I think about you day and night, it's only right, to think about the girl you love, and hold her tight, so happy together! o/~ Next! Next! Led Zeppelin! Led Zep! Woohoo! I'm going to go listen to Led Zeppelin now. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 03 Feb 2001 11:57:24 +0000
parents 6650776468b3
children 4c62ead808a2
comparison
equal deleted inserted replaced
1463:2f317467d2f9 1464:ae075ecc7c34
466 { 466 {
467 int pos; 467 int pos;
468 if (event->keyval == GDK_Escape) { 468 if (event->keyval == GDK_Escape) {
469 if (general_options & OPT_GEN_ESC_CAN_CLOSE) { 469 if (general_options & OPT_GEN_ESC_CAN_CLOSE) {
470 gtk_signal_emit_stop_by_name(GTK_OBJECT(entry), "key_press_event"); 470 gtk_signal_emit_stop_by_name(GTK_OBJECT(entry), "key_press_event");
471 close_callback(c->window, c); 471 close_callback(c->close, c);
472 } 472 }
473 } else if ((event->keyval == GDK_F2) && (general_options & OPT_GEN_F2_TOGGLES)) { 473 } else if ((event->keyval == GDK_F2) && (general_options & OPT_GEN_F2_TOGGLES)) {
474 gtk_imhtml_show_comments(GTK_IMHTML(c->text), !GTK_IMHTML(c->text)->comments); 474 gtk_imhtml_show_comments(GTK_IMHTML(c->text), !GTK_IMHTML(c->text)->comments);
475 } else if (event->keyval == GDK_Return) { 475 } else if (event->keyval == GDK_Return) {
476 if ((event->state & GDK_CONTROL_MASK) && (general_options & OPT_GEN_CTL_ENTER)) { 476 if ((event->state & GDK_CONTROL_MASK) && (general_options & OPT_GEN_CTL_ENTER)) {