theme - the great flattening of terminology

match new elm flat theme... yay!
This commit is contained in:
Carsten Haitzler 2021-12-10 22:34:25 +00:00
parent f44725fcbc
commit 58c718d1f5
148 changed files with 3378 additions and 7291 deletions

View File

@ -11,7 +11,7 @@ license = CC-BY-SA-4.0
[Colors] [Colors]
bg = #d5ccba bg = #d5ccba
main = #964700 main = #964700
hl = #ffffff hl = #332211
end_sel = #ff3300 end_sel = #ff3300
tab_missed_1 = #ff9933 tab_missed_1 = #ff9933
tab_missed_2 = #ff3300 tab_missed_2 = #ff3300

View File

@ -11,7 +11,7 @@ license = MIT
[Colors] [Colors]
bg = #eeeeee bg = #eeeeee
main = #b7141e main = #b7141e
hl = #ffffff hl = #222222
end_sel = #88003d end_sel = #88003d
tab_missed_1 = #ff9933 tab_missed_1 = #ff9933
tab_missed_2 = #ff3300 tab_missed_2 = #ff3300

View File

@ -11,7 +11,7 @@ license = MIT
[Colors] [Colors]
bg = #f7f2f2 bg = #f7f2f2
main = #e796b0 main = #e796b0
hl = #ffffff hl = #222222
end_sel = #ff3300 end_sel = #ff3300
tab_missed_1 = #ff9933 tab_missed_1 = #ff9933
tab_missed_2 = #ff3300 tab_missed_2 = #ff3300

View File

@ -10,8 +10,8 @@ license = MIT
[Colors] [Colors]
bg = #fdf6e3 bg = #fdf6e3
main = #3399ff main = #aa9966
hl = #ffffff hl = #222222
end_sel = #ff0000 end_sel = #ff0000
tab_missed_1 = #ff9933 tab_missed_1 = #ff9933
tab_missed_2 = #ff3300 tab_missed_2 = #ff3300

View File

@ -11,7 +11,7 @@ license = Public Domain
[Colors] [Colors]
bg = #eeeeec bg = #eeeeec
main = #ce5c00 main = #ce5c00
hl = #ffffff hl = #222222
end_sel = #ff3300 end_sel = #ff3300
tab_missed_1 = #ff9933 tab_missed_1 = #ff9933
tab_missed_2 = #ff3300 tab_missed_2 = #ff3300

View File

