Add some more theme work.

This commit is contained in:
Jaime Thomas 2008-09-15 04:00:02 +00:00
parent d035776bc5
commit 17bd5a0c6a
8 changed files with 37 additions and 3 deletions

View File

@ -3,4 +3,6 @@
collections {
#include "groups/window.edc"
#include "groups/welcome_page.edc"
#include "groups/button.edc"
}

View File

@ -0,0 +1,4 @@
group {
name: "ecdb/welcome_page";
min: 640 170;
}

View File

@ -74,6 +74,12 @@ group {
relative: 1.0 0.0;
}
}
description {
state: "active" 0.0;
inherit: "default" 0.0;
color: 0 0 0 80;
}
}
part {
@ -227,14 +233,13 @@ group {
}
part {
name: "bottom_container";
type: RECT;
name: "action_area";
type: SWALLOW;
mouse_events: 0;
repeat_events: 1;
description {
state: "default" 0.0;
color: 250 0 0 40;
min: 99999 170;
rel1 {
@ -287,5 +292,24 @@ group {
target: "filelist_overlay_text";
transition: DECELERATE 0.5;
}
program {
name: "draggie_activate";
signal: "mouse,down,1";
action: STATE_SET "active" 0.0;
source: "paned_draggie";
target: "paned_draggie";
transition: DECELERATE 0.5;
}
program {
name: "draggie_deactivate";
signal: "mouse,clicked,1";
signal: "mouse,up,1";
action: STATE_SET "default" 0.0;
source: "paned_draggie";
target: "paned_draggie";
transition: DECELERATE 0.5;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 584 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

View File

@ -3,4 +3,8 @@ images {
image: "focus.png" COMP;
image: "text_overlay.png" COMP;
image: "paned_v_handle.png" COMP;
image: "button_base.png" COMP;
image: "button_shadow.png" COMP;
image: "button_shadow_overlay.png" COMP;
image: "button.png" COMP;
}