make next/prev arrows bigger got hitting.

SVN revision: 37355
This commit is contained in:
Carsten Haitzler 2008-10-31 12:40:05 +00:00
parent 098b1c50bf
commit 1dfe417bae
1 changed files with 36 additions and 18 deletions

View File

@ -203,13 +203,40 @@ collections {
}
}
part { name: "prev_app";
mouse_events: 1;
scale: 1;
mouse_events: 0;
description { state: "default" 0.0;
image.normal: "icon_left_arrow.png";
max: 32 32;
aspect: 1.0 1.0;
aspect_preference: VERTICAL;
rel1.to: "prev";
rel2.to: "prev";
}
description { state: "disabled" 0.0;
inherit: "default" 0.0;
color: 255 255 255 64;
}
}
part { name: "next_app";
mouse_events: 0;
description { state: "default" 0.0;
image.normal: "icon_right_arrow.png";
aspect: 1.0 1.0;
aspect_preference: VERTICAL;
rel1.to: "next";
rel2.to: "next";
}
description { state: "disabled" 0.0;
inherit: "default" 0.0;
color: 255 255 255 64;
}
}
part { name: "prev";
type: RECT;
mouse_events: 1;
description { state: "default" 0.0;
color: 0 0 0 0;
aspect: 1.5 1.5;
aspect_preference: VERTICAL;
align: 0.0 0.5;
rel1 {
to_y: "e.swallow.content";
@ -220,18 +247,13 @@ collections {
offset: 0 -1;
}
}
description { state: "disabled" 0.0;
inherit: "default" 0.0;
color: 255 255 255 64;
}
}
part { name: "next_app";
part { name: "next";
type: RECT;
mouse_events: 1;
scale: 1;
description { state: "default" 0.0;
image.normal: "icon_right_arrow.png";
max: 32 32;
aspect: 1.0 1.0;
color: 0 0 0 0;
aspect: 1.5 1.5;
aspect_preference: VERTICAL;
align: 1.0 0.5;
rel1 {
@ -243,10 +265,6 @@ collections {
to_y: "e.swallow.content";
}
}
description { state: "disabled" 0.0;
inherit: "default" 0.0;
color: 255 255 255 64;
}
}
part { name: "e.text.label";
type: TEXT;
@ -316,12 +334,12 @@ collections {
}
program { name: "prev";
signal: "mouse,down,1";
source: "prev_app";
source: "prev";
action: SIGNAL_EMIT "e,action,do,app,prev" "";
}
program { name: "next";
signal: "mouse,down,1";
source: "next_app";
source: "next";
action: SIGNAL_EMIT "e,action,do,app,next" "";
}
program { name: "next_enable";