@ -16,7 +16,202 @@ color_classes {
efl_version: 1 20; efl_version: 1 20;
#define IMAGE_RING(x, sz) \
set { name: x; \
image { image: x"1.png" COMP; size: (sz/2) (sz/2) 99999 99999; } \
image { image: x"2.png" COMP; size: (sz/4) (sz/4) (sz/2) (sz/2); } \
image { image: x"3.png" COMP; size: (sz/8) (sz/8) (sz/4) (sz/4); } \
image { image: x"4.png" COMP; size: (sz/16) (sz/16) (sz/8) (sz/8); } \
image { image: x"5.png" COMP; size: 0 0 (sz/16) (sz/16); } \
}
#define BUSY(x, start1, start2, stop1, stop2) \
program { signal: start1; source: start2; \
action: STATE_SET "visible" 0.0; \
transition: SINUSOIDAL 1.0 USE_DURATION_FACTOR 1; \
target: "busy"; } \
program { signal: start1; source: start2; \
action: STATE_SET "default" 0.0; \
target: "busy1"; \
target: "busy2"; \
target: "busy3"; \
after: "busy-p11"; \
after: "busy-p21"; \
after: "busy-p31"; } \
program { signal: stop1; source: stop2; \
action: STATE_SET "default" 0.0; \
transition: SINUSOIDAL 1.0 USE_DURATION_FACTOR 1; \
target: "busy"; \
after: "busy_stop2"; } \
program { name: "busy_stop2"; \
action: ACTION_STOP; \
target: "busy-p11"; \
target: "busy-p12"; \
target: "busy-p21"; \
target: "busy-p22"; \
target: "busy-p31"; \
target: "busy-p32"; } \
part { name: "busy"; type: RECT; \
description { state: "default" 0.0; \
rel1.to: x; rel2.to: x; \
color: 255 255 255 0; /* no cc */ visible: 0; } \
description { state: "visible" 0.0; \
inherit: "default" 0.0; \
color: 255 255 255 255; /* no cc */ visible: 1; } } \
part { name: "busy1"; mouse_events: 0; \
clip_to: "busy"; \
description { state: "default" 0.0; \
rel1.to: "busy"; rel2.to: "busy"; \
aspect: 1.0 1.0; aspect_preference: BOTH; \
image.normal: "ringa"; \
color_class: "/fg/normal/progress/busy/1"; \
map.on: 1; \
map.smooth: 1; \
map.rotation.center: "busy"; \
map.rotation.z: 0; } \
description { state: "default" 1.0; \
inherit: "default" 0.0; \
map.rotation.z: 360; } } \
program { name: "busy-p11"; \
action: STATE_SET "default" 1.0; \
transition: LINEAR 1.0; \
target: "busy1"; \
after: "busy-p12"; } \
program { name: "busy-p12"; \
action: STATE_SET "default" 0.0; \
target: "busy1"; \
after: "busy-p11"; } \
part { name: "busy2"; mouse_events: 0; \
clip_to: "busy"; \
description { state: "default" 0.0; \
rel1.to: "busy"; rel2.to: "busy"; \
aspect: 1.0 1.0; aspect_preference: BOTH; \
image.normal: "ringb"; \
color_class: "/fg/normal/progress/busy/2"; \
map.on: 1; \
map.smooth: 1; \
map.rotation.center: "busy"; \
map.rotation.z: 420; } \
description { state: "default" 1.0; \
inherit: "default" 0.0; \
map.rotation.z: 80; } } \
program { name: "busy-p21"; \
action: STATE_SET "default" 1.0; \
transition: LINEAR 0.7; \
target: "busy2"; \
after: "busy-p22"; } \
program { name: "busy-p22"; \
action: STATE_SET "default" 0.0; \
target: "busy2"; \
after: "busy-p21"; } \
part { name: "busy3"; mouse_events: 0; \
clip_to: "busy"; \
description { state: "default" 0.0; \
rel1.to: "busy"; rel2.to: "busy"; \
aspect: 1.0 1.0; aspect_preference: BOTH; \
image.normal: "ringc"; \
color_class: "/fg/normal/progress/busy/3"; \
map.on: 1; \
map.smooth: 1; \
map.rotation.center: "busy"; \
map.rotation.z: 170; } \
description { state: "default" 1.0; \
inherit: "default" 0.0; \
map.rotation.z: 530; } } \
program { name: "busy-p31"; \
action: STATE_SET "default" 1.0; \
transition: LINEAR 1.4; \
target: "busy3"; \
after: "busy-p32"; } \
program { name: "busy-p32"; \
action: STATE_SET "default" 0.0; \
target: "busy3"; \
after: "busy-p31"; }
#define I060(_NAME, _FILE) \
set { name: _NAME; \
image { image: _FILE"-060.png" COMP; size: 31 31 60000 60000; } \
image { image: _FILE"-030.png" COMP; size: 16 16 30 30; } \
image { image: _FILE"-015.png" COMP; size: 0 0 15 15; } \
}
collections { collections {
color_tree {
":bg" {
"/bg/normal/tab";
"/bg/normal/background";
}
":bg-dark" {
"/bg/selected/titlebar";
"/bg/normal/term/font_preview";
}
":dim-dark" {
"/bg/normal/term/keybinding";
}
":fg" {
"/fg/normal/term/tab/title/text";
"/fg/normal/tab/term/icon/grouped";
"/fg/normal/term/tab_button";
"/fg/pressed/term/miniview/close";
"/fg/normal/term/sel/title/text";
"/fg/normal/term/drag/target";
}
":fg-light" {
"/fg/normal/progress/busy/1";
"/fg/normal/term/tabcount";
"/fg/selected/term/tab/title/close";
"/fg/selected/term/tab/title/text";
"/fg/pressed/term/tab_button";
"/fg/normal/term/keybinding";
"/fg/normal/term/miniview/close";
"/fg/normal/term/selection/arrow/left";
"/fg/normal/term/selection/arrow/up";
"/fg/normal/term/selection/arrow/right";
"/fg/normal/term/selection/arrow/down";
"/fg/selected/term/sel/title/text";
"/bg/normal/term/drag/target";
"/fg/selected/term/drag/target";
}
":light-medium" {
"/fg/normal/progress/busy/2";
}
":selected-medium" {
"/fg/normal/progress/busy/3";
}
":bg-dark" {
"/bg-dark/normal/background";
}
":bg-dark-alt" {
"/bg-dark-alt/normal/background";
};
":selected" {
"/bg/selected/tab/hilight";
"/fg/normal/term/text/tabcount";
"/bg/selected/media/position";
"/fg/selected/term/miniview/screen";
"/bg/selected/term/text";
};
":selected-alt" {
"/fg/normal/term/text/tabcount/missed";
"/fg/selected/term/tab/title/text/bell";
"/fg/disabled/term/miniview/screen";
"/bg/selected/term/drag/target";
};
":shadow" {
"/shadow/normal/tab";
"/shadow/normal/term/sel/item";
"/shadow/normal/term/drag_thumb";
}
":shadow-selected" {
"/shadow/selected/tab";
"/shadow/selected/term/sel/item";
}
}
IMAGE_RING("ringa", 160)
IMAGE_RING("ringb", 160)
IMAGE_RING("ringc", 160)
#include "default/keybinding.edc" #include "default/keybinding.edc"
#include "default/miniview.edc" #include "default/miniview.edc"
#include "default/core.edc" #include "default/core.edc"
@ -34,3 +229,4 @@ collections {
#include "default/tab_drag_thumb.edc" #include "default/tab_drag_thumb.edc"
#include "default/color_preview.edc" #include "default/color_preview.edc"
} }

View File

@ -1,10 +1,8 @@
/////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////
//// the about box content image //// the about box content image
group { name: "terminology/about"; group { name: "terminology/about";
images { images.image: "ab_base.png" COMP;
image: "ab_base.png" COMP; images.image: "ab_shell.png" COMP;
image: "ab_shell.png" COMP;
}
styles { styles {
style { name: "aboutstyle"; style { name: "aboutstyle";
base: "font=Sans font_size=8 color=#3f1 style=glow glow2_color=#3f13 glow_color=#3f11 wrap=word"; base: "font=Sans font_size=8 color=#3f1 style=glow glow2_color=#3f13 glow_color=#3f11 wrap=word";
@ -12,43 +10,29 @@ group { name: "terminology/about";
} }
} }
parts { parts {
part { name: "base"; part { name: "base"; mouse_events: 0;
mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1 { rel.to: "shell";
relative: (39/198) (27/198); rel1.relative: (39/198) (27/198);
to: "shell"; rel2.relative: (151/198) (115/198);
}
rel2 {
relative: (151/198) (115/198);
to: "shell";
}
image.normal: "ab_base.png"; image.normal: "ab_base.png";
} }
} }
part { name: "baseclip"; type: RECT; part { name: "baseclip"; type: RECT;
description { state: "default" 0.0; description { state: "default" 0.0;
color: 255 255 255 255; rel.to: "base";
rel1.to: "base";
rel2.to: "base";
} }
} }
part { name: "terminology.text"; type: TEXTBLOCK; part { name: "terminology.text"; type: TEXTBLOCK;
clip_to: "baseclip";
mouse_events: 1;
scale: 1; scale: 1;
clip_to: "baseclip";
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
align: 0.5 0.0; align: 0.5 0.0;
max: 10000 10000; max: 10000 10000;
rel1 { rel.to: "base";
to: "base"; rel1.relative: 0.08 1.0;
relative: 0.08 1.0; rel2.relative: 0.97 1.0;
}
rel2 {
to: "base";
relative: 0.97 1.0;
}
text { text {
style: "aboutstyle"; style: "aboutstyle";
text: "Hello world.<br>This is <b>Terminology</b>, your friendly neighbourhood terminal.<br><br>This needs more text to test vertical scrolling to see if the animation works right.<br>I hope this will be enough now."; text: "Hello world.<br>This is <b>Terminology</b>, your friendly neighbourhood terminal.<br><br>This needs more text to test vertical scrolling to see if the animation works right.<br>I hope this will be enough now.";
@ -73,8 +57,7 @@ group { name: "terminology/about";
} }
} }
programs { programs {
program { program { signal: "begin"; source: "terminology";
signal: "begin"; source: "terminology";
action: ACTION_STOP; action: ACTION_STOP;
target: "show"; target: "show";
target: "show2"; target: "show2";

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,4 @@
group { name: "terminology/base"; group { name: "terminology/base";
images {
image: "pm_shadow.png" COMP;
image: "bg_bevel.png" COMP;
image: "bg_glint.png" COMP;
image: "lk_bottom.png" COMP;
image: "lk_left.png" COMP;
image: "lk_right.png" COMP;
}
parts { parts {
part { name: "terminology.content"; type: SWALLOW; part { name: "terminology.content"; type: SWALLOW;
description { state: "default" 0.0; description { state: "default" 0.0;
@ -20,39 +12,29 @@ group { name: "terminology/base";
rel1.offset: -100 -100; rel1.offset: -100 -100;
rel2.to: "terminology.cmdbox"; rel2.to: "terminology.cmdbox";
rel2.offset: 99 99; rel2.offset: 99 99;
color: 255 255 255 0; color: 255 255 255 0; // no cc
visible: 0; visible: 0;
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
color: 255 255 255 255; color: 255 255 255 255; // no cc
visible: 1; visible: 1;
} }
} }
part { name: "cmdshadow"; mouse_events: 0;
clip_to: "cmdclip";
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "cmdback";
rel1.offset: -32 -32;
rel2.to: "cmdback";
rel2.offset: 31 31;
image.normal: "pm_shadow.png";
image.border: 64 64 64 64;
fill.smooth: 0;
}
}
part { name: "cmdback"; type: RECT; part { name: "cmdback"; type: RECT;
scale: 1;
clip_to: "cmdclip"; clip_to: "cmdclip";
description { state: "default" 0.0; description { state: "default" 0.0;
color: 48 48 48 255; color: 48 48 48 255;
rel1.to: "terminology.cmdbox"; rel1.to: "terminology.cmdbox";
rel1.offset: -2 -2; rel1.offset: -4 -4;
rel2.to: "terminology.cmdbox"; rel2.to: "terminology.cmdbox";
rel2.offset: 1 1; rel2.offset: 3 3;
offscale;
} }
} }
part { name: "terminology.cmdbox"; type: SWALLOW; part { name: "terminology.cmdbox"; type: SWALLOW;
scale: 1;
clip_to: "cmdclip"; clip_to: "cmdclip";
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
@ -61,6 +43,7 @@ group { name: "terminology/base";
rel1.offset: 8 9; rel1.offset: 8 9;
rel2.offset: -9 9; rel2.offset: -9 9;
align: 0.5 0.0; align: 0.5 0.0;
offscale;
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
@ -69,53 +52,19 @@ group { name: "terminology/base";
align: 0.5 1.0; align: 0.5 1.0;
} }
} }
part { name: "cmdbevel"; mouse_events: 0; program { signal: "cmdbox,show"; source: "terminology";
clip_to: "cmdclip";
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "cmdback";
rel2.to: "cmdback";
image.normal: "bg_bevel.png";
image.border: 3 3 3 3;
image.middle: 0;
fill.smooth: 0;
}
}
part { name: "cmdglint"; mouse_events: 0;
clip_to: "cmdclip";
description { state: "default" 0.0;
fixed: 1 1;
min: 79 5;
max: 79 5;
rel1 {
to: "cmdback";
relative: 0.0 0.0;
offset: 0 0;
}
rel2 {
to: "cmdback";
relative: 1.0 0.0;
offset: -1 0;
}
image.normal: "bg_glint.png";
}
}
program {
signal: "cmdbox,show"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.4; transition: DECELERATE 0.2;
target: "cmdclip"; target: "cmdclip";
} }
program { program { signal: "cmdbox,show"; source: "terminology";
signal: "cmdbox,show"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
transition: SPRING 0.4 0.5 4; transition: SPRING 0.2 0.2 4;
target: "terminology.cmdbox"; target: "terminology.cmdbox";
} }
program { program { signal: "cmdbox,hide"; source: "terminology";
signal: "cmdbox,hide"; source: "terminology";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: ACCELERATE 0.5; transition: ACCELERATE 0.3;
target: "terminology.cmdbox"; target: "terminology.cmdbox";
target: "cmdclip"; target: "cmdclip";
} }
@ -183,7 +132,7 @@ group { name: "terminology/base";
color2: 136 255 136 40; color2: 136 255 136 40;
color3: 136 255 136 8; color3: 136 255 136 8;
text { text {
font: "Sans"; size: 11; font: "Sans"; size: 10;
text: "Twitter: @_Terminology_"; text: "Twitter: @_Terminology_";
align: 1.0 0.5; align: 1.0 0.5;
min: 1 1; min: 1 1;
@ -194,191 +143,10 @@ group { name: "terminology/base";
visible: 1; visible: 1;
} }
} }
part { name: "twitter.bottom"; program { signal: "mouse,clicked,1"; source: "twitter.txt";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "lk_bottom.png";
image.border: 9 9 0 0;
align: 0.5 1.0;
min: 20 8;
rel1 {
to: "twitter.txt";
offset: -6 -2;
relative: 0.0 1.0;
}
rel2 {
to: "twitter.txt";
offset: 5 -1;
}
color: 51 255 17 255;
fill.smooth: 0;
visible: 0;
}
description { state: "visible" 0.0;
inherit: "default";
visible: 1;
}
}
part { name: "twitter.l";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "lk_left.png";
align: 0.0 1.0;
min: 4 4;
rel1 {
to: "twitter.txt";
offset: 6 -2;
relative: 0.0 1.0;
}
rel2 {
to: "twitter.txt";
offset: 6 -2;
relative: 0.0 1.0;
}
color: 51 255 17 255;
visible: 0;
}
description { state: "visible" 0.0;
inherit: "default";
visible: 1;
}
description { state: "out" 0.0;
fixed: 1 1;
inherit: "visible" 0.0;
min: 16 16;
rel1 {
to: "twitter.txt";
offset: -10 -2;
}
rel2 {
to: "twitter.txt";
offset: -10 -2;
}
color: 51 255 17 255;
}
description { state: "out2" 0.0;
fixed: 1 1;
inherit: "visible" 0.0;
min: 32 32;
rel1 {
to: "twitter.txt";
offset: -26 -2;
}
rel2 {
to: "twitter.txt";
offset: -26 -2;
}
color: 51 255 17 0;
}
}
part { name: "twitter.r";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "lk_right.png";
align: 1.0 1.0;
min: 4 4;
rel1 {
to: "twitter.txt";
offset: -5 -1;
relative: 1.0 1.0;
}
rel2 {
to: "twitter.txt";
offset: -5 -1;
relative: 1.0 1.0;
}
color: 51 255 17 0;
visible: 0;
}
description { state: "visible" 0.0;
inherit: "default";
visible: 1;
}
description { state: "out" 0.0;
fixed: 1 1;
inherit: "visible" 0.0;
min: 16 16;
rel1 {
to: "twitter.txt";
offset: 9 -2;
}
rel2 {
to: "twitter.txt";
offset: 9 -2;
}
color: 51 255 17 255;
}
description { state: "out2" 0.0;
fixed: 1 1;
inherit: "visible" 0.0;
min: 32 32;
rel1 {
to: "twitter.txt";
offset: 25 -2;
}
rel2 {
to: "twitter.txt";
offset: 25 -2;
}
color: 51 255 17 0;
}
}
program { name: "twitter.show2";
action: STATE_SET "out2" 0.0;
transition: LINEAR 0.3;
target: "twitter.l";
target: "twitter.r";
after: "twitter.show3";
}
program { name: "twitter.show3";
action: STATE_SET "default" 0.0;
target: "twitter.l";
target: "twitter.r";
after: "twitter.show";
}
program {
name: "twitter.show_bottom";
signal: "mouse,in"; source: "twitter.txt";
action: STATE_SET "visible" 0.0;
target: "twitter.bottom";
}
program {
name: "twitter.show";
signal: "mouse,in"; source: "twitter.txt";
action: STATE_SET "out" 0.0;
transition: LINEAR 0.3;
target: "twitter.l";
target: "twitter.r";
after: "twitter.show2";
}
program {
signal: "mouse,out"; source: "twitter.txt";
action: STATE_SET "visible" 0.0;
target: "twitter.txt";
}
program {
signal: "mouse,out"; source: "twitter.txt";
action: ACTION_STOP;
target: "twitter.show";
target: "twitter.show2";
target: "twitter.show3";
}
program {
signal: "mouse,out"; source: "twitter.txt";
action: STATE_SET "default" 0.0;
target: "twitter.bottom";
target: "twitter.l";
target: "twitter.r";
}
program {
signal: "mouse,clicked,1"; source: "twitter.txt";
action: SIGNAL_EMIT "about,twitter" "terminology"; action: SIGNAL_EMIT "about,twitter" "terminology";
} }
program { program { signal: "mouse,clicked,3"; source: "twitter.txt";
signal: "mouse,clicked,3"; source: "twitter.txt";
action: SIGNAL_EMIT "about,twitter,ctx" "terminology"; action: SIGNAL_EMIT "about,twitter,ctx" "terminology";
} }
@ -417,7 +185,7 @@ group { name: "terminology/base";
color2: 136 255 136 40; color2: 136 255 136 40;
color3: 136 255 136 8; color3: 136 255 136 8;
text { text {
font: "Sans"; size: 11; font: "Sans"; size: 10;
text: "YouTube channel"; text: "YouTube channel";
align: 0.0 0.5; align: 0.0 0.5;
min: 1 1; min: 1 1;
@ -428,204 +196,21 @@ group { name: "terminology/base";
visible: 1; visible: 1;
} }
} }
part { name: "youtube.bottom"; program { signal: "mouse,clicked,1"; source: "youtube.txt";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "lk_bottom.png";
image.border: 9 9 0 0;
align: 0.5 1.0;
min: 20 8;
rel1 {
to: "youtube.txt";
offset: -6 -2;
relative: 0.0 1.0;
}
rel2 {
to: "youtube.txt";
offset: 5 -1;
}
color: 51 255 17 255;
fill.smooth: 0;
visible: 0;
}
description { state: "visible" 0.0;
inherit: "default";
visible: 1;
}
}
part { name: "youtube.l";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "lk_left.png";
align: 0.0 1.0;
min: 4 4;
rel1 {
to: "youtube.txt";
offset: 6 -2;
relative: 0.0 1.0;
}
rel2 {
to: "youtube.txt";
offset: 6 -2;
relative: 0.0 1.0;
}
color: 51 255 17 255;
visible: 0;
}
description { state: "visible" 0.0;
inherit: "default";
visible: 1;
}
description { state: "out" 0.0;
fixed: 1 1;
inherit: "visible" 0.0;
min: 16 16;
rel1 {
to: "youtube.txt";
offset: -10 -2;
}
rel2 {
to: "youtube.txt";
offset: -10 -2;
}
color: 51 255 17 255;
}
description { state: "out2" 0.0;
fixed: 1 1;
inherit: "visible" 0.0;
min: 32 32;
rel1 {
to: "youtube.txt";
offset: -26 -2;
}
rel2 {
to: "youtube.txt";
offset: -26 -2;
}
color: 51 255 17 0;
}
}
part { name: "youtube.r";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "lk_right.png";
align: 1.0 1.0;
min: 4 4;
rel1 {
to: "youtube.txt";
offset: -5 -1;
relative: 1.0 1.0;
}
rel2 {
to: "youtube.txt";
offset: -5 -1;
relative: 1.0 1.0;
}
color: 51 255 17 0;
visible: 0;
}
description { state: "visible" 0.0;
inherit: "default";
visible: 1;
}
description { state: "out" 0.0;
fixed: 1 1;
inherit: "visible" 0.0;
min: 16 16;
rel1 {
to: "youtube.txt";
offset: 9 -2;
}
rel2 {
to: "youtube.txt";
offset: 9 -2;
}
color: 51 255 17 255;
}
description { state: "out2" 0.0;
fixed: 1 1;
inherit: "visible" 0.0;
min: 32 32;
rel1 {
to: "youtube.txt";
offset: 25 -2;
}
rel2 {
to: "youtube.txt";
offset: 25 -2;
}
color: 51 255 17 0;
}
}
program { name: "youtube.show2";
action: STATE_SET "out2" 0.0;
transition: LINEAR 0.3;
target: "youtube.l";
target: "youtube.r";
after: "youtube.show3";
}
program { name: "youtube.show3";
action: STATE_SET "default" 0.0;
target: "youtube.l";
target: "youtube.r";
after: "youtube.show";
}
program {
name: "youtube.show_bottom";
signal: "mouse,in"; source: "youtube.txt";
action: STATE_SET "visible" 0.0;
target: "youtube.bottom";
}
program {
name: "youtube.show";
signal: "mouse,in"; source: "youtube.txt";
action: STATE_SET "out" 0.0;
transition: LINEAR 0.3;
target: "youtube.l";
target: "youtube.r";
after: "youtube.show2";
}
program {
signal: "mouse,out"; source: "youtube.txt";
action: STATE_SET "visible" 0.0;
target: "youtube.txt";
}
program {
signal: "mouse,out"; source: "youtube.txt";
action: ACTION_STOP;
target: "youtube.show";
target: "youtube.show2";
target: "youtube.show3";
}
program {
signal: "mouse,out"; source: "youtube.txt";
action: STATE_SET "default" 0.0;
target: "youtube.bottom";
target: "youtube.l";
target: "youtube.r";
}
program {
signal: "mouse,clicked,1"; source: "youtube.txt";
action: SIGNAL_EMIT "about,youtube" "terminology"; action: SIGNAL_EMIT "about,youtube" "terminology";
} }
program { program { signal: "mouse,clicked,3"; source: "youtube.txt";
signal: "mouse,clicked,3"; source: "youtube.txt";
action: SIGNAL_EMIT "about,youtube,ctx" "terminology"; action: SIGNAL_EMIT "about,youtube,ctx" "terminology";
} }
program { program { signal: "about,show"; source: "terminology";
signal: "about,show"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
transition: SPRING 1.2 2.0 6; transition: SPRING 1.2 2.0 6;
target: "terminology.about"; target: "terminology.about";
target: "twitter.txt"; target: "twitter.txt";
target: "youtube.txt"; target: "youtube.txt";
} }
program { program { signal: "about,hide"; source: "terminology";
signal: "about,hide"; source: "terminology";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: DECELERATE 0.6; transition: DECELERATE 0.6;
target: "terminology.about"; target: "terminology.about";
@ -651,6 +236,7 @@ group { name: "terminology/base";
relative: 1.0 0.98; relative: 1.0 0.98;
offset: 8 -9; offset: 8 -9;
} }
offscale;
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
@ -667,16 +253,14 @@ group { name: "terminology/base";
} }
} }
} }
program { program { signal: "optdetails,show"; source: "terminology";
signal: "optdetails,show"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.4; transition: DECELERATE 0.2;
target: "terminology.optdetails"; target: "terminology.optdetails";
} }
program { program { signal: "optdetails,hide"; source: "terminology";
signal: "optdetails,hide"; source: "terminology";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: DECELERATE 0.2; transition: DECELERATE 0.3;
target: "terminology.optdetails"; target: "terminology.optdetails";
after: "opdt_hide2"; after: "opdt_hide2";
} }
@ -698,6 +282,7 @@ group { name: "terminology/base";
relative: 1.0 0.98; relative: 1.0 0.98;
offset: 8 -9; offset: 8 -9;
} }
offscale;
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
@ -711,16 +296,14 @@ group { name: "terminology/base";
} }
} }
} }
program { program { signal: "options,show"; source: "terminology";
signal: "options,show"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.4; transition: DECELERATE 0.2;
target: "terminology.options"; target: "terminology.options";
} }
program { program { signal: "options,hide"; source: "terminology";
signal: "options,hide"; source: "terminology";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: DECELERATE 0.6; transition: DECELERATE 0.3;
target: "terminology.options"; target: "terminology.options";
} }
@ -739,6 +322,7 @@ group { name: "terminology/base";
relative: 1.0 0.5; relative: 1.0 0.5;
offset: 8 -9; offset: 8 -9;
} }
offscale;
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
@ -753,16 +337,14 @@ group { name: "terminology/base";
} }
} }
} }
program { program { signal: "controls,show"; source: "terminology";
signal: "controls,show"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.3; transition: DECELERATE 0.2;
target: "terminology.controls"; target: "terminology.controls";
} }
program { program { signal: "controls,hide"; source: "terminology";
signal: "controls,hide"; source: "terminology";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: DECELERATE 0.5; transition: DECELERATE 0.3;
target: "terminology.controls"; target: "terminology.controls";
} }
} }

