Mercurial > audlegacy-plugins
view src/scrobbler/gtkstuff.c @ 2800:ea4e97a98914
a fix for automatic plugin _CFGIDs to be generated
author | Andrew O. Shadoura <bugzilla@tut.by> |
---|---|
date | Sat, 12 Jul 2008 02:40:00 +0300 |
parents | 19fb7d7dcf4e |
children | 3134a0987162 |
line wrap: on
line source
#include <glib.h> #include <audacious/i18n.h> #include <audacious/plugin.h> #include <stdio.h> #include <string.h> #include "settings.h" #include "config.h" void about_show(void) { static GtkWidget *aboutbox; gchar *tmp; if (aboutbox) return; tmp = g_strdup_printf(_("Audacious AudioScrobbler Plugin\n\n" "Originally created by Audun Hove <audun@nlc.no> and Pipian <pipian@pipian.com>\n")); aboutbox = audacious_info_dialog(_("About Scrobbler Plugin"), tmp, _("Ok"), FALSE, NULL, NULL); g_free(tmp); gtk_signal_connect(GTK_OBJECT(aboutbox), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &aboutbox); } void errorbox_show(char *errortxt) { gchar *tmp; tmp = g_strdup_printf(_("There has been an error" " that may require your attention.\n\n" "Contents of server error:\n\n" "%s\n"), errortxt); GDK_THREADS_ENTER(); audacious_info_dialog(_("Scrobbler Error"), tmp, _("OK"), FALSE, NULL, NULL); GDK_THREADS_LEAVE(); g_free(tmp); }