icons: More icons.

Hopefully this will encourage someone to create uniqu
e icons
for this project. For now using Faenza which are nice
This commit is contained in:
Alastair Poole 2019-12-26 19:04:08 +00:00
parent faaee7c0f9
commit e0ed366414
4 changed files with 6 additions and 5 deletions

View File

@ -9,7 +9,7 @@ install_data(['document-new.png', 'window-close.png', 'window-close.png',
'application-exit.png', 'edit-find.png', 'window-new.png',
'object-flip-horizontal.png', 'object-flip-vertical.png',
'edit-clear.png','applications-electronics.png', 'mail-send.png',
'dialog-error.png', 'go-home.png'
'dialog-error.png', 'go-home.png', 'network-server.png'
],
install_dir: join_paths(get_option('prefix'), get_option('datadir'), 'edi', 'icons')
)

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -987,7 +987,7 @@ edi_settings_show(Evas_Object *mainwin, Edi_Settings_Tab type)
elm_toolbar_item_selected_set(default_it, EINA_TRUE);
evas_object_show(naviframe);
evas_object_resize(win, 480 * elm_config_scale_get(), 320 * elm_config_scale_get());
evas_object_resize(win, 480 * elm_config_scale_get(), 360 * elm_config_scale_get());
evas_object_show(win);
return win;

View File

@ -9,6 +9,7 @@
#include "edi_screens.h"
#include "edi_config.h"
#include "edi_theme.h"
#include "edi_private.h"
@ -846,7 +847,7 @@ Evas_Object *edi_welcome_show()
_edi_project_box = frame;
_edi_welcome_add_recent_projects(frame);
button = _edi_welcome_button_create(_("Open Existing Project"), "folder",
button = _edi_welcome_button_create(_("Open Existing Project"), edi_theme_icon_path_get("folder"),
box, _edi_welcome_project_choose_cb, NULL);
elm_box_pack_end(box, button);
@ -866,11 +867,11 @@ Evas_Object *edi_welcome_show()
elm_box_pack_end(box, image);
evas_object_show(image);
button = _edi_welcome_button_create(_("Create New Project"), "folder-new",
button = _edi_welcome_button_create(_("Create New Project"), edi_theme_icon_path_get("folder-new"),
box, _edi_welcome_project_new_cb, naviframe);
elm_box_pack_end(box, button);
button = _edi_welcome_button_create(_("Checkout Existing Project"), "network-server",
button = _edi_welcome_button_create(_("Checkout Existing Project"), edi_theme_icon_path_get("network-server"),
box, _edi_welcome_project_clone_cb, naviframe);
elm_box_pack_end(box, button);