comparison src/alsa/about.c @ 12:3da1b8942b8b trunk

[svn] - remove src/Input src/Output src/Effect src/General src/Visualization src/Container
author nenolod
date Mon, 18 Sep 2006 03:14:20 -0700
parents src/Output/alsa/about.c@6303e3a8a6b8
children f6f5603a0954
comparison
equal deleted inserted replaced
11:cff1d04026ae 12:3da1b8942b8b
1 /* XMMS - ALSA output plugin
2 * Copyright (C) 2001-2003 Matthieu Sozeau <mattam@altern.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18
19 #include "alsa.h"
20 #include <audacious/util.h>
21
22 void alsa_about(void)
23 {
24 static GtkWidget *dialog;
25
26 if (dialog != NULL)
27 return;
28
29 dialog = xmms_show_message(
30 _("About ALSA Driver"),
31 _("Audacious ALSA Driver\n\n "
32 "This program is free software; you can redistribute it and/or modify\n"
33 "it under the terms of the GNU General Public License as published by\n"
34 "the Free Software Foundation; either version 2 of the License, or\n"
35 "(at your option) any later version.\n"
36 "\n"
37 "This program is distributed in the hope that it will be useful,\n"
38 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
39 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
40 "GNU General Public License for more details.\n"
41 "\n"
42 "You should have received a copy of the GNU General Public License\n"
43 "along with this program; if not, write to the Free Software\n"
44 "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,\n"
45 "USA.\n"
46 "Author: Matthieu Sozeau (mattam@altern.org)"), _("OK"), FALSE, NULL, NULL);
47 gtk_signal_connect(GTK_OBJECT(dialog), "destroy",
48 GTK_SIGNAL_FUNC(gtk_widget_destroyed),
49 &dialog);
50 }