- add option to prevent url parameters behavior
- on load, in case there is no view in the project, create and save one autoscaled
define(['jquery', 'underscore', 'requtils', 'renderer/basebutton'], function ($, _, requtils, BaseButton) {
'use strict';
var Utils = requtils.getUtils();
/* _NodeButton Begin */
//var _NodeButton = Renderer._NodeButton = Utils.inherit(Renderer._BaseButton);
var _NodeButton = Utils.inherit(BaseButton);
_(_NodeButton.prototype).extend({
setSectorSize: function() {
var sectorInner = this.source_representation.circle_radius;
if (sectorInner !== this.lastSectorInner) {
if (this.sector) {
this.sector.destroy();
}
this.sector = this.renderer.drawSector(
this, 1 + sectorInner,
Utils._NODE_BUTTON_WIDTH + sectorInner,
this.startAngle,
this.endAngle,
1,
this.imageName,
this.renkan.translate(this.text)
);
this.lastSectorInner = sectorInner;
}
},
unselect: function() {
BaseButton.prototype.unselect.apply(this, Array.prototype.slice.call(arguments, 1));
if(this.source_representation && this.source_representation.buttons_timeout) {
clearTimeout(this.source_representation.buttons_timeout);
this.source_representation.hideButtons();
}
},
select: function() {
if(this.source_representation && this.source_representation.buttons_timeout) {
clearTimeout(this.source_representation.buttons_timeout);
}
this.sector.select();
},
}).value();
/* _NodeButton End */
return _NodeButton;
});