comparison src/Output/CoreAudio/about.c @ 0:13389e613d67 trunk

[svn] - initial import of audacious-plugins tree (lots to do)
author nenolod
date Mon, 18 Sep 2006 01:11:49 -0700
parents
children 088092a52fea
comparison
equal deleted inserted replaced
-1:000000000000 0:13389e613d67
1 /* XMMS - Cross-platform multimedia player
2 * Copyright (C) 1998-2000 Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18 #include "coreaudio.h"
19 #include "libaudacious/util.h"
20
21 void osx_about(void)
22 {
23 static GtkWidget *dialog;
24
25 if (dialog != NULL)
26 return;
27
28 dialog = xmms_show_message(
29 "About CoreAudio Plugin",
30 "Audacious CoreAudio Plugin\n\n "
31 "This program is free software; you can redistribute it and/or modify\n"
32 "it under the terms of the GNU General Public License as published by\n"
33 "the Free Software Foundation; either version 2 of the License, or\n"
34 "(at your option) any later version.\n"
35 "\n"
36 "This program is distributed in the hope that it will be useful,\n"
37 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
38 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
39 "GNU General Public License for more details.\n"
40 "\n"
41 "You should have received a copy of the GNU General Public License\n"
42 "along with this program; if not, write to the Free Software\n"
43 "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
44 "USA.","Ok", FALSE, NULL, NULL);
45 gtk_signal_connect(GTK_OBJECT(dialog), "destroy",
46 GTK_SIGNAL_FUNC(gtk_widget_destroyed),
47 &dialog);
48 }