2015-01-23 13:09:30 +00:00
|
|
|
/**
|
|
|
|
* Simply a linkable value holder.
|
|
|
|
**/
|
|
|
|
Vn.Param = new Class
|
|
|
|
({
|
|
|
|
Extends: Vn.Object
|
|
|
|
,Tag: 'vn-param'
|
|
|
|
,Properties:
|
|
|
|
{
|
|
|
|
value:
|
|
|
|
{
|
2015-07-03 05:49:45 +00:00
|
|
|
type: String
|
2015-01-23 13:09:30 +00:00
|
|
|
,set: function (x)
|
|
|
|
{
|
|
|
|
if (Vn.Value.compare (x, this._value))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (x instanceof Date)
|
|
|
|
x = x.clone ();
|
|
|
|
|
|
|
|
this._value = x;
|
|
|
|
|
|
|
|
if (this._master && !this.masterLock)
|
|
|
|
{
|
|
|
|
this.masterLock = true;
|
|
|
|
this._master.value = x;
|
|
|
|
this.masterLock = false;
|
|
|
|
}
|
|
|
|
|
2016-01-07 12:58:29 +00:00
|
|
|
this.signalEmit ('changed', this._value);
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
,get: function ()
|
|
|
|
{
|
|
|
|
return this._value;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
master:
|
|
|
|
{
|
|
|
|
type: Vn.Param
|
|
|
|
,set: function (x)
|
|
|
|
{
|
2015-07-28 19:14:26 +00:00
|
|
|
this.link ({_master: x}, {'changed': this._onMasterChange});
|
|
|
|
this._onMasterChange ();
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
,get: function ()
|
|
|
|
{
|
|
|
|
return this._master;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
,_value: undefined
|
|
|
|
,_master: null
|
|
|
|
,masterLock: false
|
|
|
|
|
2015-07-28 19:14:26 +00:00
|
|
|
,_onMasterChange: function ()
|
2015-01-23 13:09:30 +00:00
|
|
|
{
|
|
|
|
if (this.masterLock)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.masterLock = true;
|
|
|
|
this.value = this._master.value;
|
|
|
|
this.masterLock = false;
|
|
|
|
}
|
|
|
|
})
|