Mercurial > audlegacy-plugins
diff src/vtx/about.c @ 749:26ff35aa9b2b trunk
[svn] - vtx input plugin based on a submission from Pavel Vymetalek.
| author | nenolod |
|---|---|
| date | Wed, 28 Feb 2007 04:38:53 -0800 |
| parents | |
| children | 230661b01dc7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/vtx/about.c Wed Feb 28 04:38:53 2007 -0800 @@ -0,0 +1,35 @@ +#include <audacious/plugin.h> +#include <audacious/util.h> +#include <audacious/plugin.h> + +#include <audacious/output.h> +#include <audacious/util.h> +#include <audacious/titlestring.h> +#include <audacious/vfs.h> +#include <audacious/strings.h> +#include <audacious/i18n.h> + +#include <gtk/gtk.h> + +#include "vtx.h" +#include "ayemu.h" + +void +vtx_about (void) +{ + static GtkWidget *box; + if (box) gdk_window_raise(box->window); + else { + box = xmms_show_message (_("About Vortex Player"), + _ + ("Vortex file format player by Sashnov Alexander <sashnov@ngs.ru>\n" + "Founded on original source in_vtx.dll by Roman Sherbakov <v_soft@microfor.ru>\n" + "\n" + "Music in vtx format can be found at http://vtx.microfor.ru/music.htm\n" + "and other AY/YM music sites.\n" + "\n" + "Audacious implementation by Pavel Vymetalek <pvymetalek@seznam.cz>"), + _("Ok"), FALSE, NULL, NULL); + g_signal_connect (G_OBJECT (box), "destroy", G_CALLBACK(gtk_widget_destroyed), &box); + } +}
