some icons for the Applications category.

Stay tuned.


SVN revision: 27898
This commit is contained in:
manowarrior 2007-01-10 19:26:39 +00:00 committed by manowarrior
parent df95e9fec9
commit ff4c6d9cf8
6 changed files with 70 additions and 6 deletions

View File

@ -100,6 +100,9 @@ images {
image: "e17_icon_file_icons.png" COMP;
image: "e17_icon_desklock_menu.png" COMP;
image: "e17_icon_menu_settings.png" COMP;
image: "e17_icon_ibar_applications.png" COMP;
image: "e17_icon_restart_applications.png" COMP;
image: "e17_icon_startup_applications.png" COMP;
}
group {
@ -2148,6 +2151,64 @@ group {
}
}
}
group {
name: "e/icons/enlightenment/ibar_applications";
max: 64 64;
parts {
part {
name: "icon";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
max: 64 64;
image {
normal: "e17_icon_ibar_applications.png";
}
}
}
}
}
group {
name: "e/icons/enlightenment/restart_applications";
max: 64 64;
parts {
part {
name: "icon";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
max: 64 64;
image {
normal: "e17_icon_restart_applications.png";
}
}
}
}
}
group {
name: "e/icons/enlightenment/startup_applications";
max: 64 64;
parts {
part {
name: "icon";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
max: 64 64;
image {
normal: "e17_icon_startup_applications.png";
}
}
}
}
}

View File

@ -520,5 +520,8 @@ e17_icon_extensions.png \
e17_icon_advanced.png \
e17_icon_file_icons.png \
e17_icon_imc.png \
e17_icon_menu_settings.png
e17_icon_menu_settings.png \
e17_icon_ibar_applications.png \
e17_icon_restart_applications.png \
e17_icon_startup_applications.png

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -404,9 +404,9 @@ _e_configure_fill_cat_list(void *data)
_e_configure_item_add(cat, _("Startup"), "enlightenment/startup", e_int_config_startup);
cat = _e_configure_category_add(eco, _("Applications"), "enlightenment/applications");
_e_configure_item_add(cat, _("IBar Applications"), "enlightenment/applications", e_int_config_apps_ibar);
_e_configure_item_add(cat, _("Restart Applications"), "enlightenment/applications", e_int_config_apps_restart);
_e_configure_item_add(cat, _("Startup Applications"), "enlightenment/applications", e_int_config_apps_startup);
_e_configure_item_add(cat, _("IBar Applications"), "enlightenment/ibar_applications", e_int_config_apps_ibar);
_e_configure_item_add(cat, _("Restart Applications"), "enlightenment/restart_applications", e_int_config_apps_restart);
_e_configure_item_add(cat, _("Startup Applications"), "enlightenment/startup_applications", e_int_config_apps_startup);
cat = _e_configure_category_add(eco, _("Screen"), "enlightenment/screen_setup");
_e_configure_item_add(cat, _("Virtual Desktops"), "enlightenment/desktops", e_int_config_desks);
@ -428,7 +428,7 @@ _e_configure_fill_cat_list(void *data)
#else
_e_configure_item_add(cat, _("Applications Menu"), "enlightenment/applications", e_int_config_apps);
#endif
_e_configure_item_add(cat, _("Menu Settings"), "enlightenment/menus", e_int_config_menus);
_e_configure_item_add(cat, _("Menu Settings"), "enlightenment/menu_settings", e_int_config_menus);
cat = _e_configure_category_add(eco, _("Language"), "enlightenment/intl");
_e_configure_item_add(cat, _("Language Settings"), "enlightenment/intl", e_int_config_intl);
@ -440,7 +440,7 @@ _e_configure_fill_cat_list(void *data)
_e_configure_item_add(cat, _("Window List"), "enlightenment/winlist", e_int_config_winlist);
_e_configure_item_add(cat, _("Run Command"), "enlightenment/run", e_int_config_exebuf);
_e_configure_item_add(cat, _("Search Directories"), "enlightenment/directories", e_int_config_paths);
_e_configure_item_add(cat, _("File Icons"), "enlightenment/e", e_int_config_mime);
_e_configure_item_add(cat, _("File Icons"), "enlightenment/file_icons", e_int_config_mime);
cat = _e_configure_category_add(eco, _("Extensions"), "enlightenment/extensions");
_e_configure_item_add(cat, _("Modules"), "enlightenment/modules", e_int_config_modules);