summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-07-04 17:38:10 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-07-04 17:38:10 (GMT)
commit7dc9013e449529117dda8e3ecc97313e70b757a1 (patch)
tree5f8cb3dacea32e7a90814e4cecf2db95b7dc8a77
parent2bf52fcc65f066186b2b5ada7bad4d41770caf01 (diff)
Redrawn a nicer logo for Chrysalide.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@543 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
-rw-r--r--pixmaps/Makefile.am9
-rw-r--r--pixmaps/before-after.pngbin0 -> 47351 bytes
-rw-r--r--pixmaps/chrysalide-128.pngbin0 -> 14809 bytes
-rw-r--r--pixmaps/chrysalide-32.pngbin0 -> 2311 bytes
-rw-r--r--pixmaps/chrysalide-64.pngbin0 -> 5717 bytes
-rw-r--r--pixmaps/chrysalide-full.pngbin0 -> 28830 bytes
-rw-r--r--pixmaps/chrysalide.xcfbin0 -> 869393 bytes
-rw-r--r--src/dialogs/about.c2
-rw-r--r--src/editor.c6
9 files changed, 10 insertions, 7 deletions
diff --git a/pixmaps/Makefile.am b/pixmaps/Makefile.am
index dbee07d..e6dd92a 100644
--- a/pixmaps/Makefile.am
+++ b/pixmaps/Makefile.am
@@ -1,8 +1,8 @@
APP_ICONS = \
- chrysalide_32.png \
- chrysalide_64.png \
- chrysalide_128.png
+ chrysalide-32.png \
+ chrysalide-64.png \
+ chrysalide-128.png
REVISION_PIX = \
revision_0.png \
@@ -29,6 +29,7 @@ LIST_ICONS = \
symbol_routine_classic.png
MISC = \
+ chrysalide-full.png \
welcome.png
EXTRA_DIST = \
@@ -37,8 +38,10 @@ EXTRA_DIST = \
nil.png \
breakpoint_disabled.png \
breakpoint_normal.png \
+ chrysalide.xcf \
openida.xcf \
openida_text.xcf \
+ before-after.png \
$(REVISION_PIX) \
$(TOOLBAR_BUTTONS) \
$(LIST_ICONS) \
diff --git a/pixmaps/before-after.png b/pixmaps/before-after.png
new file mode 100644
index 0000000..21e9a3a
--- /dev/null
+++ b/pixmaps/before-after.png
Binary files differ
diff --git a/pixmaps/chrysalide-128.png b/pixmaps/chrysalide-128.png
new file mode 100644
index 0000000..c7eebb6
--- /dev/null
+++ b/pixmaps/chrysalide-128.png
Binary files differ
diff --git a/pixmaps/chrysalide-32.png b/pixmaps/chrysalide-32.png
new file mode 100644
index 0000000..6bc7d63
--- /dev/null
+++ b/pixmaps/chrysalide-32.png
Binary files differ
diff --git a/pixmaps/chrysalide-64.png b/pixmaps/chrysalide-64.png
new file mode 100644
index 0000000..aa3520d
--- /dev/null
+++ b/pixmaps/chrysalide-64.png
Binary files differ
diff --git a/pixmaps/chrysalide-full.png b/pixmaps/chrysalide-full.png
new file mode 100644
index 0000000..a153353
--- /dev/null
+++ b/pixmaps/chrysalide-full.png
Binary files differ
diff --git a/pixmaps/chrysalide.xcf b/pixmaps/chrysalide.xcf
new file mode 100644
index 0000000..91370a6
--- /dev/null
+++ b/pixmaps/chrysalide.xcf
Binary files differ
diff --git a/src/dialogs/about.c b/src/dialogs/about.c
index 7ed38fd..e3424ac 100644
--- a/src/dialogs/about.c
+++ b/src/dialogs/about.c
@@ -88,7 +88,7 @@ GtkWidget *create_about_dialog(GtkWindow *parent)
/* Images principales */
- filename = find_pixmap_file("openida.png");
+ filename = find_pixmap_file("chrysalide-full.png");
image = qck_create_image(NULL, NULL, filename);
gtk_fixed_put(GTK_FIXED(fixed), image, 10, 10);
gtk_widget_set_size_request(image, 330, 300);
diff --git a/src/editor.c b/src/editor.c
index d7b3ff9..7e041f4 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -99,15 +99,15 @@ static GList *build_editor_icons_list(void)
result = NULL;
- pixbuf = get_pixbuf_from_file("chrysalide_32.png");
+ pixbuf = get_pixbuf_from_file("chrysalide-32.png");
if (pixbuf != NULL)
result = g_list_append(result, pixbuf);
- pixbuf = get_pixbuf_from_file("chrysalide_64.png");
+ pixbuf = get_pixbuf_from_file("chrysalide-64.png");
if (pixbuf != NULL)
result = g_list_append(result, pixbuf);
- pixbuf = get_pixbuf_from_file("chrysalide_128.png");
+ pixbuf = get_pixbuf_from_file("chrysalide-128.png");
if (pixbuf != NULL)
result = g_list_append(result, pixbuf);