Remove dup entry for mixer in b_and_w, Made widget/new for use in modules as its not really the same as 'add' in most cases. Applied that change in the ICM module so its uses the right widget name, added a pager and mixer icon to bling aswell... also, filled out some dummy icons in blingbling. Will make some icons for those soon. The idea is to make icons that can be used in blingbling and the new theme. Removed a whole lot of whitespace too, thanks to Scite. Its turned off now.

SVN revision: 36201
This commit is contained in:
toma 2008-09-24 05:58:55 +00:00 committed by toma
parent 1bf597650f
commit 3d453c017d
3 changed files with 318 additions and 204 deletions

View File

@ -41,6 +41,8 @@ images {
image: "e17_icon_regenerate_menus.png" LOSSY 90;
image: "e17_pager_window.png" COMP;
image: "e17_icon_pager.png" COMP;
image: "e17_icon_mixer.png" COMP;
image: "e17_icon_right_arrow.png" COMP;
image: "e17_icon_up_arrow.png" COMP;
@ -2292,6 +2294,116 @@ group {
}
}
group {
name: "e/icons/enlightenment/pager";
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_pager.png";
}
}
}
}
}
group {
name: "e/icons/enlightenment/mixer";
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_mixer.png";
}
}
}
}
}
group {
name: "e/icons/widget/config";
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_configuration.png";
}
}
}
}
}
// Dummy icon filler. Replace these with their own group and icon.
group {
name: "e/icons/enlightenment/engine";
alias: "e/icons/enlightenment/profiles";
alias: "e/icons/enlightenment/add_application";
alias: "e/icons/enlightenment/picture";
alias: "e/icons/enlightenment/gradient";
alias: "e/icons/enlightenment/website";
alias: "e/icons/enlightenment/swap";
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_e_0.png";
}
}
}
}
}
group {
name: "e/icons/widget/add";
alias: "e/icons/widget/del";
//alias: "e/icons/widget/config";
alias: "e/icons/widget/new";
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_e_0.png";
}
}
}
}
}

View File

@ -390,6 +390,7 @@ e17_icon_logout.png \
e17_icon_lost_windows.png \
e17_icon_menu_settings.png \
e17_icon_menus.png \
e17_icon_mixer.png \
e17_icon_module.png \
e17_icon_mouse.png \
e17_icon_mouse_clean.png \
@ -398,6 +399,7 @@ e17_icon_mouse_left.png \
e17_icon_mouse_middle.png \
e17_icon_mouse_right.png \
e17_icon_mouse_wheel.png \
e17_icon_pager.png \
e17_icon_performance.png \
e17_icon_reboot.png \
e17_icon_regenerate_menus.png \

View File

@ -894,7 +894,7 @@ _advanced_create_widgets(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data
ol = e_widget_list_add(evas, 1, 1);
o = e_widget_button_add(evas, _("New"), "widget/add", _cb_new, cfdata, NULL);
o = e_widget_button_add(evas, _("New"), "widget/new", _cb_new, cfdata, NULL);
e_widget_list_object_append(ol, o, 1, 0, 0.5);
o = e_widget_button_add(evas, _("Import..."), "enlightenment/imc", _cb_import, cfdata, NULL);
e_widget_list_object_append(ol, o, 1, 0, 0.5);