add gradient dialog icons.

the diagonal up one looks a bit odd, but that's whats being generated right now. need to fix edje gradient fills first.


SVN revision: 24956
This commit is contained in:
rephorm 2006-08-20 22:01:28 +00:00 committed by rephorm
parent 1c8c6ee6cb
commit e84d43ddba
3 changed files with 216 additions and 0 deletions

View File

@ -21,6 +21,15 @@ fonts {
font: "VeraBd.ttf" "Edje-Vera-Bold";
}
spectra {
spectrum {
name: "black_to_trans";
color: 0 0 0 255 1;
color: 0 0 0 0 1;
}
}
collections {
#include "default_background.edc"
#include "default_battery.edc"

View File

@ -67,6 +67,7 @@ images {
image: "e17_wallpaper_center.png" COMP;
image: "e17_wallpaper_screen.png" COMP;
image: "e17_wallpaper_center_flat.png" COMP;
image: "e17_wallpaper_grad_screen.png" COMP;
}
group {
@ -1364,3 +1365,209 @@ group {
}
}
}
group {
name: "icons/enlightenment/gradient_h";
max: 24 24;
parts {
part {
name: "bg";
type: GRADIENT;
mouse_events: 0;
description {
state: "default" 0.0;
rel1 {
to: "screen";
}
rel2 {
to: "screen";
}
gradient {
spectrum: "black_to_trans";
}
fill {
angle: 270;
}
}
}
part {
name: "screen";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
image {
normal: "e17_wallpaper_grad_screen.png";
border: 2 2 2 2;
}
}
}
}
}
group {
name: "icons/enlightenment/gradient_v";
max: 24 24;
parts {
part {
name: "bg";
type: GRADIENT;
mouse_events: 0;
description {
state: "default" 0.0;
rel1 {
to: "screen";
}
rel2 {
to: "screen";
}
gradient {
spectrum: "black_to_trans";
}
fill {
angle: 0;
}
}
}
part {
name: "screen";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
image {
normal: "e17_wallpaper_grad_screen.png";
border: 2 2 2 2;
}
}
}
}
}
group {
name: "icons/enlightenment/gradient_du";
max: 24 24;
parts {
part {
name: "bg";
type: GRADIENT;
mouse_events: 0;
description {
state: "default" 0.0;
rel1 {
to: "screen";
}
rel2 {
to: "screen";
}
gradient {
spectrum: "black_to_trans";
}
fill {
angle: 225;
}
}
}
part {
name: "screen";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
image {
normal: "e17_wallpaper_grad_screen.png";
border: 2 2 2 2;
}
}
}
}
}
group {
name: "icons/enlightenment/gradient_dd";
max: 24 24;
parts {
part {
name: "bg";
type: GRADIENT;
mouse_events: 0;
description {
state: "default" 0.0;
rel1 {
to: "screen";
}
rel2 {
to: "screen";
}
gradient {
spectrum: "black_to_trans";
}
fill {
angle: 315;
}
}
}
part {
name: "screen";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
image {
normal: "e17_wallpaper_grad_screen.png";
border: 2 2 2 2;
}
}
}
}
}
group {
name: "icons/enlightenment/gradient_rad";
max: 24 24;
parts {
part {
name: "bg";
type: GRADIENT;
mouse_events: 0;
description {
state: "default" 0.0;
rel1 {
to: "screen";
}
rel2 {
to: "screen";
}
gradient {
spectrum: "black_to_trans";
type: "radial";
}
fill {
origin.relative: 0.5 0.5;
}
}
}
part {
name: "screen";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
image {
normal: "e17_wallpaper_grad_screen.png";
border: 2 2 2 2;
}
}
}
}
}

Binary file not shown.