View File

@ -1,29 +1,31 @@
group { name: "terminology/color_preview"; group { name: "terminology/color_preview";
images.image: "pm_overlay.png" COMP; images.image: "checks.png" COMP;
images.image: "tiles.png" COMP;
parts { parts {
part { name: "tiles"; part { name: "base"; type: RECT;
mouse_events: 0; description { state: "default" 0.0;
color_class: "/bg-dark/normal/background";
}
}
part { name: "checks"; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
image.normal: "tiles.png"; image.normal: "checks.png";
color_class: "/bg-dark-alt/normal/background";
fill.type: TILE; fill.type: TILE;
} }
} }
part { name: "preview"; type: RECT; part { name: "preview"; type: RECT;
mouse_events: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
color_class: "color_preview"; color_class: "color_preview";
} }
} }
part { name: "name"; type: TEXT; part { name: "name"; type: TEXT; mouse_events: 0;
mouse_events: 0;
effect: OUTLINE_SOFT_SHADOW; effect: OUTLINE_SOFT_SHADOW;
scale: 1; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
color: 255 255 255 255; color: 255 255 255 255;
color2: 0 0 0 128; color2: 0 0 0 64;
color3: 0 0 0 20; color3: 0 0 0 16;
align: 0.5 0.0; align: 0.5 0.0;
text { font: "monospace"; size: 10; text { font: "monospace"; size: 10;
align: 0.5 0.0; align: 0.5 0.0;
@ -31,27 +33,22 @@ group { name: "terminology/color_preview";
} }
} }
} }
part { name: "overlay";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "pm_overlay.png";
fill.smooth: 0;
}
}
} }
} }
group { name: "terminology/colorscheme_preview"; group { name: "terminology/colorscheme_preview";
parts { parts {
part { name: "bg"; type: RECT; part { name: "bg"; type: RECT; mouse_events: 0;
mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
color_class: "BG"; color_class: "BG";
} }
} }
part { name: "terminology.content"; type: SWALLOW; part { name: "terminology.content"; type: SWALLOW;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.offset: 1 1;
rel2.offset: -2 -2;
offscale;
} }
} }
} }

View File

@ -1,36 +1,21 @@
color_class { name: "BG"; color: BG_COLOR ; }
color_class { name: "FG"; color: FG_COLOR ; }
#ifndef PROVIDE_CURSOR
color_class { name: "CURSOR"; color: 51 153 255 255; }
#endif
color_class { name: "GLOW"; color: 51 153 255 255; }
color_class { name: "HIGHLIGHT"; color: 255 255 255 255; } color_class { name: "HIGHLIGHT"; color: 255 255 255 255; }
color_class { name: "GLOW_TXT";
color: 51 153 255 255;
color2: 51 153 255 255;
color3: 51 153 255 255;
}
color_class { name: "GLOW_TXT_HIGHLIGHT";
color: 255 255 255 255;
color2: 51 153 255 255;
color3: 51 153 255 255;
}
color_class { name: "END_SELECTION"; color: 255 0 0 255; }
color_class { name: "TAB_MISSED"; color_class { name: "BG_SENDFILE"; color: 64 64 64 255; }
color: 255 153 51 255;
color2: 255 51 0 255;
color3: 255 0 0 255;
}
color_class { name: "TAB_MISSED_OVER";
color: 255 255 64 255;
color2: 255 153 51 255;
color3: 255 0 0 255;
}
color_class { name: "TAB_TITLE";
color: FG_COLOR_NO_ALPHA 255;
color2: 0 0 0 0;
color3: BG_COLOR_NO_ALPHA 255;
}
color_class { name: "BG_SENDFILE"; color: 64 64 64 255; } color_class { name: "BG"; color: 32 32 32 255; }
color_class { name: "FG"; color: 170 170 170 255; }
color_class { name: "CURSOR"; color: 255 255 255 255; }
color_class { name: "GLOW"; color: 51 153 255 255; }
color_class { name: ":bg"; color: 64 64 64 255; }
color_class { name: ":bg-dark"; color: 32 32 32 255; }
color_class { name: ":dim-dark"; color: 0 0 0 200; }
color_class { name: ":fg"; color: 160 160 160 255; }
color_class { name: ":fg-light"; color: 255 255 255 255; }
color_class { name: ":light-medium"; color: 255 255 255 128; }
color_class { name: ":selected-medium"; color: 51 153 255 128; }
color_class { name: ":selected"; color: 51 153 255 255; }
color_class { name: ":selected-alt"; color: 255 153 51 255; }
color_class { name: ":shadow"; color: 0 0 0 128; }
color_class { name: ":shadow-selected"; color: 0 0 0 255; }

View File

@ -78,13 +78,14 @@ group { name: "terminology/core";
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// actual text grid for chars, cursors, selectiond etc. goes here // actual text grid for chars, cursors, selectiond etc. goes here
part { name: "terminology.content"; type: SWALLOW; part { name: "terminology.content"; type: SWALLOW;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.offset: 1 0; rel1.offset: 1 0;
rel1.relative: 0.0 1.0; rel1.relative: 0.0 1.0;
rel1.to_y: "terminology.tabregion"; rel1.to_y: "terminology.tabregion";
rel2.offset: -2 -2; rel2.offset: -2 -2;
offscale;
} }
} }
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -2,54 +2,34 @@
//// used in the font selection dialog to give a base for black text //// used in the font selection dialog to give a base for black text
//// previews so they are always visible //// previews so they are always visible
group { name: "terminology/fontpreview"; group { name: "terminology/fontpreview";
images {
image: "fn_shadow.png" COMP;
}
parts { parts {
part { name: "shadow";
mouse_events: 0;
description { state: "default" 0.0;
rel1 {
offset: -2 -1;
to: "base";
}
rel2 {
offset: 1 2;
to: "base";
}
image {
normal: "fn_shadow.png";
border: 5 5 5 5;
}
fill.smooth: 0;
}
}
part { name: "base"; type: RECT; part { name: "base"; type: RECT;
mouse_events: 1; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
color_class: "BG"; color_class: "/bg/normal/term/font_preview";
rel1.offset: 2 2; rel1.offset: 4 4;
rel2.offset: -3 -3; rel2.offset: -5 -5;
offscale;
} }
} }
part { name: "clip"; type: RECT; part { name: "clip"; type: RECT;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "base"; rel.to: "base";
rel2.to: "base";
color: 255 255 255 255;
} }
} }
part { name: "terminology.text.preview"; type: SWALLOW; part { name: "terminology.text.preview"; type: SWALLOW;
clip_to: "clip"; clip_to: "clip";
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1 { rel1 {
to: "base"; to: "base";
offset: 1 1; offset: 4 4;
} }
rel2 { rel2 {
to: "base"; to: "base";
offset: -2 -2; offset: -5 -5;
} }
offscale;
} }
} }
} }

View File

@ -4,13 +4,13 @@
parts { part { name: "base"; description { state: "default" 0.0; \ parts { part { name: "base"; description { state: "default" 0.0; \
aspect: 1.0 1.0; aspect_preference: BOTH; image.normal: Img; \ aspect: 1.0 1.0; aspect_preference: BOTH; image.normal: Img; \
} } } } } } } }
ICON("new", "icon_new.png"); ICON("new", "icon_new.png");
ICON("split-h", "icon_split_h.png"); ICON("split-h", "icon-split-h-060.png");
ICON("split-v", "icon_split_v.png"); ICON("split-v", "icon-split-v-060.png");
ICON("mini-view", "icon_miniview.png"); ICON("mini-view", "icon_miniview.png");
ICON("close", "icon_close.png"); ICON("close", "icon_close.png");
ICON("copy", "icon_copy.png"); ICON("copy", "icon_copy.png");
ICON("paste", "icon_paste.png"); ICON("paste", "icon_paste.png");
ICON("settings", "icon_settings.png"); ICON("settings", "icon_settings.png");
ICON("about", "icon_about.png"); ICON("about", "icon_about.png");
#undef ICON #undef ICON

View File

@ -1,27 +1,20 @@
group { name: "terminology/keybinding"; group { name: "terminology/keybinding";
parts { parts {
part { name: "shadow"; type: RECT; part { name: "shadow"; type: RECT;
mouse_events: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
color: 0 0 0 196; color_class: "/bg/normal/term/keybinding";
} }
} }
part { name: "label"; type: TEXT; part { name: "label"; type: TEXT; mouse_events: 0;
mouse_events: 0;
effect: SOFT_SHADOW BOTTOM;
scale: 1; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
rel1.to: "shadow"; rel.to: "shadow";
rel2.to: "shadow"; rel1.offset: 4 4;
rel1.relative: 0.5 0.5; rel2.offset: -5 -5;
rel1.offset: 0 0; offscale;
rel2.relative: 0.5 0.5; color_class: "/fg/normal/term/keybinding";
rel2.offset: 0 0; text { font: "Sans"; size: 10;
color: 255 255 255 255;
color3: 0 0 0 18;
align: 0.5 0.5;
text { font: "Sans"; size: 12;
min: 1 1; min: 1 1;
ellipsis: 0; ellipsis: 0;
} }

View File

@ -1,122 +1,54 @@
/////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////
//// an object overlayd on text that is a link //// an object overlayd on text that is a link
group { name: "terminology/link"; group { name: "terminology/link";
images {
image: "lk_bottom.png" COMP;
image: "lk_left.png" COMP;
image: "lk_right.png" COMP;
}
parts { parts {
part { name: "bottom"; part { name: "bottom"; type: RECT;
mouse_events: 0; mouse_events: 0;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
image.normal: "lk_bottom.png";
image.border: 9 9 0 0;
align: 0.5 1.0; align: 0.5 1.0;
min: 20 8; min: 20 1;
rel1.offset: -6 0; rel1.offset: -1 -1;
rel1.relative: 0.0 1.0; rel1.relative: 0.0 1.0;
rel2.offset: 5 0; rel2.offset: 0 -1;
color: 255 255 255 255; color: 51 153 255 255;
color_class: "GLOW"; offscale;
fill.smooth: 0;
}
}
part { name: "l";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "lk_left.png";
align: 0.0 1.0;
min: 4 4;
rel1.offset: 16 -1;
rel1.relative: 0.0 1.0;
rel2.offset: 16 -1;
rel2.relative: 0.0 1.0;
color: 255 255 255 0;
color_class: "GLOW";
} }
description { state: "out" 0.0; description { state: "out" 0.0;
fixed: 1 1;
inherit: "default" 0.0; inherit: "default" 0.0;
min: 16 16; rel1.offset: -5 -1;
rel1.offset: -10 -1; rel2.offset: 4 -1;
rel2.offset: -10 -1;
color: 255 255 255 255;
color_class: "GLOW";
} }
description { state: "out2" 0.0; description { state: "out2" 0.0;
fixed: 1 1;
inherit: "default" 0.0; inherit: "default" 0.0;
min: 32 32;
rel1.offset: -26 -1;
rel2.offset: -26 -1;
color: 255 255 255 0;
color_class: "GLOW";
}
}
part { name: "r";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
image.normal: "lk_right.png";
align: 1.0 1.0;
min: 4 4;
rel1.offset: -15 0;
rel1.relative: 1.0 1.0;
rel2.offset: -15 0;
rel2.relative: 1.0 1.0;
color: 255 255 255 0;
color_class: "GLOW";
}
description { state: "out" 0.0;
fixed: 1 1;
inherit: "default" 0.0;
min: 16 16;
rel1.offset: 9 -1;
rel2.offset: 9 -1;
color: 255 255 255 255;
color_class: "GLOW";
}
description { state: "out2" 0.0;
fixed: 1 1;
inherit: "default" 0.0;
min: 32 32;
rel1.offset: 25 -1;
rel2.offset: 25 -1;
color: 255 255 255 0;
color_class: "GLOW";
} }
} }
part { name: "event"; type: RECT; part { name: "event"; type: RECT;
mouse_events: 1;
repeat_events: 1; repeat_events: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
color: 0 0 0 0; color: 0 0 0 0; // no cc
} }
} }
programs { programs {
program { name: "show"; program { name: "show";
signal: "show"; source: ""; signal: "show"; source: "";
action: STATE_SET "out" 0.0; action: STATE_SET "out" 0.0;
transition: LINEAR 0.3; transition: SINUSOIDAL 0.5;
target: "l"; target: "bottom";
target: "r";
after: "show2"; after: "show2";
} }
program { name: "show2"; program { name: "show2";
action: STATE_SET "out2" 0.0; action: STATE_SET "out2" 0.0;
transition: LINEAR 0.3; transition: SINUSOIDAL 0.2;
target: "l"; target: "bottom";
target: "r";
after: "show3"; after: "show3";
} }
program { name: "show3"; program { name: "show3";
action: STATE_SET "default" 0.0; action: STATE_SET "out" 0.0;
target: "l"; transition: SINUSOIDAL 0.2;
target: "r"; target: "bottom";
after: "show"; after: "show2";
} }
} }
} }

