| 448 atk_object_set_description(obj, tmp); |
448 atk_object_set_description(obj, tmp); |
| 449 g_free(tmp); |
449 g_free(tmp); |
| 450 gtk_box_pack_start(GTK_BOX(vbox), logo, FALSE, FALSE, 0); |
450 gtk_box_pack_start(GTK_BOX(vbox), logo, FALSE, FALSE, 0); |
| 451 |
451 |
| 452 frame = pidgin_create_webview(FALSE, &webview, NULL, NULL); |
452 frame = pidgin_create_webview(FALSE, &webview, NULL, NULL); |
| 453 /* FIXME: Compile now and fix it later when we have a proper replacement for this function |
453 /* TODO WEBKIT: Compile now and fix it later when we have a proper replacement for this function |
| 454 gtk_imhtml_set_format_functions(GTK_IMHTML(imhtml), GTK_IMHTML_ALL ^ GTK_IMHTML_SMILEY); |
454 gtk_imhtml_set_format_functions(GTK_IMHTML(imhtml), GTK_IMHTML_ALL ^ GTK_IMHTML_SMILEY); |
| 455 */ |
455 */ |
| 456 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); |
456 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); |
| 457 |
457 |
| 458 gtk_webview_append_html(GTK_WEBVIEW(webview), string->str); |
458 gtk_webview_append_html(GTK_WEBVIEW(webview), string->str); |
| 459 /* FIXME: This doesn't seem to stay at the top. */ |
459 /* TODO WEBKIT: This doesn't seem to stay at the top. */ |
| 460 webkit_web_view_move_cursor(WEBKIT_WEB_VIEW(webview), GTK_MOVEMENT_BUFFER_ENDS, -1); |
460 webkit_web_view_move_cursor(WEBKIT_WEB_VIEW(webview), GTK_MOVEMENT_BUFFER_ENDS, -1); |
| 461 |
461 |
| 462 button = pidgin_dialog_add_button(GTK_DIALOG(win), GTK_STOCK_CLOSE, |
462 button = pidgin_dialog_add_button(GTK_DIALOG(win), GTK_STOCK_CLOSE, |
| 463 G_CALLBACK(destroy_win), win); |
463 G_CALLBACK(destroy_win), win); |
| 464 |
464 |