Update icons and about imagery

This commit is contained in:
Andy Williams 2015-05-26 23:59:16 +01:00
parent fe5411b5c3
commit 64f33b0823
7 changed files with 10 additions and 2 deletions

View File

@ -2,6 +2,7 @@ ajwillia.ms (Andy Williams) <andy@andywilliams.me>
wilsonk (Kelly Wilson) <wilsonk@cpsc.ucalgary.ca>
Windows compatibility thanks to Vincent Torri <vincent.torri@gmail.com>
Icon created by The Rasterman (Carsten Haitzler) <raster@rasterman.com>
With sections from Ecrire by Tom Hacohen <tom@stosb.com>
Clang syntax higlighting from cedric and TAsn in the edi PROTO project

View File

@ -1,3 +1,7 @@
2015-05-26 ajwillia.ms (Andy Williams)
* Add new icon from raster and update welcome/about image layouts
2015-05-18 ajwillia.ms (Andy Williams)
* Remember open tabs and windows per project

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -1,6 +1,8 @@
MAINTAINERCLEANFILES = Makefile.in
imagesdir = $(datadir)/$(PACKAGE)/images
images_DATA = welcome.png
images_DATA = \
about.png \
welcome.png
EXTRA_DIST = $(images_DATA)

BIN
data/images/about.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 94 KiB

View File

@ -40,10 +40,11 @@ edi_about_show(Evas_Object *mainwin)
elm_win_resize_object_add(win, table);
evas_object_show(table);
snprintf(buf, sizeof(buf), "%s/images/welcome.png", elm_app_data_dir_get());
snprintf(buf, sizeof(buf), "%s/images/about.png", elm_app_data_dir_get());
bg = elm_bg_add(win);
elm_bg_option_set(bg, ELM_BG_OPTION_CENTER);
elm_bg_file_set(bg, buf, NULL);
elm_bg_option_set(bg, ELM_BG_OPTION_SCALE);
evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(bg, EVAS_HINT_FILL, EVAS_HINT_FILL);
elm_table_pack(table, bg, 0, 0, 1, 1);