Netstatus gadget: a new decent design

I'm still not really happy with this design, because 2 arrows are not
enough to understand it is "network"... but at least it looks good now :)
This commit is contained in:
Davide Andreoli 2017-08-27 11:46:39 +02:00
parent 924a59d5db
commit 39288d12c2
6 changed files with 44 additions and 20 deletions

View File

@ -14,17 +14,15 @@ group { name: "e/gadget/netstatus/main";
new txper = getarg(6);
// new txmax = getarg(7);
new val = rxper + 155;
if (val == 155) val = 0;
custom_state(PART:"rx", "default", 0.0);
set_state_val(PART:"rx", STATE_COLOR, 255, 255, 255, val);
set_state(PART:"rx", "custom", 0.0);
new Float:val = rxper / 100.0;
custom_state(PART:"rx_clip", "default", 0.0);
set_state_val(PART:"rx_clip", STATE_REL2, 1.0, val);
set_state(PART:"rx_clip", "custom", 0.0);
val = txper + 155;
if (val == 155) val = 0;
custom_state(PART:"tx", "default", 0.0);
set_state_val(PART:"tx", STATE_COLOR, 255, 255, 255, val);
set_state(PART:"tx", "custom", 0.0);
val = txper / 100.0;
custom_state(PART:"tx_clip", "default", 0.0);
set_state_val(PART:"tx_clip", STATE_REL1, 0.0, 1.0 - val);
set_state(PART:"tx_clip", "custom", 0.0);
}
}
}
@ -36,19 +34,45 @@ group { name: "e/gadget/netstatus/main";
image.normal: "netstatus_base.png";
}
}
part { name: "rx_spacer"; type: SPACER;
description { state: "default" 0.0;
rel1.relative: 0.0 0.09;
rel2.relative: 1.0 0.91;
}
}
part { name: "rx_clip"; type: RECT;
description { state: "default" 0.0;
rel1.to: "rx_spacer";
rel2.to: "rx_spacer";
}
}
part { name: "rx"; type: IMAGE;
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
image.normal: "netstatus_rx.png";
}
clip_to: "rx_clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
image.normal: "netstatus_rx.png";
}
}
part { name: "tx_spacer"; type: SPACER;
description { state: "default" 0.0;
rel1.relative: 0.0 0.09;
rel2.relative: 1.0 0.91;
}
}
part { name: "tx_clip"; type: RECT;
description { state: "default" 0.0;
rel1.to: "tx_spacer";
rel2.to: "tx_spacer";
}
}
part { name: "tx"; type: IMAGE;
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
image.normal: "netstatus_tx.png";
}
clip_to: "tx_clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
image.normal: "netstatus_tx.png";
}
}
part { name: "over";
description { state: "default" 0.0;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 B

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.