View File

@ -1,11 +1,6 @@
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
//// the multimedia controls //// the multimedia controls
group { name: "terminology/mediabusy"; group { name: "terminology/mediabusy";
images {
image: "media_busy_knob.png" COMP;
image: "media_busy_spinner.png" COMP;
image: "media_busy_progress.png" COMP;
}
script { script {
public message(Msg_Type:type, id, ...) { public message(Msg_Type:type, id, ...) {
if ((type == MSG_FLOAT) && (id == 1)) { if ((type == MSG_FLOAT) && (id == 1)) {
@ -23,103 +18,56 @@ group { name: "terminology/mediabusy";
mouse_events: 0; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
rel2.to_x: "knob"; min: 0 5;
rel2.relative: 0.0 1.0; max: 99999 5;
min: 10 40;
max: 99999 40;
align: 0.0 1.0; align: 0.0 1.0;
} }
} }
part { name: "progress"; part { name: "progress"; type: RECT; mouse_events: 0;
mouse_events: 0;
clip_to: "fade"; clip_to: "fade";
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
rel1.to: "progress_area"; rel.to: "progress_area";
rel2.to: "progress_area";
rel2.relative: 0.0 1.0; rel2.relative: 0.0 1.0;
color: 255 255 255 255; color_class: "/bg/selected/media/position";
color_class: "GLOW"; min: 0 5;
image.normal: "media_busy_progress.png";
image.border: 5 5 0 0;
min: 10 40;
align: 0.0 1.0; align: 0.0 1.0;
} }
} }
part { name: "fade"; type: RECT; part { name: "fade"; type: RECT;
mouse_events: 0; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
color: 255 255 255 0; color: 255 255 255 0; // no cc
visible: 0; visible: 0;
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
visible: 1; visible: 1;
color: 255 255 255 255; color: 255 255 255 255; // no cc
color_class: "HIGHLIGHT";
} }
} }
part { name: "knob"; part { name: "busy_base"; type: SPACER;
clip_to: "fade"; scale: 1;
mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
image.normal: "media_busy_knob.png"; min: 40 40; max: 40 40;
min: 40 40;
max: 40 40;
align: 1.0 1.0; align: 1.0 1.0;
rel1.offset: 4 4;
rel2.offset: -5 -5;
offscale;
} }
} }
part { name: "knob_spinner"; BUSY("busy_base", "busy", "terminology", "done", "terminology")
clip_to: "fade";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
color: 51 153 255 255;
rel1.to: "knob";
rel2.to: "knob";
image.normal: "media_busy_spinner.png";
map {
on: 1;
smooth: 1;
rotation.center: "knob";
}
}
description { state: "spin" 0.0;
inherit: "default" 0.0;
visible: 1;
map.rotation.z: 360;
}
}
} }
programs { programs {
program { program { signal: "busy"; source: "terminology";
signal: "busy"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.5; transition: DECELERATE 0.2 USE_DURATION_FACTOR 1 CURRENT;
target: "fade"; target: "fade";
} }
program { name: "spin1"; program { signal: "done"; source: "terminology";
signal: "busy"; source: "terminology";
action: STATE_SET "spin" 0.0;
transition: LINEAR 0.5;
target: "knob_spinner";
after: "spin2";
}
program { name: "spin2";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "knob_spinner"; transition: DECELERATE 1.5 USE_DURATION_FACTOR 1 CURRENT;
after: "spin1";
}
// program { name: "downloading";
// signal: "busy";
// source: "terminology";
// action: STATE_SET "default" 0.0;
// }
program {
signal: "done"; source: "terminology";
action: STATE_SET "default" 0.0;
transition: DECELERATE 1.5;
target: "fade"; target: "fade";
} }
} }
@ -140,8 +88,7 @@ group { name: "terminology/mediactrl";
part { name: "media_clip"; type: RECT; part { name: "media_clip"; type: RECT;
mouse_events: 0; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "media_bg"; rel.to: "media_bg";
rel2.to: "media_bg";
} }
} }
part { name: "media_bg"; part { name: "media_bg";
@ -151,7 +98,7 @@ group { name: "terminology/mediactrl";
image.border: 11 11 11 11; image.border: 11 11 11 11;
min: 24 24; min: 24 24;
max: 24 24; max: 24 24;
align: 1.0 0.0; align: 1.0 1.0;
} }
description { state: "expanded" 0.0; description { state: "expanded" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
@ -164,6 +111,7 @@ group { name: "terminology/mediactrl";
repeat_events: 1; repeat_events: 1;
clip_to: "media_clip"; clip_to: "media_clip";
description { state: "default" 0.0; description { state: "default" 0.0;
rel.to: "media_bg";
image.normal: "media_pause.png"; image.normal: "media_pause.png";
max: 24 24; max: 24 24;
align: 1.0 0.0; align: 1.0 0.0;
@ -195,8 +143,7 @@ group { name: "terminology/mediactrl";
image.border: 15 15 0 0; image.border: 15 15 0 0;
min: 90 14; min: 90 14;
max: 90 14; max: 90 14;
rel1.to: "stop"; rel.to: "stop";
rel2.to: "stop";
rel1.offset: -25 0; rel1.offset: -25 0;
rel2.offset: -90 0; rel2.offset: -90 0;
} }
@ -259,54 +206,46 @@ group { name: "terminology/mediactrl";
} }
} }
programs { programs {
program { program { signal: "pause,set"; source: "terminology";
signal: "mouse,in"; source: "media_bg"; action: STATE_SET "paused" 0.0;
target: "play";
}
program { signal: "play,set"; source: "terminology";
action: STATE_SET "default" 0.0;
target: "play";
}
program { signal: "mute,set"; source: "terminology";
action: STATE_SET "muted" 0.0;
target: "terminology.voldrag";
}
program { signal: "mute,unset"; source: "terminology";
action: STATE_SET "default" 0.0;
target: "terminology.voldrag";
}
program { signal: "mouse,in"; source: "media_bg";
action: STATE_SET "expanded" 0.0; action: STATE_SET "expanded" 0.0;
transition: SINUSOIDAL 0.4 CURRENT; transition: SINUSOIDAL 0.4 CURRENT;
target: "media_bg"; target: "media_bg";
} }
program { program { signal: "mouse,out"; source: "media_bg";
signal: "mouse,out"; source: "media_bg";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.4 CURRENT; transition: SINUSOIDAL 0.4 CURRENT;
target: "media_bg"; target: "media_bg";
} }
program { program { signal: "mouse,up,*"; source: "play";
signal: "mouse,up,*"; source: "play";
filter: "play" "default"; filter: "play" "default";
action: SIGNAL_EMIT "pause" ""; action: SIGNAL_EMIT "pause" "";
} }
program { program { signal: "mouse,up,1"; source: "play";
signal: "mouse,up,1"; source: "play";
filter: "play" "paused"; filter: "play" "paused";
action: SIGNAL_EMIT "play" ""; action: SIGNAL_EMIT "play" "";
} }
program { program { signal: "mouse,up,1"; source: "stop";
signal: "mouse,up,1"; source: "stop";
action: SIGNAL_EMIT "stop" ""; action: SIGNAL_EMIT "stop" "";
} }
program {
signal: "pause,set"; source: "terminology"; program { signal: "mouse,down,1"; source: "posline";
action: STATE_SET "paused" 0.0;
target: "play";
}
program {
signal: "play,set"; source: "terminology";
action: STATE_SET "default" 0.0;
target: "play";
}
program {
signal: "mute,set"; source: "terminology";
action: STATE_SET "muted" 0.0;
target: "terminology.voldrag";
}
program {
signal: "mute,unset"; source: "terminology";
action: STATE_SET "default" 0.0;
target: "terminology.voldrag";
}
program {
signal: "mouse,down,1"; source: "posline";
filter: "terminology.posdrag" "default"; filter: "terminology.posdrag" "default";
script { script {
new x, y, w, h, m_x, m_y; new x, y, w, h, m_x, m_y;
@ -321,12 +260,10 @@ group { name: "terminology/mediactrl";
} }
} }
program { program { signal: "mouse,up,1"; source: "posline";
signal: "mouse,up,1"; source: "posline";
action: SIGNAL_EMIT "pos,drag,stop" ""; action: SIGNAL_EMIT "pos,drag,stop" "";
} }
program { program { signal: "mouse,move"; source: "posline";
signal: "mouse,move"; source: "posline";
script { script {
new x, y, w, h, m_x, m_y; new x, y, w, h, m_x, m_y;
new Float:pos; new Float:pos;
@ -341,8 +278,7 @@ group { name: "terminology/mediactrl";
emit("pos,drag", ""); emit("pos,drag", "");
} }
} }
program { program { signal: "mouse,down,1"; source: "volline";
signal: "mouse,down,1"; source: "volline";
filter: "terminology.voldrag" "default"; filter: "terminology.voldrag" "default";
script { script {
new x, y, w, h, m_x, m_y; new x, y, w, h, m_x, m_y;
@ -357,8 +293,7 @@ group { name: "terminology/mediactrl";
} }
} }
program { program { signal: "mouse,move"; source: "volline";
signal: "mouse,move"; source: "volline";
script { script {
new x, y, w, h, m_x, m_y; new x, y, w, h, m_x, m_y;
new Float:pos; new Float:pos;

View File

@ -1,97 +1,83 @@
group { name: "terminology/miniview"; group { name: "terminology/miniview";
images {
image: "icon_close.png" COMP;
image: "fn_shadow.png" COMP;
}
set { name: "bg_shadow";
image { image: "bg_shadow.png" COMP; size: 0 0 200 150; }
image { image: "bg_shadow2.png" COMP; size: 200 150 400 300; }
image { image: "bg_shadow3.png" COMP; size: 400 300 99999 99999; }
}
parts { parts {
part { name: "miniview.bg"; type: RECT; part { name: "miniview_bg"; type: RECT;
//mouse_events: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
color_class: "BG"; color_class: "BG";
} }
} }
part { name: "shadow";
mouse_events: 0;
description { state: "default" 0.0;
image.normal: "bg_shadow";
fill.smooth: 0;
}
}
part { name: "miniview.img"; type: SWALLOW; part { name: "miniview.img"; type: SWALLOW;
description { state: "default" 0.0; description { state: "default" 0.0;
visible: 1;
rel1 { rel1 {
to: "miniview.bg"; to: "miniview_bg";
relative: 0.0 0.0; relative: 0.0 0.0;
offset: 0 0; offset: 0 0;
} }
rel2 { rel2 {
to: "miniview.bg"; to: "miniview_bg";
relative: 1.0 1.0; relative: 1.0 1.0;
offset: -1 -1; offset: -1 -1;
} }
} }
} }
part { name: "miniview_screen"; type: RECT; part { name: "miniview_screen"; type: RECT;
mouse_events: 1;
dragable { dragable {
confine: "miniview.img"; confine: "miniview.img";
x: 0 0 0; x: 0 0 0;
y: 1 1 0; y: 1 1 0;
} }
description { state: "default" 0.0; description { state: "default" 0.0;
color: 255 255 255 40; rel.to: "miniview.img";
fixed:1 1; color_class: "/fg/selected/term/miniview/screen";
color: 255 255 255 40; // no cc
fixed: 1 1;
} }
description { state: "outbounds" 0.0; description { state: "outbounds" 0.0;
color: 255 25 35 40; inherit : "default" 0.0;
fixed:1 1; color_class: "/fg/disabled/term/miniview/screen";
} }
} }
part { name: "miniview.close_shadow"; type: IMAGE; part { name: "miniview_close";
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
image { image.normal: "tab_close";
normal: "fn_shadow.png"; rel.to: "miniview_ev";
}; color_class: "/fg/normal/term/miniview/close";
rel1 { min: 15 15;
to: "miniview.bg"; max: 15 15;
relative: 0.0 0.0; }
offset: 0 0; description { state: "pressed" 0.0;
} inherit: "default" 0.0;
rel2 { color_class: "/fg/pressed/term/miniview/close";
to: "miniview.bg";
relative: 0.0 0.0;
offset: 16 16;
}
} }
} }
part { name: "miniview.close"; type: IMAGE; part { name: "miniview_ev"; type: RECT;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
image { color: 0 0 0 0; // no cc
normal: "icon_close.png"; rel.to: "miniview_bg";
}; min: 25 25;
rel1.to: "miniview.close_shadow"; max: 25 25;
rel2.to: "miniview.close_shadow"; align: 1.0 0.0;
} }
} }
}; };
programs { programs {
program { program { signal: "mouse,down,1"; source: "miniview_ev";
signal: "mouse,clicked,1"; source: "miniview.close"; action: STATE_SET "pressed" 0.0;
target: "miniview_close";
}
program { signal: "mouse,up,1"; source: "miniview_ev";
action: STATE_SET "default" 0.0;
target: "miniview_close";
}
program { signal: "mouse,clicked,1"; source: "miniview_ev";
action: SIGNAL_EMIT "miniview,close" "terminology"; action: SIGNAL_EMIT "miniview,close" "terminology";
} }
program { program { signal: "miniview_screen,inbounds"; source: "miniview";
signal: "miniview_screen,inbounds"; source: "miniview";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "miniview_screen"; target: "miniview_screen";
} }
program { program { signal: "miniview_screen,outbounds"; source: "miniview";
signal: "miniview_screen,outbounds"; source: "miniview";
action: STATE_SET "outbounds" 0.0; action: STATE_SET "outbounds" 0.0;
target: "miniview_screen"; target: "miniview_screen";
} }

View File

@ -2,53 +2,33 @@
//// an object to contain the selection tool used for selecting tabs (with //// an object to contain the selection tool used for selecting tabs (with
//// a glow grid of terms //// a glow grid of terms
group { name: "terminology/sel/base"; group { name: "terminology/sel/base";
images {
image: "pm_overlay.png" COMP;
image: "pm_fill.png" COMP;
image: "inset_shadow.png" COMP;
}
set { name: "bg_shadow";
image { image: "bg_shadow.png" COMP; size: 0 0 200 150; }
image { image: "bg_shadow2.png" COMP; size: 200 150 400 300; }
image { image: "bg_shadow3.png" COMP; size: 400 300 99999 99999; }
}
script { script {
public message(Msg_Type:type, id, ...) { public message(Msg_Type:type, id, ...) {
new r, g, b, a, v; // new r, g, b, a;
new v;
if ((type != MSG_INT) || (id != 1)) return; if ((type != MSG_INT) || (id != 1)) return;
v = (getarg(2) * 255) / 100; v = (getarg(2) * 255) / 100;
custom_state(PART:"shadow", "default", 0.0); // custom_state(PART:"shadow", "default", 0.0);
get_state_val(PART:"shadow", STATE_COLOR, r, g, b, a); // get_state_val(PART:"shadow", STATE_COLOR, r, g, b, a);
set_state_val(PART:"shadow", STATE_COLOR, r, g, b, v); // set_state_val(PART:"shadow", STATE_COLOR, r, g, b, v);
set_state(PART:"shadow", "custom", 0.0); // set_state(PART:"shadow", "custom", 0.0);
if (v < 255) if (v < 255)
set_state(PART:"fill", "translucent", 0.0); set_state(PART:"fill", "translucent", 0.0);
else else
set_state(PART:"fill", "default", 0.0); set_state(PART:"fill", "default", 0.0);
} }
} }
parts { parts {
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// background and shadows // background and shadows
part { name: "shadow"; part { name: "fill"; type: RECT;
mouse_events: 0; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
image.normal: "bg_shadow"; color: 32 32 32 255;
fill.smooth: 0;
}
}
part { name: "fill";
mouse_events: 0;
description { state: "default" 0.0;
image.normal: "pm_fill.png";
fill {
size.relative: 0.0 0.0;
size.offset: 64 64;
}
} }
description { state: "translucent" 0.0; description { state: "translucent" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
@ -70,120 +50,57 @@ group { name: "terminology/sel/base";
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// fancy stuff on top // fancy stuff on top
part { name: "overlay"; // program { signal: "begin"; source: "terminology";
mouse_events: 0; // action: STATE_SET "visible" 0.0;
description { state: "default" 0.0; // transition: DECELERATE 0.3;
image.normal: "pm_overlay.png"; // target: "overlay";
color: 255 255 255 0; // }
fill.smooth: 0; // program { signal: "end"; source: "terminology";
} // action: STATE_SET "default" 0.0;
description { state: "visible" 0.0; // transition: DECELERATE 0.3 CURRENT;
inherit: "default" 0.0; // target: "overlay";
color: 255 255 255 255; // target: "overlay_shadow";
} // }
}
part { name: "overlay_shadow"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "inset_shadow.png";
image.border: 5 5 7 3;
image.middle: 0;
fill.smooth: 0;
color: 255 255 255 0;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
color: 255 255 255 255;
}
}
program {
signal: "begin"; source: "terminology";
action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.3;
target: "overlay";
target: "overlay_shadow";
}
program {
signal: "end"; source: "terminology";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.3 CURRENT;
target: "overlay";
target: "overlay_shadow";
}
} }
} }
group { name: "terminology/sel/item"; group { name: "terminology/sel/item";
images { images.image: "pm_shadow.png" COMP;
image: "bg_bevel.png" COMP;
image: "bg_glint.png" COMP;
image: "pm_shadow.png" COMP;
image: "cr_glow.png" COMP;
image: "bg_led_glow.png" COMP;
image: "bg_led_base.png" COMP;
image: "bg_led.png" COMP;
image: "bg_led_strobe.png" COMP;
}
set { name: "bg_shine";
image { image: "bg_shine5.png" COMP; size: 0 0 256 120; }
image { image: "bg_shine4.png" COMP; size: 256 120 512 240; }
image { image: "bg_shine3.png" COMP; size: 512 240 1024 480; }
image { image: "bg_shine2.png" COMP; size: 1024 480 2048 960; }
image { image: "bg_shine.png" COMP; size: 2048 960 99999 99999; }
}
parts { parts {
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// base background and selection image // base background and selection image
part { name: "clip"; type: RECT; part { name: "clip"; type: RECT;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "terminology.content"; rel.to: "terminology.content";
rel2.to: "terminology.content"; color: 192 192 192 255; // no cc
color: 128 128 128 255;
} }
description { state: "selected" 0.0; description { state: "selected" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
color: 255 255 255 255; color: 255 255 255 255; // no cc
} }
} }
part { name: "shadow"; part { name: "shadow";
mouse_events: 0; mouse_events: 0;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
rel1.to: "terminology.content"; rel.to: "terminology.content";
rel2.to: "terminology.content"; rel1.offset: -32 -32;
rel1.offset: -5 -5; rel2.offset: 31 31;
rel2.offset: 4 4;
image.normal: "pm_shadow.png"; image.normal: "pm_shadow.png";
image.border: 64 64 64 64; image.border: 64 64 64 64;
image.border_scale_by: 0.1; image.border_scale_by: 0.5;
color: 255 255 255 128; image.border_scale: 1;
color_class: "/shadow/normal/term/sel/item";
fill.smooth: 0; fill.smooth: 0;
offscale;
} }
description { state: "selected" 0.0; description { state: "selected" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
rel1.offset: -40 -40; rel1.offset: -64 -64;
rel2.offset: 39 39; rel2.offset: 63 63;
image.border_scale_by: 1.0; image.border_scale_by: 1.0;
color: 255 255 255 255; color_class: "/shadow/selected/term/sel/item";
}
}
part { name: "glow";
mouse_events: 0;
description { state: "default" 0.0;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
rel1.offset: -4 -4;
rel2.offset: 3 3;
image {
normal: "cr_glow.png";
border: 9 9 9 9;
}
color: 255 255 255 0;
color_class: "GLOW";
}
description { state: "selected" 0.0;
inherit: "default" 0.0;
color: 255 255 255 255;
color_class: "GLOW";
} }
} }
@ -193,8 +110,7 @@ group { name: "terminology/sel/item";
clip_to: "clip"; clip_to: "clip";
description { state: "default" 0.0; description { state: "default" 0.0;
color_class: "BG"; color_class: "BG";
rel1.to: "terminology.content"; rel.to: "terminology.content";
rel2.to: "terminology.content";
} }
} }
part { name: "terminology.content"; type: SWALLOW; part { name: "terminology.content"; type: SWALLOW;
@ -209,257 +125,160 @@ group { name: "terminology/sel/item";
rel2.relative: 1.0 1.0; rel2.relative: 1.0 1.0;
} }
} }
program { program { signal: "selected"; source: "terminology";
signal: "selected"; source: "terminology";
action: STATE_SET "selected" 0.0; action: STATE_SET "selected" 0.0;
transition: DECELERATE 0.2 CURRENT; transition: DECELERATE 0.2 CURRENT;
target: "terminology.content"; target: "terminology.content";
target: "terminology.label"; target: "terminology.label";
target: "shadow"; target: "shadow";
target: "clip"; target: "clip";
target: "glow";
} }
program { program { signal: "selected,start"; source: "terminology";
signal: "selected,start"; source: "terminology";
action: STATE_SET "selected" 0.0; action: STATE_SET "selected" 0.0;
target: "terminology.content"; target: "terminology.content";
target: "terminology.label"; target: "terminology.label";
target: "shadow"; target: "shadow";
target: "clip"; target: "clip";
target: "glow";
} }
program { program { signal: "unselected"; source: "terminology";
signal: "unselected"; source: "terminology";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
transition: DECELERATE 0.4 CURRENT; transition: DECELERATE 0.4 CURRENT;
target: "terminology.content"; target: "terminology.content";
target: "terminology.label"; target: "terminology.label";
target: "shadow"; target: "shadow";
target: "clip"; target: "clip";
target: "glow";
} }
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// fancy stuff over the top of the terminal for shading and labelling // fancy stuff over the top of the terminal for shading and labelling
part { name: "overlay";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
image.normal: "pm_overlay.png";
fill.smooth: 0;
}
}
part { name: "bevel";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
image.normal: "bg_bevel.png";
image.border: 3 3 3 3;
image.middle: 0;
fill.smooth: 0;
}
}
part { name: "terminology.label"; type: TEXT; mouse_events: 0; part { name: "terminology.label"; type: TEXT; mouse_events: 0;
effect: GLOW;
scale: 1; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "terminology.content"; rel.to: "terminology.content";
rel2.to: "terminology.content"; rel1.offset: 4 4;
color: 255 255 255 255; rel2.offset: -5 -5;
color2: 255 255 255 24; offscale;
color3: 255 255 255 18; color_class: "/fg/normal/term/sel/title/text";
color_class: "GLOW_TXT"; align: 0.5 0.0;
align: 0.5 1.0;
text { font: "Sans"; size: 10; text { font: "Sans"; size: 10;
align: 0.5 1.0; align: 0.5 0.0;
min: 0 1; min: 0 1;
} }
} }
description { state: "selected" 0.0; description { state: "selected" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
color: 255 255 255 255; color_class: "/fg/selected/term/sel/title/text";
color2: 255 255 255 128;
color3: 255 255 255 20;
color_class: "GLOW_TXT_HIGHLIGHT";
}
}
part { name: "clip2"; type: RECT;
description { state: "default" 0.0;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
}
}
////////////////////////////////////////////////////////////////////
// fancy stuff on top
part { name: "glint";
mouse_events: 0;
clip_to: "clip2";
description { state: "default" 0.0;
fixed: 1 1;
min: 79 5;
max: 79 5;
rel1 {
to: "terminology.content";
relative: 0.0 0.0;
offset: 0 0;
}
rel2 {
to: "terminology.content";
relative: 1.0 0.0;
offset: -1 0;
}
image.normal: "bg_glint.png";
}
}
part { name: "shine";
mouse_events: 0;
clip_to: "clip2";
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
image.normal: "bg_shine";
fill.smooth: 0;
align: 0.5 0.0;
aspect: (256/120) (256/120);
aspect_preference: HORIZONTAL;
} }
} }
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// visual bell - spinning red siren light // visual bell - spinning red siren light
part { name: "bell_glow"; images.image: "circle-1200.png" COMP;
mouse_events: 0; images.image: "strobe-600.png" COMP;
part { name: "bell_glow"; mouse_events: 0;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
visible: 0; visible: 0;
color: 255 255 255 0; color: 255 80 60 0; // no cc
rel1.to: "bell_base"; rel.to: "bell";
rel2.to: "bell_base"; min: 100 100;
min: 200 200; image.normal: "circle-1200.png";
fill.smooth: 0;
image.normal: "bg_led_glow.png";
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
visible: 1; visible: 1;
color: 255 255 255 255; color: 255 80 60 32;
} }
} }
part { name: "bell_base"; part { name: "bell_glow2"; mouse_events: 0;
mouse_events: 0; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
visible: 0; visible: 0;
color: 255 255 255 0; color: 255 240 160 0; // no cc
min: 32 32; rel.to: "bell";
max: 32 32; min: 50 50;
rel1.to: "terminology.content"; image.normal: "circle-1200.png";
rel2.to: "terminology.content";
align: 1.0 1.0;
image.normal: "bg_led_base.png";
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
visible: 1; visible: 1;
color: 255 255 255 255; color: 255 220 120 32;
}
}
part { name: "bell";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
visible: 0;
color: 255 255 255 0;
rel1.to: "bell_base";
rel2.to: "bell_base";
image.normal: "bg_led.png";
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
} }
} }
part { name: "bell_strobe"; part { name: "bell_strobe";
mouse_events: 0; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
visible: 0; color: 255 255 200 255;
color: 255 255 255 0; rel.to: "bell_glow2";
rel1.to: "bell"; image.normal: "strobe-600.png";
rel2.to: "bell"; rel1.relative: -0.5 -0.5;
image.normal: "bg_led_strobe.png"; rel2.relative: 1.5 1.5;
map { map {
on: 1; on: 1;
smooth: 1; smooth: 1;
rotation.center: "bell"; rotation.center: "bell";
} }
visible: 0;
} }
description { state: "spin" 0.0; description { state: "spin" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
map.rotation.z: 0.0;
visible: 1; visible: 1;
color: 255 255 255 255;
map.rotation.z: 36.0;
} }
description { state: "spin_done" 0.0; description { state: "spin_done" 0.0;
inherit: "spin" 0.0; inherit: "default" 0.0;
map.rotation.z: 720.0; map.rotation.z: 720.0;
} visible: 1;
description { state: "spin_done2" 0.0;
inherit: "spin" 0.0;
map.rotation.z: 1440.0;
} }
} }
program { part { name: "bell";
signal: "bell"; source: "terminology"; mouse_events: 0;
action: STATE_SET "default" 0.0; scale: 1;
target: "bell_base"; description { state: "default" 0.0;
target: "bell"; fixed: 1 1;
target: "bell_strobe"; visible: 0;
target: "bell_glow"; color: 255 255 255 0;
after: "bell"; max: 20 20;
min: 20 20;
align: 1.0 1.0;
rel1.offset: 15 15;
rel2.offset: -16 -16;
rel.to: "terminology.content";
image.normal: "circle-1200.png";
offscale;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
} }
program { name: "bell"; program { signal: "bell"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
target: "bell_base";
target: "bell_glow";
after: "bell2";
}
program { name: "bell2";
action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.1;
target: "bell"; target: "bell";
target: "bell_glow"; target: "bell_glow";
target: "bell_glow2";
after: "bell3"; after: "bell3";
} }
program { name: "bell3"; program { name: "bell3";
action: STATE_SET "spin" 0.0; action: STATE_SET "spin" 0.0;
transition: LINEAR 0.1; transition: LINEAR 0.1;
target: "bell_strobe"; target: "bell_strobe";
after: "bell4.1";
}
program { name: "bell4.1";
action: STATE_SET "spin" 0.0;
target: "bell_strobe";
after: "bell4.2"; after: "bell4.2";
} }
program { name: "bell4.2"; program { name: "bell4.2";
action: STATE_SET "spin_done" 0.0; action: STATE_SET "spin_done" 0.0;
transition: LINEAR 0.9; transition: LINEAR 0.9;
target: "bell_strobe"; target: "bell_strobe";
after: "bell4.3"; after: "bell4.1";
}
program { name: "bell4.3";
action: STATE_SET "spin_done2" 0.0;
transition: LINEAR 1.0;
target: "bell_strobe";
after: "bell4.4";
}
program { name: "bell4.4";
action: STATE_SET "spin_done" 0.0;
target: "bell_strobe";
after: "bell4.3";
} }
} }
} }

