efl/data/elementary/themes/edc/tiling.edc

73 lines
2.0 KiB
Plaintext
Raw Normal View History

2019-03-31 17:02:10 -07:00
group { "e/modules/tiling/indicator";
2019-05-09 08:19:11 -07:00
images.image: "outline.png" COMP;
2019-03-31 17:09:55 -07:00
images.image: "diagonal_stripes.png" COMP;
2019-03-31 17:02:10 -07:00
parts {
2019-03-31 17:09:55 -07:00
part { name: "base"; mouse_events: 0;
description { state: "default" 0.0;
2019-05-09 08:19:11 -07:00
image.normal: "outline.png";
2019-03-31 17:09:55 -07:00
image.border: 4 4 4 4;
image.middle: 0;
fill.smooth: 0;
2019-05-09 08:19:11 -07:00
color: 51 153 255 255;
2019-03-31 17:02:10 -07:00
}
}
image { "background";
desc { "default";
2019-05-09 08:19:11 -07:00
image.normal: "diagonal_stripes.png";
color: 51 153 255 50;
TILED_PATTERN(240, 240)
2019-03-31 17:02:10 -07:00
}
}
swallow { "e.client.icon";
2019-03-31 17:09:55 -07:00
scale: 1;
2019-03-31 17:02:10 -07:00
desc { "default";
2019-03-31 17:09:55 -07:00
min: 24 24;
2019-03-31 17:02:10 -07:00
rel1 {
relative: 0.5 0.5;
}
rel2 {
relative: 0.5 0.5;
}
}
}
}
}
group { name: "e/modules/tiling/main";
max: 160 160;
images.image: "tiling-horiz.png" COMP;
images.image: "tiling-vert.png" COMP;
images.image: "tiling-float.png" COMP;
parts {
part { name: "base";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
2019-08-01 05:12:47 -07:00
image.normal: "tiling-vert.png";
2019-03-31 17:02:10 -07:00
color: 160 160 160 255;
}
description { state: "vertical" 0.0;
inherit: "default" 0.0;
2019-08-01 05:12:47 -07:00
image.normal: "tiling-horiz.png";
2019-03-31 17:02:10 -07:00
}
description { state: "floating" 0.0;
inherit: "default" 0.0;
image.normal: "tiling-float.png";
}
}
}
programs {
program { signal: "tiling,mode,horizontal"; source: "e";
action: STATE_SET "default" 0.0;
target: "base";
}
program { signal: "tiling,mode,vertical"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "base";
}
program { signal: "tiling,mode,floating"; source: "e";
action: STATE_SET "floating" 0.0;
target: "base";
}
}
}