[glabels] New logo and tweaking of about dialog.
- From: Jim Evins <jimevins src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glabels] New logo and tweaking of about dialog.
- Date: Sat, 4 Sep 2010 12:59:21 +0000 (UTC)
commit acadb7b8e069be9c8a95502191771b6466ddaedf
Author: Jim Evins <evins snaught com>
Date: Fri Sep 3 12:10:08 2010 -0400
New logo and tweaking of about dialog.
data/pixmaps/Makefile.am | 3 +--
data/pixmaps/glabels-about-logo.png | Bin 7734 -> 0 bytes
data/pixmaps/glabels-logo.png | Bin 0 -> 24129 bytes
data/pixmaps/glabels-splash.png | Bin 110600 -> 0 bytes
src/ui-commands.c | 29 +++++++++++++++++++----------
5 files changed, 20 insertions(+), 12 deletions(-)
---
diff --git a/data/pixmaps/Makefile.am b/data/pixmaps/Makefile.am
index 2cc5495..f08962d 100644
--- a/data/pixmaps/Makefile.am
+++ b/data/pixmaps/Makefile.am
@@ -3,8 +3,7 @@
glabels_pixmapsdir = $(datadir)/$(GLABELS_BRANCH)/pixmaps
glabels_pixmaps_DATA = \
- glabels-splash.png \
- glabels-about-logo.png \
+ glabels-logo.png \
new-select.png \
new-rotate.png \
new-confirm.png \
diff --git a/data/pixmaps/glabels-logo.png b/data/pixmaps/glabels-logo.png
new file mode 100644
index 0000000..2cd0f0e
Binary files /dev/null and b/data/pixmaps/glabels-logo.png differ
diff --git a/src/ui-commands.c b/src/ui-commands.c
index 89203b9..133fec9 100644
--- a/src/ui-commands.c
+++ b/src/ui-commands.c
@@ -1133,6 +1133,9 @@ gl_ui_cmd_help_about (GtkAction *action,
"Jim Evins",
" ",
_("Glabels includes contributions from:"),
+ "Mario Blättermann",
+ "Robin Stuart",
+ "Samual Lown",
"Frederic Ruaudel",
"Wayne Schuller",
"Emmanuel Pacaud",
@@ -1142,14 +1145,19 @@ gl_ui_cmd_help_about (GtkAction *action,
_("or visit http://glabels.org/"),
NULL
};
+
+ const gchar *documenters[] = {
+ "Jim Evins",
+ "Mario Blättermann",
+ NULL
+ };
const gchar *artists[] = {
- "Nestor Di",
"Jim Evins",
NULL
};
-
- const gchar *copy_text = "Copyright \xc2\xa9 2001-2009 Jim Evins";
+
+ const gchar *copy_text = "Copyright \xc2\xa9 2001-2010 Jim Evins";
const gchar *about_text = _("A label and business card creation program.\n");
@@ -1182,23 +1190,24 @@ gl_ui_cmd_help_about (GtkAction *action,
} else {
- pixbuf_filename = g_build_filename (GLABELS_DATA_DIR, "pixmaps", "glabels-splash.png", NULL);
+ pixbuf_filename = g_build_filename (GLABELS_DATA_DIR, "pixmaps", "glabels-logo.png", NULL);
pixbuf = gdk_pixbuf_new_from_file (pixbuf_filename, NULL);
g_free (pixbuf_filename);
about = gtk_about_dialog_new ();
- gtk_about_dialog_set_program_name (GTK_ABOUT_DIALOG(about), _("glabels"));
+ gtk_window_set_title (GTK_WINDOW(about), _("About glabels"));
+ gtk_about_dialog_set_program_name (GTK_ABOUT_DIALOG(about), "glabels");
gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(about), VERSION);
gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG(about), copy_text);
gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(about), about_text);
gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(about), url);
gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG(about), pixbuf);
- gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about), authors);
- gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG(about), artists);
- gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG(about),
- translator_credits);
- gtk_about_dialog_set_license (GTK_ABOUT_DIALOG(about), license);
+ gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about), authors);
+ gtk_about_dialog_set_documenters (GTK_ABOUT_DIALOG(about), documenters);
+ gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG(about), artists);
+ gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG(about), translator_credits);
+ gtk_about_dialog_set_license (GTK_ABOUT_DIALOG(about), license);
gtk_window_set_destroy_with_parent (GTK_WINDOW (about), TRUE);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]