View File

@ -22,49 +22,31 @@
// |##############| // |##############|
group { name: "terminology/selection"; group { name: "terminology/selection";
images {
image: "sl_stripe.png" COMP;
image: "sl_left.png" COMP;
image: "sl_right.png" COMP;
image: "sl_top.png" COMP;
image: "sl_bottom.png" COMP;
image: "sl_htop.png" COMP;
image: "sl_hbottom.png" COMP;
}
parts { parts {
// background pattern. duplicated because clips cut out regions of // background pattern. duplicated because clips cut out regions of
// it to see and clips don't overlap // it to see and clips don't overlap
part { name: "background_top"; part { name: "background_top"; type: RECT;
mouse_events: 0; mouse_events: 0;
clip_to: "top_clip"; clip_to: "top_clip";
description { state: "default" 0.0; description { state: "default" 0.0;
color: 255 255 255 25; color: 255 255 255 128; // no cc
color_class: "GLOW"; color_class: "GLOW";
image.normal: "sl_stripe.png";
fill.size.relative: 0.0 0.0;
fill.size.offset: 240 240;
} }
} }
part { name: "background_middle"; part { name: "background_middle"; type: RECT;
mouse_events: 0; mouse_events: 0;
clip_to: "middle_clip"; clip_to: "middle_clip";
description { state: "default" 0.0; description { state: "default" 0.0;
color: 255 255 255 25; color: 255 255 255 128; // no cc
color_class: "GLOW"; color_class: "GLOW";
image.normal: "sl_stripe.png";
fill.size.relative: 0.0 0.0;
fill.size.offset: 240 240;
} }
} }
part { name: "background_bottom"; part { name: "background_bottom"; type: RECT;
mouse_events: 0; mouse_events: 0;
clip_to: "bottom_clip"; clip_to: "bottom_clip";
description { state: "default" 0.0; description { state: "default" 0.0;
color: 255 255 255 25; color: 255 255 255 128; // no cc
color_class: "GLOW"; color_class: "GLOW";
image.normal: "sl_stripe.png";
fill.size.relative: 0.0 0.0;
fill.size.offset: 240 240;
} }
} }
@ -137,7 +119,7 @@ group { name: "terminology/selection";
inherit: "default" 0.0; inherit: "default" 0.0;
} }
} }
/*
// the outline around the selection... // the outline around the selection...
#define TARGETS \ #define TARGETS \
target: "top_clip"; target: "middle_clip"; target: "bottom_clip"; \ target: "top_clip"; target: "middle_clip"; target: "bottom_clip"; \
@ -186,6 +168,7 @@ group { name: "terminology/selection";
// oneline (also multiple lines but all fill the row): // oneline (also multiple lines but all fill the row):
// | ######### | // | ######### |
part { name: "0.left"; part { name: "0.left";
mouse_events: 0; mouse_events: 0;
clip_to: "0.clip"; clip_to: "0.clip";
@ -875,6 +858,7 @@ group { name: "terminology/selection";
action: STATE_SET "bottomfull" 0.0; action: STATE_SET "bottomfull" 0.0;
TARGETS; TARGETS;
} }
*/
// top and bottom swallows used to coimmunicate via min/max size the // top and bottom swallows used to coimmunicate via min/max size the
// size of the top and bottom lines // size of the top and bottom lines
@ -896,123 +880,177 @@ group { name: "terminology/selection";
} }
// blinky cursors indicating you can drag the ends of the selection // blinky cursors indicating you can drag the ends of the selection
part { name: "cursor.top_left"; type: RECT; part { name: "cursor.top_left"; type: SPACER;
mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "terminology.top_left"; rel.to: "terminology.top_left";
rel1.relative: 1.0 0.0; rel1.relative: 1.0 0.0;
rel2.to: "terminology.top_left";
rel2.relative: 1.0 1.0; rel2.relative: 1.0 1.0;
rel2.offset: 0 -1; max: 0 99999;
color: 255 255 255 128;
color_class: "END_SELECTION";
} }
} }
part { name: "cursor_blink.top_left"; type: RECT; part { name: "cursor.top_left_arrow_l";
mouse_events: 0; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "cursor.top_left"; image.normal: "arrow-l";
rel2.to: "cursor.top_left"; color_class: "/fg/normal/term/selection/arrow/left";
visible: 0; rel.to: "cursor.top_left";
min: 15 15;
max: 15 15;
align: 1.0 0.5;
rel1.offset: -5 0;
rel2.offset: -5 -1;
rel2.relative: 0.0 1.0;
offscale;
} }
description { state: "fading" 0.0; description { state: "fading" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
color: 255 255 255 255;
color_class: "END_SELECTION";
visible: 1;
} }
description { state: "fading" 1.0; description { state: "fading" 1.0;
inherit: "fading" 0.0; inherit: "default" 0.0;
color: 255 255 255 64; rel1.offset: -15 0;
color_class: "END_SELECTION"; rel2.offset: -15 -1;
rel1.offset: -5 0; color: 255 255 255 0; // no cc
}
}
part { name: "cursor.top_left_arrow_u";
scale: 1;
description { state: "default" 0.0;
image.normal: "arrow-u";
color_class: "/fg/normal/term/selection/arrow/up";
rel.to: "cursor.top_left";
min: 15 15;
max: 15 15;
align: 0.5 1.0;
rel1.offset: 0 -5;
rel2.offset: -1 -5;
rel2.relative: 1.0 0.0;
offscale;
}
description { state: "fading" 0.0;
inherit: "default" 0.0;
}
description { state: "fading" 1.0;
inherit: "default" 0.0;
rel1.offset: 0 -15;
rel2.offset: -1 -15;
color: 255 255 255 0; // no cc
} }
} }
part { name: "zone.top_left"; type: RECT; part { name: "zone.top_left"; type: RECT;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "cursor.top_left";
rel1.offset: -15 0;
rel2.to: "cursor.top_left";
rel2.offset: 15 0;
color: 0 0 0 0; color: 0 0 0 0;
rel.to: "cursor.top_left";
min: 30 30;
rel1.offset: -15 -15;
rel2.offset: 14 -1;
offscale;
} }
program { name: "top_left.blink"; program { name: "top_left.blink";
signal: "mouse,in"; signal: "mouse,in"; source: "zone.top_left";
source: "zone.top_left";
action: STATE_SET "fading" 0.0; action: STATE_SET "fading" 0.0;
target: "cursor_blink.top_left"; target: "cursor.top_left_arrow_l";
target: "cursor.top_left_arrow_u";
after: "top_left.fade"; after: "top_left.fade";
} }
program { name: "top_left.fade"; program { name: "top_left.fade";
action: STATE_SET "fading" 1.0; action: STATE_SET "fading" 1.0;
transition: LINEAR 0.3; transition: LINEAR 0.5;
target: "cursor_blink.top_left"; target: "cursor.top_left_arrow_l";
target: "cursor.top_left_arrow_u";
after: "top_left.blink"; after: "top_left.blink";
} }
program { name: "top_left.stop"; program { signal: "mouse,out"; source: "zone.top_left";
signal: "mouse,out";
source: "zone.top_left";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "cursor_blink.top_left"; target: "cursor.top_left_arrow_l";
target: "cursor.top_left_arrow_u";
} }
} }
part { name: "cursor.bottom_right"; type: RECT;
mouse_events: 0; part { name: "cursor.bottom_right"; type: SPACER;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "terminology.bottom_right"; rel.to: "terminology.bottom_right";
rel1.relative: 0.0 0.0; rel1.relative: 0.0 0.0;
rel1.offset: -1 0;
rel2.to: "terminology.bottom_right";
rel2.relative: 0.0 1.0; rel2.relative: 0.0 1.0;
rel2.offset: -1 -1; max: 0 99999;
color: 255 255 255 128;
color_class: "END_SELECTION";
} }
} }
part { name: "cursor_blink.bottom_right"; type: RECT; part { name: "cursor.top_left_arrow_r";
mouse_events: 0; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "cursor.bottom_right"; image.normal: "arrow-r";
rel2.to: "cursor.bottom_right"; color_class: "/fg/normal/term/selection/arrow/left";
visible: 0; rel.to: "cursor.bottom_right";
min: 15 15;
max: 15 15;
align: 0.0 0.5;
rel1.offset: 4 0;
rel2.offset: 4 -1;
rel1.relative: 1.0 0.0;
offscale;
} }
description { state: "fading" 0.0; description { state: "fading" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
color: 255 255 255 255;
color_class: "END_SELECTION";
visible: 1;
} }
description { state: "fading" 1.0; description { state: "fading" 1.0;
inherit: "fading" 0.0; inherit: "default" 0.0;
color: 255 255 255 64; rel1.offset: 14 0;
color_class: "END_SELECTION"; rel2.offset: 14 -1;
rel2.offset: +5 0; color: 255 255 255 0; // no cc
}
}
part { name: "cursor.top_left_arrow_d";
scale: 1;
description { state: "default" 0.0;
image.normal: "arrow-d";
color_class: "/fg/normal/term/selection/arrow/down";
rel.to: "cursor.bottom_right";
min: 15 15;
max: 15 15;
align: 0.5 0.0;
rel1.offset: 0 4;
rel2.offset: -1 4;
rel1.relative: 0.0 1.0;
offscale;
}
description { state: "fading" 0.0;
inherit: "default" 0.0;
}
description { state: "fading" 1.0;
inherit: "default" 0.0;
rel1.offset: 0 14;
rel2.offset: -1 14;
color: 255 255 255 0; // no cc
} }
} }
part { name: "zone.bottom_right"; type: RECT; part { name: "zone.bottom_right"; type: RECT;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "cursor.bottom_right";
rel1.offset: -15 0;
rel2.to: "cursor.bottom_right";
rel2.offset: 15 0;
color: 0 0 0 0; color: 0 0 0 0;
rel.to: "cursor.bottom_right";
min: 30 30;
rel1.offset: -15 0;
rel2.offset: 14 14;
offscale;
} }
program { name: "bottom_right.blink"; program { name: "bottom_right.blink";
signal: "mouse,in"; source: "zone.bottom_right"; signal: "mouse,in"; source: "zone.bottom_right";
action: STATE_SET "fading" 0.0; action: STATE_SET "fading" 0.0;
target: "cursor_blink.bottom_right"; target: "cursor.top_left_arrow_r";
target: "cursor.top_left_arrow_d";
after: "bottom_right.fade"; after: "bottom_right.fade";
} }
program { name: "bottom_right.fade"; program { name: "bottom_right.fade";
action: STATE_SET "fading" 1.0; action: STATE_SET "fading" 1.0;
transition: LINEAR 0.3; transition: LINEAR 0.5;
target: "cursor_blink.bottom_right"; target: "cursor.top_left_arrow_r";
target: "cursor.top_left_arrow_d";
after: "bottom_right.blink"; after: "bottom_right.blink";
} }
program { name: "bottom_right.stop"; program { signal: "mouse,out"; source: "zone.bottom_right";
signal: "mouse,out"; source: "zone.bottom_right";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "cursor_blink.bottom_right"; target: "cursor.top_left_arrow_r";
target: "cursor.top_left_arrow_d";
} }
} }
} }

