1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/* AboutWindow.cpp
* Copyright (C) 2007 Madej
*
* This file is part of AlsaPlayer.
*
* AlsaPlayer is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* AlsaPlayer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
*/
#include "AboutWindow.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef ENABLE_NLS
#include <libintl.h>
#define _(String) gettext(String)
#define N_(String) noop_gettext(String)
#else
#define _(String) (String)
#define N_(String) String
#endif
#ifndef VERSION
#define VERSION NULL
#endif
void
about_dialog_show(GtkWidget *aboutdialog)
{
if (!GTK_WIDGET_VISIBLE(aboutdialog))
gtk_widget_show(aboutdialog);
}
gboolean
about_delete_event(GtkWidget *widget, GdkEvent *, gpointer)
{
if (GTK_WIDGET_VISIBLE(widget))
gtk_widget_hide(widget);
return TRUE;
}
void
about_response(GtkDialog *dialog, gint arg1, gpointer)
{
if (arg1 == GTK_RESPONSE_CANCEL)
about_delete_event(GTK_WIDGET(dialog), NULL, NULL);
}
#include "pixmaps/logo.xpm"
GtkWidget*
init_about_window(GtkWidget *)
{
GtkWidget *about_window = NULL;
GdkPixbuf *about_logo = NULL;
const gchar *authors[] = {"Andy Lo A Foe\t\t\t<andy@loafoe.com>",
"Dominique Michel\t\t<dominique_libre@users.sf.net>",
"Erik de Castro Lopo\t\thttp://www.mega-nerd.com",
"Madej",
"\nPatches:",
"Hubert Chan",
"Viktor Radnai and Paul Brossier",
"\nCheck AUTHORS file for a more complete list",
NULL};
// const gchar *artists[] = {"", NULL};
const gchar *documenters[] = {"Yvo Timmermans",
"Dominique Michel",
"Andy Lo A Foe",
NULL};
const gchar *license = _("AlsaPlayer is free software; you can redistribute it and/or modify\n\
it under the terms of the GNU General Public Licence as published by\n\
the Free Software Foundation; either version 3 of the Licence, or\n\
(at your option) any later version.\n\
\n\
AlsaPlayer is distributed in the hope that it will be useful,\n\
but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\
GNU General Public Licence for more details.\n\
\n\
You should have received a copy of the GNU General Public Licence\n\
along with AlsaPlayer; if not, see <http://www.gnu.org/licenses/>.");
about_logo = gdk_pixbuf_new_from_xpm_data((const char **)logo_xpm);
about_window = gtk_about_dialog_new();
gtk_about_dialog_set_name(GTK_ABOUT_DIALOG(about_window), "AlsaPlayer");
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(about_window), VERSION);
gtk_about_dialog_set_website(GTK_ABOUT_DIALOG(about_window), "http://alsaplayer.sourceforge.net");
gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(about_window), "Copyright © 1998-2014");
gtk_about_dialog_set_comments(GTK_ABOUT_DIALOG(about_window), _("You like it, please contribute."));
gtk_about_dialog_set_license(GTK_ABOUT_DIALOG(about_window), license);
gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG(about_window), authors);
// gtk_about_dialog_set_artists(GTK_ABOUT_DIALOG(about_window), artists);
gtk_about_dialog_set_documenters(GTK_ABOUT_DIALOG(about_window), documenters);
gtk_about_dialog_set_translator_credits(GTK_ABOUT_DIALOG(about_window), _("translator-credits"));
gtk_about_dialog_set_logo(GTK_ABOUT_DIALOG(about_window), about_logo);
g_signal_connect(G_OBJECT(about_window), "delete-event", G_CALLBACK(about_delete_event), NULL);
g_signal_connect(G_OBJECT(about_window), "response", G_CALLBACK(about_response), NULL);
g_object_unref(G_OBJECT(about_logo));
return about_window;
}
|