we dont use pager2 window theme element at all... as we use deskmirror...

This commit is contained in:
Carsten Haitzler 2014-02-10 09:37:50 +09:00
parent d75098344d
commit 893be18935
1 changed files with 0 additions and 77 deletions

View File

@ -325,80 +325,3 @@ group { name: "e/modules/pager2/desk";
}
}
}
group { name: "e/modules/pager2/window";
images.image: "mini_box_bevel_shadow.png" COMP;
images.image: "mini_box_glow.png" COMP;
parts {
part { name: "base"; type: SPACER;
description { state: "default" 0.0;
}
description { state: "urgent" 0.0;
rel1.offset: 0 -5;
rel2.offset: -1 -6;
}
}
part { name: "win"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_box_bevel_shadow.png";
image.border: 7 7 7 7;
rel1.offset: -5 -5;
rel1.to: "base";
rel2.offset: 4 4;
rel2.to: "base";
}
description { state: "active" 0.0;
inherit: "default" 0.0;
image.normal: "mini_box_glow.png";
}
}
part { name: "e.swallow.content"; type: SWALLOW; mouse_events: 0;
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
}
}
part { name: "event"; type: RECT;
description { state: "default" 0.0;
color: 0 0 0 0;
}
}
}
programs {
program {
signal: "e,state,focused"; source: "e";
action: STATE_SET "active" 0.0;
target: "win";
}
program {
signal: "e,state,unfocused"; source: "e";
action: STATE_SET "default" 0.0;
target: "win";
}
program { name: "urg1";
signal: "e,state,urgent"; source: "e";
action: STATE_SET "urgent" 0.0;
transition: DECELERATE 0.2;
target: "base";
after: "urg2";
}
program { name: "urg2";
signal: "e,state,urgent"; source: "e";
action: STATE_SET "default" 0.0;
transition: ACCELERATE 0.2;
target: "base";
after: "urg1";
}
program {
signal: "e,state,not_urgent"; source: "e";
action: ACTION_STOP;
target: "urg1";
target: "urg2";
after: "urg0";
}
program { name: "urg0";
action: STATE_SET "default" 0.0;
target: "base";
}
}
}