View File

@ -1,28 +1,11 @@
group { name: "terminology/tab_drag_thumb"; group { name: "terminology/tab_drag_thumb";
images { images.image: "pm_shadow.png" COMP;
image: "bg_bevel.png" COMP;
image: "bg_glint.png" COMP;
image: "pm_shadow.png" COMP;
image: "cr_glow.png" COMP;
image: "bg_led_glow.png" COMP;
image: "bg_led_base.png" COMP;
image: "bg_led.png" COMP;
image: "bg_led_strobe.png" COMP;
}
set { name: "bg_shine";
image { image: "bg_shine5.png" COMP; size: 0 0 256 120; }
image { image: "bg_shine4.png" COMP; size: 256 120 512 240; }
image { image: "bg_shine3.png" COMP; size: 512 240 1024 480; }
image { image: "bg_shine2.png" COMP; size: 1024 480 2048 960; }
image { image: "bg_shine.png" COMP; size: 2048 960 99999 99999; }
}
parts { parts {
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// base background and selection image // base background and selection image
part { name: "clip"; type: RECT; part { name: "clip"; type: RECT;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "terminology.content"; rel.to: "terminology.content";
rel2.to: "terminology.content";
color: 255 255 255 255; color: 255 255 255 255;
} }
} }
@ -30,29 +13,16 @@ group { name: "terminology/tab_drag_thumb";
mouse_events: 0; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
rel1.to: "terminology.content"; rel.to: "terminology.content";
rel2.to: "terminology.content"; rel1.offset: -32 -32;
rel1.offset: -40 -40; rel2.offset: 31 31;
rel2.offset: 39 39;
image.normal: "pm_shadow.png"; image.normal: "pm_shadow.png";
image.border: 64 64 64 64; image.border: 64 64 64 64;
image.border_scale_by: 1.0; image.border_scale_by: 0.5;
color: 255 255 255 255; image.border_scale: 1;
color_class: "/shadow/normal/term/drag_thumb";
fill.smooth: 0; fill.smooth: 0;
} offscale;
}
part { name: "glow";
mouse_events: 0;
description { state: "default" 0.0;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
rel1.offset: -4 -4;
rel2.offset: 3 3;
image {
normal: "cr_glow.png";
border: 9 9 9 9;
}
color_class: "GLOW";
} }
} }
@ -62,53 +32,24 @@ group { name: "terminology/tab_drag_thumb";
clip_to: "clip"; clip_to: "clip";
description { state: "default" 0.0; description { state: "default" 0.0;
color_class: "BG"; color_class: "BG";
rel1.to: "terminology.content"; rel.to: "terminology.content";
rel2.to: "terminology.content";
} }
} }
part { name: "terminology.content"; type: SWALLOW; part { name: "terminology.content"; type: SWALLOW;
clip_to: "clip"; clip_to: "clip";
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.relative: 0.0 0.0;
rel2.relative: 1.0 1.0;
} }
} }
////////////////////////////////////////////////////////////////////
// fancy stuff over the top of the terminal for shading and title
part { name: "overlay";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
image.normal: "pm_overlay.png";
fill.smooth: 0;
}
}
part { name: "bevel";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
image.normal: "bg_bevel.png";
image.border: 3 3 3 3;
image.middle: 0;
fill.smooth: 0;
}
}
part { name: "terminology.title"; type: TEXT; mouse_events: 0; part { name: "terminology.title"; type: TEXT; mouse_events: 0;
effect: GLOW;
scale: 1; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "terminology.content"; rel.to: "terminology.content";
rel2.to: "terminology.content"; rel1.offset: 4 4;
color: 255 255 255 255; rel2.offset: -5 -5;
color2: 255 255 255 128; color_class: "/fg/normal/term/sel/title/text";
color3: 255 255 255 20; align: 0.5 0.0;
color_class: "GLOW_TXT_HIGHLIGHT"; offscale;
align: 0.5 1.0;
text { font: "Sans"; size: 10; text { font: "Sans"; size: 10;
align: 0.5 1.0; align: 0.5 1.0;
min: 0 1; min: 0 1;
@ -116,173 +57,114 @@ group { name: "terminology/tab_drag_thumb";
} }
} }
////////////////////////////////////////////////////////////////////
// fancy stuff on top
part { name: "glint";
mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
fixed: 1 1;
min: 79 5;
max: 79 5;
rel1 {
to: "terminology.content";
relative: 0.0 0.0;
offset: 0 0;
}
rel2 {
to: "terminology.content";
relative: 1.0 0.0;
offset: -1 0;
}
image.normal: "bg_glint.png";
}
}
part { name: "shine";
mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "terminology.content";
rel2.to: "terminology.content";
image.normal: "bg_shine";
fill.smooth: 0;
align: 0.5 0.0;
aspect: (256/120) (256/120);
aspect_preference: HORIZONTAL;
}
}
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// visual bell - spinning red siren light // visual bell - spinning red siren light
part { name: "bell_glow"; images.image: "circle-1200.png" COMP;
mouse_events: 0; images.image: "strobe-600.png" COMP;
clip_to: "clip"; part { name: "bell_glow"; mouse_events: 0;
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
visible: 0; visible: 0;
color: 255 255 255 0; color: 255 80 60 0; // no cc
rel1.to: "bell_base"; rel.to: "bell";
rel2.to: "bell_base"; min: 100 100;
min: 200 200; image.normal: "circle-1200.png";
fill.smooth: 0;
image.normal: "bg_led_glow.png";
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
visible: 1; visible: 1;
color: 255 255 255 255; color: 255 80 60 32;
} }
} }
part { name: "bell_base"; part { name: "bell_glow2"; mouse_events: 0;
mouse_events: 0; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
visible: 0; visible: 0;
color: 255 255 255 0; color: 255 240 160 0; // no cc
min: 32 32; rel.to: "bell";
max: 32 32; min: 50 50;
rel1.to: "terminology.content"; image.normal: "circle-1200.png";
rel2.to: "terminology.content";
align: 1.0 1.0;
image.normal: "bg_led_base.png";
} }
description { state: "visible" 0.0; description { state: "visible" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
visible: 1; visible: 1;
color: 255 255 255 255; color: 255 220 120 32;
}
}
part { name: "bell";
mouse_events: 0;
description { state: "default" 0.0;
fixed: 1 1;
visible: 0;
color: 255 255 255 0;
rel1.to: "bell_base";
rel2.to: "bell_base";
image.normal: "bg_led.png";
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
} }
} }
part { name: "bell_strobe"; part { name: "bell_strobe";
mouse_events: 0; mouse_events: 0;
description { state: "default" 0.0; description { state: "default" 0.0;
fixed: 1 1; fixed: 1 1;
visible: 0; color: 255 255 200 255;
color: 255 255 255 0; rel.to: "bell_glow2";
rel1.to: "bell"; image.normal: "strobe-600.png";
rel2.to: "bell"; rel1.relative: -0.5 -0.5;
image.normal: "bg_led_strobe.png"; rel2.relative: 1.5 1.5;
map { map {
on: 1; on: 1;
smooth: 1; smooth: 1;
rotation.center: "bell"; rotation.center: "bell";
} }
visible: 0;
} }
description { state: "spin" 0.0; description { state: "spin" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
map.rotation.z: 0.0;
visible: 1; visible: 1;
color: 255 255 255 255;
map.rotation.z: 36.0;
} }
description { state: "spin_done" 0.0; description { state: "spin_done" 0.0;
inherit: "spin" 0.0; inherit: "default" 0.0;
map.rotation.z: 720.0; map.rotation.z: 720.0;
} visible: 1;
description { state: "spin_done2" 0.0;
inherit: "spin" 0.0;
map.rotation.z: 1440.0;
} }
} }
program { part { name: "bell";
signal: "bell"; source: "terminology"; mouse_events: 0;
action: STATE_SET "default" 0.0; scale: 1;
target: "bell_base"; description { state: "default" 0.0;
target: "bell"; fixed: 1 1;
target: "bell_strobe"; visible: 0;
target: "bell_glow"; color: 255 255 255 0;
after: "bell"; max: 20 20;
min: 20 20;
align: 1.0 1.0;
rel1.offset: 15 15;
rel2.offset: -16 -16;
rel.to: "terminology.content";
image.normal: "circle-1200.png";
offscale;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
visible: 1;
color: 255 255 255 255;
}
} }
program { name: "bell"; program { signal: "bell"; source: "terminology";
action: STATE_SET "visible" 0.0; action: STATE_SET "visible" 0.0;
target: "bell_base";
target: "bell_glow";
after: "bell2";
}
program { name: "bell2";
action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.1;
target: "bell"; target: "bell";
target: "bell_glow"; target: "bell_glow";
target: "bell_glow2";
after: "bell3"; after: "bell3";
} }
program { name: "bell3"; program { name: "bell3";
action: STATE_SET "spin" 0.0; action: STATE_SET "spin" 0.0;
transition: LINEAR 0.1; transition: LINEAR 0.1;
target: "bell_strobe"; target: "bell_strobe";
after: "bell4.1";
}
program { name: "bell4.1";
action: STATE_SET "spin" 0.0;
target: "bell_strobe";
after: "bell4.2"; after: "bell4.2";
} }
program { name: "bell4.2"; program { name: "bell4.2";
action: STATE_SET "spin_done" 0.0; action: STATE_SET "spin_done" 0.0;
transition: LINEAR 0.9; transition: LINEAR 0.9;
target: "bell_strobe"; target: "bell_strobe";
after: "bell4.3"; after: "bell4.1";
}
program { name: "bell4.3";
action: STATE_SET "spin_done2" 0.0;
transition: LINEAR 1.0;
target: "bell_strobe";
after: "bell4.4";
}
program { name: "bell4.4";
action: STATE_SET "spin_done" 0.0;
target: "bell_strobe";
after: "bell4.3";
} }
} }
} }

