mild: changes to tell focused and unfocused terminals appart.

unfocused are bit darker. When focus the cursor will always start pulsing
from bright to dark.



SVN revision: 75580
This commit is contained in:
Gustavo Sverzut Barbieri 2012-08-23 01:39:01 +00:00
parent 5970864a85
commit e627bf93e4
1 changed files with 32 additions and 4 deletions

View File

@ -16,10 +16,33 @@ collections {
////////////////////////////////////////////////////////////////////
// background handling
part { name: "baseclip"; type: RECT;
part { name: "focusclip"; type: RECT;
clip_to: "bellclip";
description { state: "default" 0.0;
}
description { state: "unfocused" 0.0;
color: 200 200 200 255;
}
}
program {
signal: "focus,in";
source: "terminology";
action: STATE_SET "default" 0.0;
transition: ACCELERATE 0.1;
target: "focusclip";
}
program {
signal: "focus,out";
source: "terminology";
action: STATE_SET "unfocused" 0.0;
transition: ACCELERATE 0.1;
target: "focusclip";
}
part { name: "baseclip"; type: RECT;
clip_to: "focusclip";
description { state: "default" 0.0;
}
description { state: "image" 0.0;
inherit: "default" 0.0;
color: 255 255 255 0;
@ -826,7 +849,7 @@ collections {
offset: 32 32;
}
}
color: 255 255 255 80;
color: 255 255 255 16;
}
description { state: "focused" 0.0;
inherit: "default" 0.0;
@ -867,7 +890,7 @@ collections {
normal: "cr_out.png";
border: 3 3 3 3;
}
color: 255 255 255 80;
color: 255 255 255 64;
}
description { state: "focused" 0.0;
inherit: "default" 0.0;
@ -888,9 +911,13 @@ collections {
action: STATE_SET "focused" 0.0;
target: "fill";
target: "outline";
after: "pulse-prepare";
}
program { name: "pulse-prepare";
action: STATE_SET "default" 0.0;
target: "pulsclip";
after: "pulse";
}
program { name: "pulse";
action: STATE_SET "pulse" 0.0;
transition: DECELERATE 0.5;
@ -918,6 +945,7 @@ collections {
action: STATE_SET "default" 0.0;
target: "fill";
target: "outline";
target: "pulsclip";
}
program { name: "key";
signal: "key,down";