click anywhere dismisses slideout.

SVN revision: 39859
This commit is contained in:
Carsten Haitzler 2009-04-04 15:39:12 +00:00
parent 48f797413b
commit 4713e80ed2
1 changed files with 22 additions and 1 deletions

View File

@ -24093,6 +24093,7 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
}
}
part { name: "tbs";
mouse_events: 0;
description { state: "default" 0.0;
rel1 {
relative: 0.0 1.0;
@ -24119,6 +24120,17 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
}
}
}
part { name: "cover";
type: RECT;
description { state: "default" 0.0;
color: 0 0 0 0;
visible: 0;
}
description { state: "out" 0.0;
inherit: "default" 0.0;
visible: 1;
}
}
part { name: "tb1";
description { state: "default" 0.0;
color_class: "dialog_base";
@ -24316,8 +24328,8 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
source: "aout";
action: STATE_SET "out" 0.0;
target: "aout";
target: "cover";
after: "out2";
}
program { name: "out2";
action: STATE_SET "out" 0.0;
@ -24325,6 +24337,14 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
target: "tbs";
transition: DECELERATE 0.5;
}
program { name: "in0";
signal: "mouse,down,1";
source: "cover";
action: STATE_SET "default" 0.0;
target: "aout";
target: "cover";
after: "in2";
}
program { name: "in";
signal: "mouse,down,1";
source: "ain";
@ -24336,6 +24356,7 @@ MIMEBASE("application/x-font-bdf","icon_mime_font_generic.png", ".BDF", 128);
action: STATE_SET "default" 0.0;
target: "e.swallow.extras";
target: "tbs";
target: "cover";
transition: DECELERATE 1.0;
}
}