View File

@ -1,210 +1,130 @@
group { name: "terminology/tabbar_back"; group { name: "terminology/tabbar_back";
images {
image: "tab_base_l1.png" COMP;
image: "tab_base_m.png" COMP;
image: "tab_base_r1.png" COMP;
image: "tab_other_l.png" COMP;
image: "tab_other_m.png" COMP;
image: "tab_other_r.png" COMP;
image: "tab_shad_l2.png" COMP;
image: "tab_shad_r2.png" COMP;
}
set { name: "tab_grouped"; set { name: "tab_grouped";
image { image: "tab_grouped_8.png" COMP; size: 0 0 8 8; } image { image: "tab_grouped_8.png" COMP; size: 0 0 8 8; }
image { image: "tab_grouped_16.png" COMP; size: 8 8 16 16; } image { image: "tab_grouped_16.png" COMP; size: 8 8 16 16; }
image { image: "tab_grouped_32.png" COMP; size: 16 16 99999 99999; } image { image: "tab_grouped_32.png" COMP; size: 16 16 99999 99999; }
} }
parts { parts {
part { name: "tab_bevel_shad1"; images.image: "tab_shad_l.png" COMP;
mouse_events: 0; part { name: "tab_bevel_top1"; mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "tab_bevel_top1";
rel2.to: "tab_bevel_top1";
image.normal: "tab_shad_l2.png";
image.border: 0 0 10 10;
fill.smooth: 0;
}
}
part { name: "tab_bevel_shad3";
mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "tab_bevel_top3";
rel2.to: "tab_bevel_top3";
image.normal: "tab_shad_r2.png";
image.border: 0 0 10 10;
fill.smooth: 0;
}
}
part { name: "tab_base_top1";
mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "tab_bevel_top1";
rel2.to: "tab_bevel_top1";
image.normal: "tab_other_l.png";
image.border: 0 0 4 4;
fill.smooth: 0;
}
}
part { name: "tab_base_top2";
mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "tab_bevel_top2";
rel2.to: "tab_bevel_top2";
image.normal: "tab_other_m.png";
image.border: 0 0 4 4;
fill.smooth: 0;
}
}
part { name: "tab_base_top3";
mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "tab_bevel_top3";
rel2.to: "tab_bevel_top3";
image.normal: "tab_other_r.png";
image.border: 0 0 4 4;
fill.smooth: 0;
}
}
part { name: "tab_bevel_top1";
mouse_events: 0;
clip_to: "clip"; clip_to: "clip";
scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
align: 0.0 0.0; align: 0.0 0.0;
rel1.offset: -4 0; max: 5 99999;
max: 12 99999; min: 5 0;
min: 12 0; image.normal: "tab_shad_l.png";
image.normal: "tab_base_l1.png"; image.border: 0 20 5 15;
image.border: 0 0 4 4; image.border_scale_by: 0.25;
image.border_scale: 1;
fill.smooth: 0; fill.smooth: 0;
fixed: 1 0; fixed: 1 0;
color_class: "/shadow/normal/tab";
} }
} }
part { name: "tab_bevel_top2"; part { name: "tab_bevel_top2"; type: RECT; mouse_events: 0;
mouse_events: 0;
clip_to: "clip"; clip_to: "clip";
description { state: "default" 0.0; description { state: "default" 0.0;
rel1.to: "tab_bevel_top1"; rel1.to: "tab_bevel_top1";
rel1.relative: 1.0 0.0; rel1.relative: 1.0 0.0;
rel2.to: "tab_bevel_top3"; rel2.to: "tab_bevel_top3";
rel2.relative: 0.0 1.0; rel2.relative: 0.0 1.0;
image.normal: "tab_base_m.png"; color_class: "/bg/normal/tab";
image.border: 0 0 4 4;
fill.smooth: 0;
} }
} }
part { name: "tab_bevel_top3"; images.image: "tab_shad_r.png" COMP;
mouse_events: 0; part { name: "tab_bevel_top3"; mouse_events: 0;
clip_to: "clip"; clip_to: "clip";
description { state: "default" 0.0;
align: 1.0 0.0;
rel2.offset: 3 -1;
max: 12 99999;
min: 12 0;
image.normal: "tab_base_r1.png";
image.border: 0 0 4 4;
fill.smooth: 0;
fixed: 1 0;
}
}
part { name: "tabgrouped"; type: IMAGE;
scale: 1; scale: 1;
description { state: "default" 0.0; description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH; align: 1.0 0.0;
max: 5 99999;
min: 5 0;
image.normal: "tab_shad_r.png";
image.border: 20 0 5 15;
image.border_scale_by: 0.25;
image.border_scale: 1;
fill.smooth: 0;
fixed: 1 0;
color_class: "/shadow/normal/tab";
}
}
part { name: "tabgrouped";
scale: 1;
description { state: "default" 0.0;
align: 0.0 0.5; align: 0.0 0.5;
min: 0 0;
max: 0 0;
fixed: 1 1; fixed: 1 1;
max: 0 0;
rel1 { rel1 {
to: "tab_bevel_top2"; to: "tab_bevel_top2";
relative: 0.0 0.3; relative: 0.0 0.0;
offset: -1 0; offset: 3 3;
} }
rel2 { rel2 {
to: "tab_bevel_top2"; to: "tab_bevel_top2";
relative: 1.0 0.7; relative: 0.0 1.0;
offset: 3 -4;
} }
image.normal: "tab_grouped";
color_class: "/fg/normal/tab/term/icon/grouped";
visible: 0; visible: 0;
offscale;
} }
description { state: "grouped" 0.0; description { state: "grouped" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
min: 8 8; min: 15 15;
max: 32 32; max: 15 15;
image.normal: "tab_grouped";
rel1 {
to: "tab_bevel_top2";
relative: 0.0 0.3;
}
rel2 {
to: "tab_bevel_top2";
relative: 1.0 0.7;
}
color: 180 180 180 255;
visible: 1; visible: 1;
} }
} }
program { program { signal: "grouped,on"; source: "terminology";
signal: "grouped,on"; source: "terminology";
action: STATE_SET "grouped" 0.0; action: STATE_SET "grouped" 0.0;
target: "tabgrouped"; target: "tabgrouped";
} }
program { program { signal: "grouped,off"; source: "terminology";
signal: "grouped,off"; source: "terminology";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "tabgrouped"; target: "tabgrouped";
} }
part { name: "terminology.title"; type: TEXT; mouse_events: 0; part { name: "terminology.title"; type: TEXT; mouse_events: 0;
scale: 1; scale: 1;
effect: OUTLINE_SOFT_SHADOW;
description { state: "default" 0.0; description { state: "default" 0.0;
text { font: "Sans:style=Bold"; size: 10; text { font: "Sans:style=Bold"; size: 10;
align: 0.5 0.5; align: 0.5 0.5;
min: 0 1; min: 0 1;
} }
align: 0.5 0.5;
color: 180 180 180 255;
color3: 0 0 0 18;
rel1 { rel1 {
to_x: "tabgrouped"; to_x: "tabgrouped";
to_y: "tab_bevel_top2"; to_y: "tab_bevel_top2";
relative: 1.0 0.0; relative: 1.0 0.0;
offset: 2 0;
} }
rel2.to: "tab_bevel_top2"; rel2.to: "tab_bevel_top2";
rel2.offset: -19 -1;
offscale;
color_class: "/fg/selected/term/tab/title/text";
} }
description { state: "bell" 0.0; description { state: "bell" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
color: 255 219 0 96; color_class: "/fg/selected/term/tab/title/text/bell";
color2: 255 51 0 48;
color3: 255 51 0 8;
} }
} }
part { name: "clip"; type: RECT; part { name: "clip"; type: RECT;
description { state: "default" 0.0; description { state: "default" 0.0;
rel2.offset: -1 -2;
} }
} }
part { name: "event"; type: RECT; part { name: "event"; type: RECT;
description { state: "default" 0.0; description { state: "default" 0.0;
color: 0 0 0 0; color: 0 0 0 0; // no cc
} }
} }
programs { programs {
program { program { signal: "mouse,clicked,1"; source: "event";
signal: "mouse,clicked,1"; source: "event";
action: SIGNAL_EMIT "tab,activate" "terminology"; action: SIGNAL_EMIT "tab,activate" "terminology";
} }
program { name: "bell"; program { signal: "bell"; source: "terminology";
signal: "bell"; source: "terminology";
action: STATE_SET "bell" 0.0; action: STATE_SET "bell" 0.0;
target: "terminology.title"; target: "terminology.title";
} }
program { name: "bell,off"; program { signal: "bell,off"; source: "terminology";
signal: "bell,off"; source: "terminology";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "terminology.title"; target: "terminology.title";
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1010 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 392 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 369 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 419 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 463 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 474 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 382 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 333 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 446 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 B

View File

@ -1,320 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="40"
height="40"
id="svg2985"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="icon_split_v.svg"
inkscape:export-filename="/home/raster/C/terminology/data/themes/images/icon_split_hpng.png"
inkscape:export-xdpi="180"
inkscape:export-ydpi="180">
<defs
id="defs2987">
<linearGradient
id="linearGradient4566">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop4568" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop4570" />
</linearGradient>
<linearGradient
id="linearGradient3800">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3802" />
<stop
id="stop3808"
offset="0.1"
style="stop-color:#ffffff;stop-opacity:0.75294119;" />
<stop
style="stop-color:#ffffff;stop-opacity:0.49803922;"
offset="0.2"
id="stop3810" />
<stop
id="stop3812"
offset="0.44999999"
style="stop-color:#ffffff;stop-opacity:0.24705882;" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3804" />
</linearGradient>
<linearGradient
id="linearGradient3765">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3767" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3769" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4566-4"
id="radialGradient4572-5"
cx="2.0000002"
cy="-15.5"
fx="2.0000002"
fy="-15.5"
r="18"
gradientTransform="matrix(0,0.05555555,-2,-1.9264137e-8,-29,1.8888886)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient4566-4">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop4568-0" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop4570-3" />
</linearGradient>
<filter
inkscape:collect="always"
id="filter4991"
x="-0.32"
width="1.64"
y="-0.20571429"
height="1.4114286">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.2"
id="feGaussianBlur4993" />
</filter>
<filter
inkscape:collect="always"
id="filter4995"
x="-0.32"
width="1.64"
y="-0.20571429"
height="1.4114286">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.2"
id="feGaussianBlur4997" />
</filter>
<filter
inkscape:collect="always"
id="filter5066"
x="-0.057"
width="1.114"
y="-1.026"
height="3.052">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.855"
id="feGaussianBlur5068" />
</filter>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7413"
id="radialGradient7419"
cx="32"
cy="12"
fx="32"
fy="12"
r="3.5"
gradientTransform="matrix(-1.7142854,-1.7142859,1.7142858,-1.7142855,66.285703,87.428576)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient7413">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop7415" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop7417" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7413"
id="radialGradient7423"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.7142859,1.7142854,1.7142855,-1.7142858,-55.428576,-34.285703)"
cx="32"
cy="12"
fx="32"
fy="12"
r="3.5" />
<radialGradient
r="3.5"
fy="12"
fx="32"
cy="12"
cx="32"
gradientTransform="matrix(1.7142859,-1.7142854,1.7142855,1.7142858,-55.428576,58.285703)"
gradientUnits="userSpaceOnUse"
id="radialGradient7500"
xlink:href="#linearGradient7413"
inkscape:collect="always" />
<filter
inkscape:collect="always"
id="filter8045"
x="-0.09"
width="1.18"
y="-0.15428571"
height="1.3085714">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.45"
id="feGaussianBlur8047" />
</filter>
<filter
inkscape:collect="always"
id="filter8049"
x="-0.09"
width="1.18"
y="-0.15428571"
height="1.3085714">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.45"
id="feGaussianBlur8051" />
</filter>
<filter
inkscape:collect="always"
id="filter8085"
x="-0.031666667"
width="1.0633333"
y="-0.57"
height="2.14">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.475"
id="feGaussianBlur8087" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#505050"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="30.55"
inkscape:cx="33.06168"
inkscape:cy="20.000342"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
units="cm"
objecttolerance="1"
guidetolerance="50"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2993"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
dotted="false" />
</sodipodi:namedview>
<metadata
id="metadata2990">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(0,8)">
<rect
transform="matrix(0,-1,1,0,0,0)"
y="2"
x="-13"
height="36"
width="2"
id="rect5032"
style="fill:#3399ff;fill-opacity:1;stroke:none;filter:url(#filter5066)" />
<rect
style="fill:#3399ff;fill-opacity:1;stroke:none;filter:url(#filter8085)"
id="rect8071"
width="2"
height="36"
x="-13"
y="2"
transform="matrix(0,-1,1,0,0,0)" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none"
id="rect3818"
width="2"
height="36"
x="-13"
y="2"
transform="matrix(0,-1,1,0,0,0)" />
<path
style="fill:#3399ff;fill-opacity:1;stroke:none"
d="m 15,8 5,-5 5,5 2,-2 -7,-7 -7,7 z"
id="path4863"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path4865"
d="m 15,16 5,5 5,-5 2,2 -7,7 -7,-7 z"
style="fill:#3399ff;fill-opacity:1;stroke:none" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path4867"
d="m 24,7 5,5 -5,5 2,2 7,-7 -7,-7 z"
style="fill:#3399ff;fill-opacity:1;stroke:none;filter:url(#filter4991)"
transform="matrix(0,-1,1,0,8,32)" />
<path
style="fill:#3399ff;fill-opacity:1;stroke:none;filter:url(#filter4995)"
d="m 16,7 -5,5 5,5 -2,2 -7,-7 7,-7 z"
id="path4869"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc"
transform="matrix(0,-1,1,0,8,32)" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path6903"
d="m 25,17 -5,5 -5,-5 -1,1 6,6 6,-6 z"
style="fill:url(#radialGradient7500);fill-opacity:1;stroke:none;filter:url(#filter8045)" />
<path
style="fill:url(#radialGradient7423);fill-opacity:1;stroke:none;filter:url(#filter8049)"
d="M 25,7 20,2 15,7 14,6 20,0 26,6 z"
id="path7421"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -1,337 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="40"
height="40"
id="svg2985"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="icon_split_h.svg"
inkscape:export-filename="/home/raster/C/terminology/data/themes/images/icon_new.png"
inkscape:export-xdpi="180"
inkscape:export-ydpi="180">
<defs
id="defs2987">
<linearGradient
inkscape:collect="always"
id="linearGradient7413">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop7415" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop7417" />
</linearGradient>
<linearGradient
id="linearGradient4566">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop4568" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop4570" />
</linearGradient>
<linearGradient
id="linearGradient3800">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3802" />
<stop
id="stop3808"
offset="0.1"
style="stop-color:#ffffff;stop-opacity:0.75294119;" />
<stop
style="stop-color:#ffffff;stop-opacity:0.49803922;"
offset="0.2"
id="stop3810" />
<stop
id="stop3812"
offset="0.44999999"
style="stop-color:#ffffff;stop-opacity:0.24705882;" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3804" />
</linearGradient>
<linearGradient
id="linearGradient3765">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3767" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3769" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3765"
id="radialGradient3784"
cx="2"
cy="38"
fx="2"
fy="38"
r="18"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0,2,-2,0,77,-8)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4566"
id="radialGradient4572"
cx="2.0000002"
cy="-15.5"
fx="2.0000002"
fy="-15.5"
r="18"
gradientTransform="matrix(0,0.05555555,-2,-1.9264137e-8,-29,1.8888886)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4566-4"
id="radialGradient4572-5"
cx="2.0000002"
cy="-15.5"
fx="2.0000002"
fy="-15.5"
r="18"
gradientTransform="matrix(0,0.05555555,-2,-1.9264137e-8,-29,1.8888886)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient4566-4">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop4568-0" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop4570-3" />
</linearGradient>
<radialGradient
r="18"
fy="-15.5"
fx="2.0000002"
cy="-15.5"
cx="2.0000002"
gradientTransform="matrix(0,0.05555555,-2,-1.9264137e-8,-37,1.888889)"
gradientUnits="userSpaceOnUse"
id="radialGradient4589"
xlink:href="#linearGradient4566-4"
inkscape:collect="always" />
<filter
inkscape:collect="always"
id="filter4859"
x="-1.026"
width="3.052"
y="-0.057"
height="1.114">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.855"
id="feGaussianBlur4861" />
</filter>
<filter
inkscape:collect="always"
id="filter4991"
x="-0.32"
width="1.64"
y="-0.20571429"
height="1.4114286">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.2"
id="feGaussianBlur4993" />
</filter>
<filter
inkscape:collect="always"
id="filter4995"
x="-0.32"
width="1.64"
y="-0.20571429"
height="1.4114286">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.2"
id="feGaussianBlur4997" />
</filter>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7413"
id="radialGradient7419"
cx="32"
cy="12"
fx="32"
fy="12"
r="3.5"
gradientTransform="matrix(-1.7142854,-1.7142859,1.7142858,-1.7142855,66.285703,87.428576)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7413"
id="radialGradient7423"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.7142854,-1.7142859,-1.7142858,-1.7142855,-26.285703,87.428576)"
cx="32"
cy="12"
fx="32"
fy="12"
r="3.5" />
<filter
inkscape:collect="always"
id="filter7465"
x="-0.15428571"
width="1.3085714"
y="-0.09"
height="1.18">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.45"
id="feGaussianBlur7467" />
</filter>
<filter
inkscape:collect="always"
id="filter7469"
x="-0.15428571"
width="1.3085714"
y="-0.09"
height="1.18">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.45"
id="feGaussianBlur7471" />
</filter>
<filter
inkscape:collect="always"
id="filter8067"
x="-0.57"
width="2.14"
y="-0.031666667"
height="1.0633333">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.475"
id="feGaussianBlur8069" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#505050"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="30.55"
inkscape:cx="33.06232"
inkscape:cy="19.998886"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:grid-bbox="true"
inkscape:document-units="px"
units="cm"
objecttolerance="1"
guidetolerance="50"
inkscape:window-width="2560"
inkscape:window-height="1377"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2993"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
dotted="false" />
</sodipodi:namedview>
<metadata
id="metadata2990">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(0,8)">
<rect
y="-6"
x="19"
height="36"
width="2"
id="rect3820"
style="fill:#3399ff;fill-opacity:1;stroke:none;filter:url(#filter4859)" />
<rect
style="fill:#3399ff;fill-opacity:1;stroke:none;filter:url(#filter8067)"
id="rect8053"
width="2"
height="36"
x="19"
y="-6" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path4867"
d="m 24,7 5,5 -5,5 2,2 7,-7 -7,-7 z"
style="fill:#3399ff;fill-opacity:1;stroke:none;filter:url(#filter4991)" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none"
id="rect3818"
width="2"
height="36"
x="19"
y="-6" />
<path
style="fill:#3399ff;fill-opacity:1;stroke:none"
d="m 24,7 5,5 -5,5 2,2 7,-7 -7,-7 z"
id="path4863"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path4865"
d="m 16,7 -5,5 5,5 -2,2 -7,-7 7,-7 z"
style="fill:#3399ff;fill-opacity:1;stroke:none" />
<path
style="fill:#3399ff;fill-opacity:1;stroke:none;filter:url(#filter4995)"
d="m 16,7 -5,5 5,5 -2,2 -7,-7 7,-7 z"
id="path4869"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path6903"
d="m 25,7 5,5 -5,5 1,1 6,-6 -6,-6 z"
style="fill:url(#radialGradient7419);fill-opacity:1;stroke:none;filter:url(#filter7465)" />
<path
style="fill:url(#radialGradient7423);fill-opacity:1;stroke:none;filter:url(#filter7469)"
d="m 15,7 -5,5 5,5 -1,1 -6,-6 6,-6 z"
id="path7421"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 257 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 946 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 819 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Some files were not shown because too many files have changed in this diff Show More