2010-12-13 22:07:20 +08:00
|
|
|
/*
|
2011-01-24 07:34:05 +08:00
|
|
|
* Copyright [2011] [wisemapping]
|
2010-12-13 22:07:20 +08:00
|
|
|
*
|
2011-01-24 08:03:12 +08:00
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
2011-01-24 07:34:05 +08:00
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
2010-12-13 22:07:20 +08:00
|
|
|
*
|
2011-01-24 07:34:05 +08:00
|
|
|
* http://www.wisemapping.org/license
|
2010-12-13 22:07:20 +08:00
|
|
|
*
|
2011-01-24 07:34:05 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2010-12-13 22:07:20 +08:00
|
|
|
*/
|
|
|
|
|
2009-06-08 02:59:43 +08:00
|
|
|
mindplot.CentralTopic = function(model)
|
|
|
|
{
|
|
|
|
core.assert(model, "Model can not be null");
|
|
|
|
this.setModel(model);
|
2011-03-17 23:51:40 +08:00
|
|
|
mindplot.CentralTopic.superClass.initialize.call(this);
|
2009-06-08 02:59:43 +08:00
|
|
|
this.__onLoad = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
objects.extend(mindplot.CentralTopic, mindplot.Topic);
|
|
|
|
|
|
|
|
|
2011-01-01 02:11:32 +08:00
|
|
|
mindplot.CentralTopic.prototype.workoutIncomingConnectionPoint = function(sourcePosition)
|
2009-06-08 02:59:43 +08:00
|
|
|
{
|
2011-01-01 02:11:32 +08:00
|
|
|
return this.getPosition();
|
2009-06-08 02:59:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype.getTopicType = function()
|
|
|
|
{
|
|
|
|
return mindplot.NodeModel.CENTRAL_TOPIC_TYPE;
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype.setCursor = function(type)
|
|
|
|
{
|
|
|
|
type = (type == 'move') ? 'default' : type;
|
|
|
|
mindplot.CentralTopic.superClass.setCursor.call(this, type);
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype.isConnectedToCentralTopic = function()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype.createChildModel = function()
|
|
|
|
{
|
|
|
|
// Create a new node ...
|
|
|
|
var model = this.getModel();
|
|
|
|
var mindmap = model.getMindmap();
|
|
|
|
var childModel = mindmap.createNode(mindplot.NodeModel.MAIN_TOPIC_TYPE);
|
|
|
|
|
|
|
|
if (!core.Utils.isDefined(this.___siblingDirection))
|
|
|
|
{
|
|
|
|
this.___siblingDirection = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Positionate following taking into account this internal flag ...
|
|
|
|
if (this.___siblingDirection == 1)
|
|
|
|
{
|
|
|
|
|
|
|
|
childModel.setPosition(100, 0);
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
childModel.setPosition(-100, 0);
|
|
|
|
}
|
|
|
|
this.___siblingDirection = -this.___siblingDirection;
|
|
|
|
|
|
|
|
// Create a new node ...
|
|
|
|
childModel.setOrder(0);
|
|
|
|
|
|
|
|
return childModel;
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype._defaultShapeType = function()
|
|
|
|
{
|
|
|
|
return mindplot.NodeModel.SHAPE_TYPE_ROUNDED_RECT;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype.updateTopicShape = function()
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|
2011-04-08 22:31:40 +08:00
|
|
|
mindplot.CentralTopic.prototype._updatePositionOnChangeSize = function(oldSize, newSize, updatePosition) {
|
2009-06-08 02:59:43 +08:00
|
|
|
|
|
|
|
// Center main topic ...
|
|
|
|
var zeroPoint = new core.Point(0, 0);
|
|
|
|
this.setPosition(zeroPoint);
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype._defaultText = function()
|
|
|
|
{
|
|
|
|
return "Central Topic";
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype._defaultBackgroundColor = function()
|
|
|
|
{
|
|
|
|
return "#f7f7f7";
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype._defaultBorderColor = function()
|
|
|
|
{
|
|
|
|
return "#023BB9";
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.CentralTopic.prototype._defaultFontStyle = function()
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
font:"Verdana",
|
|
|
|
size: 10,
|
|
|
|
style:"normal",
|
|
|
|
weight:"bold",
|
|
|
|
color:"#023BB9"
|
|
|
|
};
|
|
|
|
};
|