Mercurial > audlegacy-plugins
view src/vtx/about.c @ 857:bad7c89d7ba0 trunk
[svn] statusicon: add missing files
author | giacomo |
---|---|
date | Wed, 14 Mar 2007 08:59:50 -0700 |
parents | 26ff35aa9b2b |
children | 230661b01dc7 |
line wrap: on
line source
#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); } }