Add additional swallows for the network options tab to contain the

"network options toolbar" and sub-option frames

Signed-off-by: Chris Michael <devilhorns@comcast.net>
This commit is contained in:
Chris Michael 2014-01-13 12:49:28 +00:00
parent 6e726d2e8b
commit fe91b5d592
1 changed files with 123 additions and 1 deletions

View File

@ -78,7 +78,6 @@ collections
}
rel2
{
relative: 1.0 1.0;
offset: 8 -1;
to_y: "options";
}
@ -103,6 +102,85 @@ collections
}
}
}
part
{
name: "options_extra";
type: SWALLOW;
scale: 1;
description
{
state: "default" 0.0;
fixed: 1 1;
min: 40 40;
align: 0.0 0.0;
visible: 0;
rel1.to: "options_tools";
rel2.to: "options_tools";
}
description
{
state: "visible" 0.0;
inherit: "default" 0.0;
visible: 1;
align: 0.0 1.0;
rel1
{
to_x: "options_tools";
to_y: "options";
}
rel2
{
relative: 1.0 0.0;
offset: -1 0;
to: "options_tools";
}
}
}
part
{
name: "options_tools";
type: SWALLOW;
scale: 1;
description
{
state: "default" 0.0;
fixed: 1 1;
min: 16 16;
align: 0.0 1.0;
visible: 0;
rel1
{
relative: 1.0 1.0;
offset: 8 -1;
to_y: "options";
}
rel2
{
relative: 1.0 1.0;
offset: 8 -1;
to_y: "options";
}
}
description
{
state: "visible" 0.0;
inherit: "default" 0.0;
visible: 1;
align: 1.0 1.0;
rel1
{
relative: 0.1 1.0;
offset: 8 -1;
to_y: "options";
}
rel2
{
relative: 0.0 1.0;
offset: -9 -1;
to: "options";
}
}
}
part
{
name: "options";
@ -177,6 +255,50 @@ collections
name: "option_details_hide2";
action: SIGNAL_EMIT "options,details,hide,done" "express";
}
program
{
signal: "options,tools,show";
source: "express";
action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.4;
target: "options_tools";
after: "option_tools_show2";
}
program
{
signal: "options,tools,hide";
source: "express";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.2;
target: "options_tools";
}
program
{
name: "option_tools_show2";
action: SIGNAL_EMIT "options,tools,show,done" "express";
}
program
{
signal: "options,extra,show";
source: "express";
action: STATE_SET "visible" 0.0;
transition: DECELERATE 0.4;
target: "options_extra";
}
program
{
signal: "options,extra,hide";
source: "express";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.2;
target: "options_extra";
after: "option_extra_hide";
}
program
{
name: "option_extra_hide";
action: SIGNAL_EMIT "options,extra,hide,done" "express";
}
}
}