| 348 gtk_widget_destroy(logo); |
348 gtk_widget_destroy(logo); |
| 349 logo = gtk_image_new_from_pixbuf(pixbuf); |
349 logo = gtk_image_new_from_pixbuf(pixbuf); |
| 350 gdk_pixbuf_unref(pixbuf); |
350 gdk_pixbuf_unref(pixbuf); |
| 351 /* Insert the logo */ |
351 /* Insert the logo */ |
| 352 obj = gtk_widget_get_accessible(logo); |
352 obj = gtk_widget_get_accessible(logo); |
| 353 atk_object_set_description(obj, PIDGIN_NAME " " VERSION); |
353 tmp = g_strconcat(PIDGIN_NAME, " " VERSION, NULL); |
| |
354 atk_object_set_description(obj, tmp); |
| |
355 g_free(tmp); |
| 354 gtk_box_pack_start(GTK_BOX(vbox), logo, FALSE, FALSE, 0); |
356 gtk_box_pack_start(GTK_BOX(vbox), logo, FALSE, FALSE, 0); |
| 355 |
357 |
| 356 frame = pidgin_create_imhtml(FALSE, &text, NULL, NULL); |
358 frame = pidgin_create_imhtml(FALSE, &text, NULL, NULL); |
| 357 gtk_imhtml_set_format_functions(GTK_IMHTML(text), GTK_IMHTML_ALL ^ GTK_IMHTML_SMILEY); |
359 gtk_imhtml_set_format_functions(GTK_IMHTML(text), GTK_IMHTML_ALL ^ GTK_IMHTML_SMILEY); |
| 358 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); |
360 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); |
| 504 #else |
506 #else |
| 505 g_string_append(str, " <b>Plugins:</b> Disabled<br/>"); |
507 g_string_append(str, " <b>Plugins:</b> Disabled<br/>"); |
| 506 #endif |
508 #endif |
| 507 |
509 |
| 508 #ifdef HAVE_SSL |
510 #ifdef HAVE_SSL |
| 509 g_string_append(str, " <b>SSL:</b> " PIDGIN_NAME " was compiled with SSL support.<br/>"); |
511 g_string_append(str, " <b>SSL:</b> SSL support is present.<br/>"); |
| 510 #else |
512 #else |
| 511 g_string_append(str, " <b>SSL:</b> " PIDGIN_NAME " was <b><i>NOT</i></b> compiled with any SSL support!<br/>"); |
513 g_string_append(str, " <b>SSL:</b> SSL support was <b><i>NOT</i></b> compiled!<br/>"); |
| 512 #endif |
514 #endif |
| 513 |
515 |
| 514 /* This might be useful elsewhere too, but it is particularly useful for |
516 /* This might be useful elsewhere too, but it is particularly useful for |
| 515 * debugging stuff known to be GTK+/Glib bugs on Windows */ |
517 * debugging stuff known to be GTK+/Glib bugs on Windows */ |
| 516 #ifdef _WIN32 |
518 #ifdef _WIN32 |