----- [EMAIL PROTECTED] ha scritto:
> Author: toma
> Date: 2008-09-09 07:12:31 -0700 (Tue, 09 Sep 2008)
> New Revision: 35894
>
> Modified:
> trunk/THEMES/b_and_w/theme.edc
> Log:
>
> ibar and ibox sort of in. requires gadman stuff to complete. also
> going in, is a repeat_events to make the pager drag work.
Hi toma!
I suggest you to wait a week for the gadman stuff, as i will probably change it
slightly
Dave
>
> Modified: trunk/THEMES/b_and_w/theme.edc
> ===================================================================
> --- trunk/THEMES/b_and_w/theme.edc 2008-09-09 12:37:56 UTC (rev
> 35893)
> +++ trunk/THEMES/b_and_w/theme.edc 2008-09-09 14:12:31 UTC (rev
> 35894)
> @@ -1,22 +1,19 @@
> // TODO: Items that need some revision
> //
> // textblock (done - review)
> -// transition (done - review) - Could possibly have some day light
> and moon light photos.
> // battery popup (done - review - see 'code' for notes)
> // fileman (list mode)
> // desklock (done - review - see 'code' for notes)
> // exebuf (done - review)
> +// ibar - ibox (Merged with alias... see FIXME for bugs. Requires
> gadman graphics to finish)
> //
> // note: make these (and menu) use a common image with a logical
> name.
> -// sys (done - review - see 'code' for notes), Move, Resize
> +// sys (done - review - see 'code' for notes), Move, Resize, Exebuf,
> Winlist
> //
> // TODO: Working order
> -// Theme Preview widget has gone all whacky!
> +// tlist (needs code to be the same as ilist with raising)
> // fileman (icon mode etc.)
> -// tlist
> // slidesel (i know. no examples of this around).
> -// ibar
> -// ibox
> // gadman control
> // gadman popup
> // gadman frame
> @@ -37,6 +34,9 @@
> // TODO Code: - allow sys (shutdown, reboot etc.) to indicated
> borderless
> // - make battery module text translatable and set by E,
> not in the theme.
> // - desklock login_box doesnt centre correctly. looks
> like a code problem.
> +// - Theme Preview selector. Doesnt reszie well. See
> wallpaper for correct behaviour.
> +// - ilist e.swallow.icon should use e_ilist_icon_size_set to
> make a dummy box
> +// to compensate when there is no icon there.
>
> /*
> * So how do themes work?
> @@ -6732,6 +6732,7 @@
> }
> part { name: "mouse_over";
> mouse_events: 1;
> + repeat_events: 1;
> type: RECT;
> description { state: "default" 0.0;
> color: 0 0 0 0;
> @@ -8417,15 +8418,1037 @@
> }
>
>
> /////////////////////////////////////////////////////////////////////////////
> - /*** MOD: IBAR ***/
> -// NOTE: can be same as current default
> -// FIXME: DO
> + /*** MOD: IBOX / IBAR ***/
>
> -/////////////////////////////////////////////////////////////////////////////
> - /*** MOD: IBOX ***/
> -// NOTE: can be same as current default
> -// FIXME: DO
> + group { name: "e/modules/ibox/icon";
> + alias: "e/modules/ibar/icon";
> + data {
> + // FIXME: Explain these a little better
> + item: "raise_on_hilight" "0"; // 1 or 0 if u want an icon holder to
> raise when the mouse (or keyboard) hilights it
> + // item: "item_list" "item item2 item3";
> + }
> + parts {
> + part { name: "item_clip";
> + type: RECT;
> + mouse_events: 0;
> + description { state: "default" 0.0;
> + color: 255 255 255 255;
> + }
> + }
> + part { name: "e.swallow.content";
> + type: SWALLOW;
> + clip_to: "item_clip";
> + description { state: "default" 0.0;
> + rel1.offset: 2 2;
> + rel2.offset: -3 -3;
> + }
> + description { state: "bigger" 0.0; }
> + }
> + part { name: "over";
> + type: RECT;
> + repeat_events: 0;
> + description { state: "default" 0.0;
> + color: 0 0 0 0;
> + }
> + }
> + }
> + programs {
> + program { name: "hover_in";
> + signal: "mouse,in";
> + source: "over";
> + action: STATE_SET "bigger" 0.0;
> + transition: LINEAR 0.1;
> + target: "e.swallow.content";
> + }
> + program { name: "hover_out";
> + signal: "mouse,out";
> + source: "over";
> + action: STATE_SET "default" 0.0;
> + transition: LINEAR 0.2;
> + target: "e.swallow.content";
> + }
> + }
> + }
>
> +// FIXME: Urgent doesnt seem to work. Doesnt work in bling either.
> (Only tested with xchat)
> +// FIXME: Use urgent effect from Pager.
> +
> + group { name: "e/modules/ibox/icon_overlay";
> + alias: "e/modules/ibar/icon_overlay";
> + data {
> + // item: "item_list", "item item2 item3";
> + }
> + script {
> + public urgent;
> + }
> + parts {
> + part { name: "base";
> + type: RECT;
> + mouse_events: 0;
> + description { state: "default" 0.0;
> + color: 255 255 255 0;
> + }
> + }
> + part { name: "background";
> + type: RECT;
> + mouse_events: 0;
> + description { state: "default" 0.0;
> + visible: 0;
> + rel1.to: "base";
> + rel2.to: "base";
> + color: 255 255 255 0;
> + }
> + description { state: "visible" 0.0;
> + visible: 1;
> + rel1.to: "base";
> + rel2.to: "base";
> + color: 255 255 255 255;
> + }
> + description { state: "hidden" 0.0;
> + visible: 1;
> + rel1 {
> + relative: -0.5 -0.5;
> + to: "base";
> + }
> + rel2 {
> + relative: 1.5 1.5;
> + to: "base";
> + }
> + color: 255 255 255 0;
> + }
> + description { state: "huge" 0.0;
> + visible: 1;
> + rel1 {
> + relative: -2.0 -2.0;
> + to: "base";
> + }
> + rel2 {
> + relative: 3.0 3.0;
> + to: "base";
> + }
> + color: 255 255 255 0;
> + }
> + }
> + part { name: "e.swallow.content";
> + type: SWALLOW;
> + clip_to: "background";
> + description { state: "default" 0.0;
> + rel1.to: "background";
> + rel2.to: "background";
> + }
> + }
> + part { name: "e.text.label";
> + type: TEXT;
> + effect: SOFT_SHADOW;
> + mouse_events: 0;
> + description { state: "default" 0.0;
> + rel1 {
> + relative: 0.0 1.0;
> + offset: 0 -1;
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: -1 -1;
> + }
> + color: 255 255 255 0;
> + color3: 0 0 0 0;
> + color_class: "module_label";
> + text {
> + font: "Sans:style=Bold,Edje-Vera-Bold";
> + size: 10;
> + min: 1 1;
> + align: 0.5 0.5;
> + text_class: "module_normal";
> + }
> + }
> + description { state: "visible" 0.0;
> + inherit: "default" 0.0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: 0 0;
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: -1 -1;
> + }
> + color: 255 255 255 255;
> + color3: 0 0 0 42;
> + }
> + }
> + }
> + programs {
> + program { name: "go_active";
> + signal: "e,state,focused";
> + source: "e";
> + action: STATE_SET "visible" 0.0;
> + target: "background";
> + after: "go_active2";
> + }
> + program { name: "go_activeB";
> + signal: "e,action,show,label";
> + source: "e";
> + action: STATE_SET "visible" 0.0;
> + transition: SINUSOIDAL 0.5;
> + target: "e.text.label";
> + }
> + program { name: "go_active2";
> + action: STATE_SET "hidden" 0.0;
> + transition: LINEAR 0.5;
> + target: "background";
> + after: "go_active";
> + }
> + program { name: "go_passive";
> + signal: "e,state,unfocused";
> + source: "e";
> + action: ACTION_STOP;
> + target: "go_active";
> + target: "go_active2";
> + after: "go_passive2";
> + }
> + program { name: "go_passiveB";
> + signal: "e,action,hide,label";
> + source: "e";
> + action: STATE_SET "default" 0.0;
> + transition: SINUSOIDAL 1.0;
> + target: "e.text.label";
> + }
> + program { name: "go_passive2";
> + action: STATE_SET "default" 0.0;
> + target: "background";
> + script {
> + if (get_int(urgent) == 1) {
> + run_program(PROGRAM:"go_urgent");
> + }
> + }
> + }
> + program { name: "init";
> + signal: "load";
> + source: "";
> + script {
> + set_int(urgent, 0);
> + }
> + }
> + program { name: "set_urgent";
> + signal: "e,state,urgent";
> + source: "e";
> + script {
> + set_int(urgent, 1);
> + }
> + }
> + program { name: "go_urgent";
> + action: STATE_SET "visible" 0.0;
> + target: "background";
> + after: "go_urgent2";
> + }
> + program { name: "go_urgent2";
> + action: STATE_SET "hidden" 0.0;
> + transition: LINEAR 0.5;
> + target: "background";
> + after: "go_urgent";
> + }
> + program { name: "unset_urgent";
> + signal: "e,state,not_urgent";
> + source: "e";
> + script {
> + set_int(urgent, 0);
> + }
> + }
> + program { name: "go_unurgent";
> + signal: "e,state,not_urgent";
> + source: "e";
> + action: ACTION_STOP;
> + target: "go_urgent";
> + target: "go_urgent2";
> + after: "go_unurgent2";
> + }
> + program { name: "go_unurgent2";
> + action: STATE_SET "default" 0.0;
> + transition: SINUSOIDAL 0.3;
> + target: "background";
> + }
> + program { name: "exec_exec";
> + signal: "e,action,exec";
> + source: "e";
> + after: "exec_start";
> + }
> + program { name: "exec_start";
> + signal: "e,action,start";
> + source: "e";
> + action: ACTION_STOP;
> + target: "go_active";
> + target: "go_active2";
> + target: "go_passive";
> + target: "go_passive2";
> + target: "go_big";
> + target: "go_big2";
> + after: "go_big";
> + }
> + program { name: "go_big";
> + action: STATE_SET "visible" 0.0;
> + target: "background";
> + after: "go_big2";
> + }
> + program { name: "go_big2";
> + action: STATE_SET "huge" 0.0;
> + transition: LINEAR 0.5;
> + target: "background";
> + }
> + }
> + }
> +
> +/* *** FIXME: Finish this off when Gadman graphics and code is
> done. ***
> + group {
> + name: "e/modules/ibox/drop";
> + alias: "e/modules/ibar/drop";
> + parts {
> + part {
> + name: "bg";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + image {
> + normal: "e17_pager_desk.png";
> + border: 2 2 2 2;
> + middle: 0;
> + }
> + }
> + }
> + }
> + }
> +
> + group {
> + name: "e/modules/ibox/drop_overlay";
> + alias: "e/modules/ibar/drop_overlay";
> + parts {
> + part {
> + name: "l1";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 1.0 0.5;
> + min: 21 20;
> + max: 21 20;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: -1 0;
> + }
> + rel2 {
> + relative: 0.0 1.0;
> + offset: -1 -1;
> + }
> + image {
> + normal: "e17_ibar_arrow_r.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "l2";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 1.0 0.5;
> + min: 21 20;
> + max: 21 20;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: -1 0;
> + to: "l1";
> + }
> + rel2 {
> + relative: 0.0 1.0;
> + offset: -1 -1;
> + to: "l1";
> + }
> + image {
> + normal: "e17_ibar_arrow_r.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "l3";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 1.0 0.5;
> + min: 21 20;
> + max: 21 20;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: -1 0;
> + to: "l2";
> + }
> + rel2 {
> + relative: 0.0 1.0;
> + offset: -1 -1;
> + to: "l2";
> + }
> + image {
> + normal: "e17_ibar_arrow_r.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "l4";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 1.0 0.5;
> + min: 21 20;
> + max: 21 20;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: -1 0;
> + to: "l3";
> + }
> + rel2 {
> + relative: 0.0 1.0;
> + offset: -1 -1;
> + to: "l3";
> + }
> + image {
> + normal: "e17_ibar_arrow_r.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "r1";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.0 0.5;
> + min: 21 20;
> + max: 21 20;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 1.0 0.0;
> + offset: 0 0;
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: 0 -1;
> + }
> + image {
> + normal: "e17_ibar_arrow_l.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "r2";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.0 0.5;
> + min: 21 20;
> + max: 21 20;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 1.0 0.0;
> + offset: 0 0;
> + to: "r1";
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: 0 -1;
> + to: "r1";
> + }
> + image {
> + normal: "e17_ibar_arrow_l.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "r3";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.0 0.5;
> + min: 21 20;
> + max: 21 20;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 1.0 0.0;
> + offset: 0 0;
> + to: "r2";
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: 0 -1;
> + to: "r2";
> + }
> + image {
> + normal: "e17_ibar_arrow_l.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "r4";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.0 0.5;
> + min: 21 20;
> + max: 21 20;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 1.0 0.0;
> + offset: 0 0;
> + to: "r3";
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: 0 -1;
> + to: "r3";
> + }
> + image {
> + normal: "e17_ibar_arrow_l.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "t1";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.5 1.0;
> + min: 29 21;
> + max: 29 21;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: 0 -1;
> + }
> + rel2 {
> + relative: 1.0 0.0;
> + offset: -1 -1;
> + }
> + image {
> + normal: "e17_ibar_arrow_d.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "t2";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.5 1.0;
> + min: 29 21;
> + max: 29 21;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: 0 -1;
> + to: "t1";
> + }
> + rel2 {
> + relative: 1.0 0.0;
> + offset: -1 -1;
> + to: "t1";
> + }
> + image {
> + normal: "e17_ibar_arrow_d.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "t3";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.5 1.0;
> + min: 29 21;
> + max: 29 21;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: 0 -1;
> + to: "t2";
> + }
> + rel2 {
> + relative: 1.0 0.0;
> + offset: -1 -1;
> + to: "t2";
> + }
> + image {
> + normal: "e17_ibar_arrow_d.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "t4";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.5 1.0;
> + min: 29 21;
> + max: 29 21;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 0.0;
> + offset: 0 -1;
> + to: "t3";
> + }
> + rel2 {
> + relative: 1.0 0.0;
> + offset: -1 -1;
> + to: "t3";
> + }
> + image {
> + normal: "e17_ibar_arrow_d.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "b1";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.5 0.0;
> + min: 29 21;
> + max: 29 21;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 1.0;
> + offset: 0 0;
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: -1 0;
> + }
> + image {
> + normal: "e17_ibar_arrow_u.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "b2";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.5 0.0;
> + min: 29 21;
> + max: 29 21;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 1.0;
> + offset: 0 0;
> + to: "b1";
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: -1 0;
> + to: "b1";
> + }
> + image {
> + normal: "e17_ibar_arrow_u.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "b3";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.5 0.0;
> + min: 29 21;
> + max: 29 21;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 1.0;
> + offset: 0 0;
> + to: "b2";
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: -1 0;
> + to: "b2";
> + }
> + image {
> + normal: "e17_ibar_arrow_u.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + part {
> + name: "b4";
> + mouse_events: 0;
> + description {
> + state: "default" 0.0;
> + align: 0.5 0.0;
> + min: 29 21;
> + max: 29 21;
> + visible: 0;
> + color: 255 255 255 0;
> + rel1 {
> + relative: 0.0 1.0;
> + offset: 0 0;
> + to: "b3";
> + }
> + rel2 {
> + relative: 1.0 1.0;
> + offset: -1 0;
> + to: "b3";
> + }
> + image {
> + normal: "e17_ibar_arrow_u.png";
> + }
> + }
> + description {
> + state: "default2" 0.0;
> + inherit: "default" 0.0;
> + visible: 1;
> + color: 255 255 255 255;
> + }
> + }
> + }
> + programs {
> + program {
> + name: "go";
> + signal: "show";
> + source: "";
> + after: "l1a";
> + after: "r1a";
> + after: "t1a";
> + after: "b1a";
> + }
> + program {
> + name: "l1a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "l4";
> + after: "l1b";
> + after: "l2a";
> + }
> + program {
> + name: "l1b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "l4";
> + }
> + program {
> + name: "l2a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "l3";
> + after: "l2b";
> + after: "l3a";
> + }
> + program {
> + name: "l2b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "l3";
> + }
> + program {
> + name: "l3a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "l2";
> + after: "l3b";
> + after: "l4a";
> + }
> + program {
> + name: "l3b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "l2";
> + }
> + program {
> + name: "l4a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "l1";
> + after: "l4b";
> + after: "l1a";
> + }
> + program {
> + name: "l4b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "l1";
> + }
> + program {
> + name: "r1a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "r4";
> + after: "r1b";
> + after: "r2a";
> + }
> + program {
> + name: "r1b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "r4";
> + }
> + program {
> + name: "r2a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "r3";
> + after: "r2b";
> + after: "r3a";
> + }
> + program {
> + name: "r2b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "r3";
> + }
> + program {
> + name: "r3a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "r2";
> + after: "r3b";
> + after: "r4a";
> + }
> + program {
> + name: "r3b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "r2";
> + }
> + program {
> + name: "r4a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "r1";
> + after: "r4b";
> + after: "r1a";
> + }
> + program {
> + name: "r4b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "r1";
> + }
> + program {
> + name: "t1a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "t4";
> + after: "t1b";
> + after: "t2a";
> + }
> + program {
> + name: "t1b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "t4";
> + }
> + program {
> + name: "t2a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "t3";
> + after: "t2b";
> + after: "t3a";
> + }
> + program {
> + name: "t2b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "t3";
> + }
> + program {
> + name: "t3a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "t2";
> + after: "t3b";
> + after: "t4a";
> + }
> + program {
> + name: "t3b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "t2";
> + }
> + program {
> + name: "t4a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "t1";
> + after: "t4b";
> + after: "t1a";
> + }
> + program {
> + name: "t4b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "t1";
> + }
> + program {
> + name: "b1a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "b4";
> + after: "b1b";
> + after: "b2a";
> + }
> + program {
> + name: "b1b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "b4";
> + }
> + program {
> + name: "b2a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "b3";
> + after: "b2b";
> + after: "b3a";
> + }
> + program {
> + name: "b2b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "b3";
> + }
> + program {
> + name: "b3a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "b2";
> + after: "b3b";
> + after: "b4a";
> + }
> + program {
> + name: "b3b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "b2";
> + }
> + program {
> + name: "b4a";
> + action: STATE_SET "default2" 0.0;
> + transition: SINUSOIDAL 0.25;
> + target: "b1";
> + after: "b4b";
> + after: "b1a";
> + }
> + program {
> + name: "b4b";
> + action: STATE_SET "default" 0.0;
> + transition: DECELERATE 0.75;
> + target: "b1";
> + }
> + }
> + }
> +
> +*/
> +
> +
>
> /////////////////////////////////////////////////////////////////////////////
> /*** MOD: WINLIST ***/
>
> @@ -14426,13 +15449,6 @@
> }
> }
>
> -// FIXME: Make the e.swallow.icon draw a correctly sized
> -// box even when there isnt an icon there. This fixes
> -// the size of ilist items without icons so they
> -// are regular. Is this a fixme for ilist.c?
> -// FIXME: Mekius reported that the shading isnt perfect.
> -// But he is a bit of a perfectionist :D I do agree tho. (Toma)
> -
> group { name: "e/widgets/ilist";
> data.item: "stacking" "above";
> data.item: "selectraise" "on";
>
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> enlightenment-svn mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel