Extend assert support.

This commit is contained in:
Paulo Veiga 2011-07-27 14:53:32 -03:00
parent d06275f524
commit 665c070359
28 changed files with 2993 additions and 3264 deletions

View File

@ -59,7 +59,7 @@ objects.extend = function(subClass, baseClass) {
};
$assert = function(assert, message) {
if (!assert) {
if (!$defined(assert) || !assert) {
var stack;
try {
null.eval();

View File

@ -66,7 +66,7 @@ mindplot.BidirectionalArray = new Class({
},
get :function(index, sign) {
$assert($defined(index), 'Illegal argument, index must be passed.');
$assert(index, 'Illegal argument, index must be passed.');
if ($defined(sign)) {
$assert(index >= 0, 'Illegal absIndex value');
index = index * sign;
@ -82,14 +82,14 @@ mindplot.BidirectionalArray = new Class({
},
set : function(index, elem) {
$assert($defined(index), 'Illegal index value');
$assert(index, 'Illegal index value');
var array = (index >= 0) ? this._rightElem : this._leftElem;
array[Math.abs(index)] = elem;
},
length : function(index) {
$assert($defined(index), 'Illegal index value');
$assert(index, 'Illegal index value');
return (index >= 0) ? this._rightElem.length : this._leftElem.length;
},

View File

@ -42,7 +42,7 @@ mindplot.BoardEntry = new Class({
},
setUpperLimit : function(value) {
$assert($defined(value), "upper limit can not be null");
$assert(value, "upper limit can not be null");
$assert(!isNaN(value), "illegal value");
this._upperLimit = value;
},
@ -56,7 +56,7 @@ mindplot.BoardEntry = new Class({
},
setLowerLimit : function(value) {
$assert($defined(value), "upper limit can not be null");
$assert(value, "upper limit can not be null");
$assert(!isNaN(value), "illegal value");
this._lowerLimit = value;
},

View File

@ -18,8 +18,8 @@
mindplot.DragTopic = function(dragShape, draggedNode)
{
$assert($defined(dragShape), 'Rect can not be null.');
$assert($defined(draggedNode), 'draggedNode can not be null.');
$assert(dragShape, 'Rect can not be null.');
$assert(draggedNode, 'draggedNode can not be null.');
this._elem2d = dragShape;
this._order = null;
@ -68,7 +68,7 @@ mindplot.DragTopic.prototype.disconnect = function(workspace)
mindplot.DragTopic.prototype.canBeConnectedTo = function(targetTopic)
{
$assert($defined(targetTopic), 'parent can not be null');
$assert(targetTopic, 'parent can not be null');
var result = true;
if (!targetTopic.areChildrenShrinked() && !targetTopic.isCollapsed())

View File

@ -245,7 +245,7 @@ mindplot.FixedDistanceBoard = new Class({
},
lookupEntryByPosition : function(pos) {
$assert($defined(pos), 'position can not be null');
$assert(pos, 'position can not be null');
var entries = this._entries;
var result = null;

View File

@ -18,6 +18,7 @@
mindplot.Icon = new Class({
initialize:function(url) {
$assert(url, 'topic can not be null');
this._image = new web2d.Image();
this._image.setHref(url);
this._image.setSize(12, 12);

View File

@ -16,49 +16,43 @@
* limitations under the License.
*/
mindplot.IconModel = function(iconType, topic)
{
mindplot.IconModel = new Class({
initialize:function(iconType, topic) {
$assert(iconType, 'Icon id can not be null');
$assert(topic, 'topic can not be null');
this._iconType = iconType;
this._id = mindplot.IconModel._nextUUID();
this._topic = topic;
};
},
mindplot.IconModel.prototype.getId = function()
{
getId : function() {
return this._id;
};
},
mindplot.IconModel.prototype.getIconType = function()
{
getIconType : function() {
return this._iconType;
};
},
mindplot.IconModel.prototype.setIconType = function(iconType)
{
setIconType : function(iconType) {
this._iconType = iconType;
};
},
mindplot.IconModel.prototype.getTopic = function()
{
getTopic : function() {
return this._topic;
};
},
mindplot.IconModel.prototype.isIconModel = function()
{
isIconModel : function() {
return true;
};
}});
/**
* @todo: This method must be implemented.
*/
mindplot.IconModel._nextUUID = function()
{
if (!$defined(this._uuid))
{
mindplot.IconModel._nextUUID = function() {
if (!$defined(this._uuid)) {
this._uuid = 0;
}

View File

@ -16,8 +16,10 @@
* limitations under the License.
*/
mindplot.ImageIcon = function(iconModel, topic, designer) {
mindplot.ImageIcon = new Class(
{
Extends:mindplot.Icon,
initialize:function(iconModel, topic, designer) {
$assert(iconModel, 'iconModel can not be null');
$assert(topic, 'topic can not be null');
$assert(designer, 'designer can not be null');
@ -28,7 +30,8 @@ mindplot.ImageIcon = function(iconModel, topic, designer) {
// Build graph image representation ...
var iconType = iconModel.getIconType();
var imgUrl = this._getImageUrl(iconType);
mindplot.Icon.call(this, imgUrl);
this.parent(imgUrl);
//Remove
var divContainer = designer.getWorkSpace().getScreenManager().getContainer();
@ -39,8 +42,7 @@ mindplot.ImageIcon = function(iconModel, topic, designer) {
removeImage.src = "../images/bin.png";
removeImage.inject(container);
if (!$defined(designer._viewMode)|| ($defined(designer._viewMode) && !designer._viewMode))
{
if (!$defined(designer._viewMode) || ($defined(designer._viewMode) && !designer._viewMode)) {
removeImage.addEvent('click', function(event) {
var actionRunner = designer._actionRunner;
@ -79,31 +81,23 @@ mindplot.ImageIcon = function(iconModel, topic, designer) {
});
}
};
},
objects.extend(mindplot.ImageIcon, mindplot.Icon);
mindplot.ImageIcon.prototype.initialize = function() {
};
mindplot.ImageIcon.prototype._getImageUrl = function(iconId) {
_getImageUrl : function(iconId) {
return "../icons/" + iconId + ".png";
};
},
mindplot.ImageIcon.prototype.getModel = function() {
getModel : function() {
return this._iconModel;
};
},
mindplot.ImageIcon.prototype._getNextFamilyIconId = function(iconId) {
_getNextFamilyIconId : function(iconId) {
var familyIcons = this._getFamilyIcons(iconId);
$assert(familyIcons != null, "Family Icon not found!");
var result = null;
for (var i = 0; i < familyIcons.length && result == null; i++)
{
for (var i = 0; i < familyIcons.length && result == null; i++) {
if (familyIcons[i] == iconId) {
var nextIconId;
//Is last one?
@ -117,15 +111,14 @@ mindplot.ImageIcon.prototype._getNextFamilyIconId = function(iconId) {
}
return result;
};
},
mindplot.ImageIcon.prototype._getFamilyIcons = function(iconId) {
_getFamilyIcons : function(iconId) {
$assert(iconId != null, "id must not be null");
$assert(iconId.indexOf("_") != -1, "Invalid icon id (it must contain '_')");
var result = null;
for (var i = 0; i < mindplot.ImageIcon.prototype.ICON_FAMILIES.length; i++)
{
for (var i = 0; i < mindplot.ImageIcon.prototype.ICON_FAMILIES.length; i++) {
var family = mindplot.ImageIcon.prototype.ICON_FAMILIES[i];
var iconFamilyId = iconId.substr(0, iconId.indexOf("_"));
@ -135,21 +128,43 @@ mindplot.ImageIcon.prototype._getFamilyIcons = function(iconId) {
}
}
return result;
};
},
mindplot.ImageIcon.prototype.getId = function()
{
getId : function() {
return this._iconType;
};
},
mindplot.ImageIcon.prototype.getUiId = function()
{
getUiId : function() {
return this._uiId;
};
mindplot.ImageIcon.prototype.ICON_FAMILIES = [{"id": "face", "icons" : ["face_plain","face_sad","face_crying","face_smile","face_surprise","face_wink"]},{"id": "funy", "icons" : ["funy_angel","funy_devilish","funy_glasses","funy_grin","funy_kiss","funy_monkey"]},{"id": "conn", "icons" : ["conn_connect","conn_disconnect"]},{"id": "sport", "icons" : ["sport_basketball","sport_football","sport_golf","sport_raquet","sport_shuttlecock","sport_soccer","sport_tennis"]},{"id": "bulb", "icons" : ["bulb_light_on","bulb_light_off"]},{"id": "thumb", "icons" : ["thumb_thumb_up","thumb_thumb_down"]},{"id": "tick", "icons" : ["tick_tick","tick_cross"]},{"id": "onoff", "icons" : ["onoff_clock","onoff_clock_red","onoff_add","onoff_delete","onoff_status_offline","onoff_status_online"]},{"id": "money", "icons" : ["money_money","money_dollar","money_euro","money_pound","money_yen","money_coins","money_ruby"]},{"id": "time", "icons" : ["time_calendar","time_clock","time_hourglass"]},{"id": "chart", "icons" : ["chart_bar","chart_line","chart_curve","chart_pie","chart_organisation"]},{"id": "sign", "icons" : ["sign_warning","sign_info","sign_stop","sign_help","sign_cancel"]},{"id": "hard", "icons" : ["hard_cd","hard_computer","hard_controller","hard_driver_disk","hard_ipod","hard_keyboard","hard_mouse","hard_printer"]},{"id": "soft", "icons" : ["soft_bug","soft_cursor","soft_database_table","soft_database","soft_feed","soft_folder_explore","soft_rss","soft_penguin"]},{"id": "arrow", "icons" : ["arrow_up","arrow_down","arrow_left","arrow_right"]},{"id": "arrowc", "icons" : ["arrowc_rotate_anticlockwise","arrowc_rotate_clockwise","arrowc_turn_left","arrowc_turn_right"]},{"id": "people", "icons" : ["people_group","people_male1","people_male2","people_female1","people_female2"]},{"id": "mail", "icons" : ["mail_envelop","mail_mailbox","mail_edit","mail_list"]},{"id": "flag", "icons" : ["flag_blue","flag_green","flag_orange","flag_pink","flag_purple","flag_yellow"]},{"id": "bullet", "icons" : ["bullet_black","bullet_blue","bullet_green","bullet_orange","bullet_red","bullet_pink","bullet_purple"]},{"id": "tag", "icons" : ["tag_blue","tag_green","tag_orange","tag_red","tag_pink","tag_yellow"]},{"id": "object", "icons" : ["object_bell","object_clanbomber","object_key","object_pencil","object_phone","object_magnifier","object_clip","object_music","object_star","object_wizard","object_house","object_cake","object_camera","object_palette","object_rainbow"]}]
}
}
);
mindplot.ImageIcon.prototype.ICON_FAMILIES = [
{"id": "face", "icons" : ["face_plain","face_sad","face_crying","face_smile","face_surprise","face_wink"]},
{"id": "funy", "icons" : ["funy_angel","funy_devilish","funy_glasses","funy_grin","funy_kiss","funy_monkey"]},
{"id": "conn", "icons" : ["conn_connect","conn_disconnect"]},
{"id": "sport", "icons" : ["sport_basketball","sport_football","sport_golf","sport_raquet","sport_shuttlecock","sport_soccer","sport_tennis"]},
{"id": "bulb", "icons" : ["bulb_light_on","bulb_light_off"]},
{"id": "thumb", "icons" : ["thumb_thumb_up","thumb_thumb_down"]},
{"id": "tick", "icons" : ["tick_tick","tick_cross"]},
{"id": "onoff", "icons" : ["onoff_clock","onoff_clock_red","onoff_add","onoff_delete","onoff_status_offline","onoff_status_online"]},
{"id": "money", "icons" : ["money_money","money_dollar","money_euro","money_pound","money_yen","money_coins","money_ruby"]},
{"id": "time", "icons" : ["time_calendar","time_clock","time_hourglass"]},
{"id": "chart", "icons" : ["chart_bar","chart_line","chart_curve","chart_pie","chart_organisation"]},
{"id": "sign", "icons" : ["sign_warning","sign_info","sign_stop","sign_help","sign_cancel"]},
{"id": "hard", "icons" : ["hard_cd","hard_computer","hard_controller","hard_driver_disk","hard_ipod","hard_keyboard","hard_mouse","hard_printer"]},
{"id": "soft", "icons" : ["soft_bug","soft_cursor","soft_database_table","soft_database","soft_feed","soft_folder_explore","soft_rss","soft_penguin"]},
{"id": "arrow", "icons" : ["arrow_up","arrow_down","arrow_left","arrow_right"]},
{"id": "arrowc", "icons" : ["arrowc_rotate_anticlockwise","arrowc_rotate_clockwise","arrowc_turn_left","arrowc_turn_right"]},
{"id": "people", "icons" : ["people_group","people_male1","people_male2","people_female1","people_female2"]},
{"id": "mail", "icons" : ["mail_envelop","mail_mailbox","mail_edit","mail_list"]},
{"id": "flag", "icons" : ["flag_blue","flag_green","flag_orange","flag_pink","flag_purple","flag_yellow"]},
{"id": "bullet", "icons" : ["bullet_black","bullet_blue","bullet_green","bullet_orange","bullet_red","bullet_pink","bullet_purple"]},
{"id": "tag", "icons" : ["tag_blue","tag_green","tag_orange","tag_red","tag_pink","tag_yellow"]},
{"id": "object", "icons" : ["object_bell","object_clanbomber","object_key","object_pencil","object_phone","object_magnifier","object_clip","object_music","object_star","object_wizard","object_house","object_cake","object_camera","object_palette","object_rainbow"]}
]

View File

@ -17,3 +17,9 @@ Later
nodos en vez de borrarlos.
* Menu contextual para agregar nodos.
* Es necesario manejar para los central topic to main topic correctamente el concepto de height.
From: RelationshipLine
- Falta topic...
XMLMindmapSerializer_Beta

View File

@ -16,10 +16,19 @@
* limitations under the License.
*/
mindplot.LinkIcon = function(urlModel, topic, designer) {
mindplot.LinkIcon = new Class({
Extends:mindplot.Icon,
initialize:function(urlModel, topic, designer) {
$assert(urlModel, "urlModel can not be null");
$assert(designer, "designer can not be null");
$assert(topic, "topic can not be null");
this.parent(mindplot.LinkIcon.IMAGE_URL);
var divContainer = designer.getWorkSpace().getScreenManager().getContainer();
var bubbleTip = mindplot.BubbleTip.getInstance(divContainer);
mindplot.Icon.call(this, mindplot.LinkIcon.IMAGE_URL);
this._linkModel = urlModel;
this._topic = topic;
this._designer = designer;
@ -29,8 +38,7 @@ mindplot.LinkIcon = function(urlModel, topic, designer) {
var url = urlModel.getUrl();
this._img.src = 'http://open.thumbshots.org/image.pxf?url=' + url;
if (url.indexOf('http:') == -1)
{
if (url.indexOf('http:') == -1) {
url = 'http://' + url;
}
this._img.alt = url;
@ -49,6 +57,7 @@ mindplot.LinkIcon = function(urlModel, topic, designer) {
wOpen.moveTo(0, 0);
wOpen.resizeTo(screen.availWidth, screen.availHeight);
};
this._img.addEvent('click', openWindow.bindWithEvent(this));
this._img.inject(imgContainer);
@ -74,7 +83,7 @@ mindplot.LinkIcon = function(urlModel, topic, designer) {
if (!$defined(designer._viewMode) || ($defined(designer._viewMode) && !designer._viewMode)) {
var buttonContainer = new Element('div').setStyles({paddingTop:5, textAlign:'center'});
var editBtn = new Element('input', {type:'button', 'class':'btn-primary', value:'Edit','class':'btn-primary'}).addClass('button').inject(buttonContainer);
var editBtn = new Element('input', {type:'button', 'class':'btn-primary', value:'Edit'}).addClass('button').inject(buttonContainer);
var removeBtn = new Element('input', {type:'button', value:'Remove','class':'btn-primary'}).addClass('button').inject(buttonContainer);
editBtn.setStyle("margin-right", "3px");
@ -86,7 +95,7 @@ mindplot.LinkIcon = function(urlModel, topic, designer) {
bubbleTip.forceClose();
}.bindWithEvent(this));
var okButtonId = 'okLinkButtonId'
var okButtonId = 'okLinkButtonId';
editBtn.addEvent('click', function(event) {
var topic = this._topic;
var designer = this._designer;
@ -94,8 +103,7 @@ mindplot.LinkIcon = function(urlModel, topic, designer) {
var okFunction = function(e) {
var result = false;
var url = urlInput.value;
if ("" != url.trim())
{
if ("" != url.trim()) {
link._img.src = 'http://open.thumbshots.org/image.pxf?url=' + url;
link._img.alt = url;
link._link.href = url;
@ -107,15 +115,14 @@ mindplot.LinkIcon = function(urlModel, topic, designer) {
};
var msg = new Element('div');
var urlText = new Element('div').inject(msg);
urlText.innerHTML = "URL:"
urlText.innerHTML = "URL:";
var formElem = new Element('form', {'action': 'none', 'id':'linkFormId'});
var urlInput = new Element('input', {'type': 'text', 'size':30,'value':url});
urlInput.inject(formElem);
formElem.inject(msg)
formElem.inject(msg);
formElem.addEvent('submit', function(e)
{
formElem.addEvent('submit', function(e) {
$(okButtonId).fireEvent('click', e);
e = new Event(e);
e.stop();
@ -129,7 +136,6 @@ mindplot.LinkIcon = function(urlModel, topic, designer) {
buttonContainer.inject(container);
}
var linkIcon = this;
image.addEventListener('mouseover', function(event) {
bubbleTip.open(event, container, linkIcon);
@ -140,21 +146,16 @@ mindplot.LinkIcon = function(urlModel, topic, designer) {
image.addEventListener('mouseout', function(event) {
bubbleTip.close(event);
});
};
},
objects.extend(mindplot.LinkIcon, mindplot.Icon);
mindplot.LinkIcon.prototype.initialize = function() {
};
mindplot.LinkIcon.prototype.getUrl=function(){
getUrl : function() {
return this._url;
};
},
mindplot.LinkIcon.prototype.getModel=function(){
getModel : function() {
return this._linkModel;
};
}
});
mindplot.LinkIcon.buildDialog = function(designer, okFunction, okButtonId) {
var windoo = new Windoo({
@ -166,18 +167,17 @@ mindplot.LinkIcon.buildDialog = function(designer, okFunction, okButtonId) {
height:130
});
var cancel = new Element('input', {'type': 'button', 'class':'btn-primary', 'value': 'Cancel','class':'btn-primary'}).setStyle('margin-right', "5px");
var cancel = new Element('input', {'type': 'button', 'class':'btn-primary', 'value': 'Cancel'}).setStyle('margin-right', "5px");
cancel.setStyle('margin-left', "5px");
cancel.addEvent('click', function(event) {
$(document).addEvent('keydown', designer.keyEventHandler.bindWithEvent(designer));
windoo.close();
}.bindWithEvent(this));
var ok = new Element('input', {'type': 'button', 'class':'btn-primary','value': 'Ok','class':'btn-primary','id':okButtonId}).setStyle('marginRight', 10);
var ok = new Element('input', {'type': 'button', 'class':'btn-primary','value': 'Ok','id':okButtonId}).setStyle('marginRight', 10);
ok.addEvent('click', function(event) {
var couldBeUpdated = okFunction.attempt();
if (couldBeUpdated)
{
if (couldBeUpdated) {
$(document).addEvent('keydown', designer.keyEventHandler.bindWithEvent(designer));
windoo.close();
}

View File

@ -16,29 +16,29 @@
* limitations under the License.
*/
mindplot.LinkModel = function(url, topic)
{
$assert(url, 'link url can not be null');
mindplot.LinkModel = new Class({
initialize : function(url, topic) {
$assert(url, 'url can not be null');
$assert(topic, 'mindmap can not be null');
this._url = url;
this._topic = topic;
};
},
mindplot.LinkModel.prototype.getUrl = function()
{
getUrl : function() {
return this._url;
};
},
mindplot.LinkModel.prototype.setUrl = function(url){
setUrl : function(url) {
$assert(url, 'url can not be null');
this._url = url;
}
},
mindplot.LinkModel.prototype.getTopic = function()
{
getTopic : function() {
return this._topic;
};
},
mindplot.LinkModel.prototype.isLinkModel = function()
{
isLinkModel : function() {
return true;
};
}
});

View File

@ -89,7 +89,7 @@ mindplot.MainTopicBoard = new Class({
addBranch : function(topic) {
var order = topic.getOrder();
$assert($defined(order), "Order must be defined");
$assert(order, "Order must be defined");
// If the entry is not available, I must swap the the entries...
var board = this._getBoard();

View File

@ -41,7 +41,6 @@ mindplot.Mindmap = new Class({
this._iconType = id;
},
getVersion : function() {
return this._version;
},

File diff suppressed because it is too large Load Diff

View File

@ -183,8 +183,8 @@ mindplot.NodeModel = new Class({
},
setPosition : function(x, y) {
$assert($defined(x), "x coordinate must be defined");
$assert($defined(y), "y coordinate must be defined");
$assert(x, "x coordinate must be defined");
$assert(y, "y coordinate must be defined");
if (!$defined(this._position)) {
this._position = new core.Point();
@ -198,8 +198,8 @@ mindplot.NodeModel = new Class({
},
setFinalPosition : function(x, y) {
$assert($defined(x), "x coordinate must be defined");
$assert($defined(y), "y coordinate must be defined");
$assert(x, "x coordinate must be defined");
$assert(y, "y coordinate must be defined");
if (!$defined(this._finalPosition)) {
this._finalPosition = new core.Point();
@ -253,7 +253,7 @@ mindplot.NodeModel = new Class({
canBeConnected : function(sourceModel, sourcePosition, targetTopicHeight) {
$assert(sourceModel != this, 'The same node can not be parent and child if itself.');
$assert(sourcePosition, 'childPosition can not be null.');
$assert($defined(targetTopicHeight), 'childrenWidth can not be null.');
$assert(targetTopicHeight, 'childrenWidth can not be null.');
// Only can be connected if the node is in the left or rigth.
var targetModel = this;

View File

@ -15,9 +15,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
mindplot.RelationshipLine = function(sourceNode, targetNode, lineType)
{
mindplot.ConnectionLine.call(this,sourceNode, targetNode, lineType);
mindplot.RelationshipLine = new Class({
Extends: mindplot.ConnectionLine,
initialize:function(sourceNode, targetNode, lineType) {
this.parent(sourceNode, targetNode, lineType);
this._line2d.setIsSrcControlPointCustom(false);
this._line2d.setIsDestControlPointCustom(false);
this._isOnfocus = false;
@ -40,23 +42,15 @@ mindplot.RelationshipLine = function(sourceNode, targetNode, lineType)
this._endArrow.setStrokeWidth(2);
this._line2d.setStroke(1, 'solid', strokeColor);
};
},
objects.extend(mindplot.RelationshipLine, mindplot.ConnectionLine);
mindplot.RelationshipLine.getStrokeColor = function()
{
return '#9b74e6';
};
mindplot.RelationshipLine.prototype.setStroke = function(color, style, opacity)
{
mindplot.RelationshipLine.superClass.setStroke.call(this, color, style, opacity);
setStroke : function(color, style, opacity) {
// @Todo: How this is supported in mootools ?
mindplot.ConnectionLine.prototype.setStroke.call(this, color, style, opacity);
this._startArrow.setStrokeColor(color);
};
},
mindplot.RelationshipLine.prototype.redraw = function()
{
redraw : function() {
var line2d = this._line2d;
var sourceTopic = this._sourceTopic;
var sourcePosition = sourceTopic.getPosition();
@ -99,10 +93,9 @@ mindplot.RelationshipLine.prototype.redraw = function()
}
this._focusShape.moveToBack();
this._controlPointsController.redraw();
};
},
mindplot.RelationshipLine.prototype._positionateArrows = function()
{
_positionateArrows : function() {
this._endArrow.setVisibility(this.isVisible() && this._showEndArrow);
this._startArrow.setVisibility(this.isVisible() && this._showStartArrow);
@ -121,10 +114,9 @@ mindplot.RelationshipLine.prototype._positionateArrows = function()
this._startArrow.setControlPoint(this._line2d.getTo());
this._endArrow.setControlPoint(this._line2d.getFrom());
}
};
},
mindplot.RelationshipLine.prototype.addToWorkspace = function(workspace)
{
addToWorkspace : function(workspace) {
workspace.appendChild(this._focusShape);
workspace.appendChild(this._controlPointsController);
this._controlPointControllerListener = this._initializeControlPointController.bindWithEvent(this, workspace);
@ -134,14 +126,14 @@ mindplot.RelationshipLine.prototype.addToWorkspace = function(workspace)
workspace.appendChild(this._startArrow);
workspace.appendChild(this._endArrow);
mindplot.RelationshipLine.superClass.addToWorkspace.call(this, workspace);
};
mindplot.ConnectionLine.prototype.addToWorkspace.call(this, workspace);
},
mindplot.RelationshipLine.prototype._initializeControlPointController = function(event,workspace){
_initializeControlPointController : function(event, workspace) {
this.setOnFocus(true);
};
},
mindplot.RelationshipLine.prototype.removeFromWorkspace = function(workspace){
removeFromWorkspace : function(workspace) {
workspace.removeChild(this._focusShape);
workspace.removeChild(this._controlPointsController);
this._line2d.removeEventListener('click', this._controlPointControllerListener);
@ -149,14 +141,14 @@ mindplot.RelationshipLine.prototype.removeFromWorkspace = function(workspace){
workspace.removeChild(this._startArrow);
workspace.removeChild(this._endArrow);
mindplot.RelationshipLine.superClass.removeFromWorkspace.call(this,workspace);
};
mindplot.ConnectionLine.prototype.removeFromWorkspace.call(this, workspace);
},
mindplot.RelationshipLine.prototype.getType = function(){
getType : function() {
return mindplot.RelationshipLine.type;
};
},
mindplot.RelationshipLine.prototype.setOnFocus = function(focus){
setOnFocus : function(focus) {
// Change focus shape
if (focus) {
this._refreshSelectedShape();
@ -166,9 +158,9 @@ mindplot.RelationshipLine.prototype.setOnFocus = function(focus){
this._controlPointsController.setVisibility(focus);
this._onFocus = focus;
};
},
mindplot.RelationshipLine.prototype._refreshSelectedShape = function () {
_refreshSelectedShape : function () {
var sPos = this._line2d.getFrom();
var tPos = this._line2d.getTo();
var ctrlPoints = this._line2d.getControlPoints();
@ -182,102 +174,102 @@ mindplot.RelationshipLine.prototype._refreshSelectedShape = function () {
this._focusShape.updateLine();
//this._focusShape.setSrcControlPoint(ctrlPoints[0]);
//this._focusShape.setDestControlPoint(ctrlPoints[1]);
};
},
mindplot.RelationshipLine.prototype.addEventListener = function(type, listener){
addEventListener : function(type, listener) {
// Translate to web 2d events ...
if (type == 'onfocus')
{
if (type == 'onfocus') {
type = 'mousedown';
}
var line = this._line2d;
line.addEventListener(type, listener);
};
},
mindplot.RelationshipLine.prototype.isOnFocus = function()
{
isOnFocus : function() {
return this._onFocus;
};
},
mindplot.RelationshipLine.prototype.isInWorkspace = function(){
isInWorkspace : function() {
return this._isInWorkspace;
};
},
mindplot.RelationshipLine.prototype.setVisibility = function(value)
{
mindplot.RelationshipLine.superClass.setVisibility.call(this,value);
setVisibility : function(value) {
mindplot.ConnectionLine.prototype.setVisibility.call(this, value);
this._endArrow.setVisibility(this._showEndArrow && value);
this._startArrow.setVisibility(this._showStartArrow && value);
};
},
mindplot.RelationshipLine.prototype.setOpacity = function(opacity){
mindplot.RelationshipLine.superClass.setOpacity.call(this,opacity);
setOpacity : function(opacity) {
mindplot.ConnectionLine.prototype.setOpacity.call(this, opacity);
if (this._showEndArrow)
this._endArrow.setOpacity(opacity);
if (this._showStartArrow)
this._startArrow.setOpacity(opacity);
};
},
mindplot.RelationshipLine.prototype.setShowEndArrow = function(visible){
setShowEndArrow : function(visible) {
this._showEndArrow = visible;
if (this._isInWorkspace)
this.redraw();
};
},
mindplot.RelationshipLine.prototype.setShowStartArrow = function(visible){
setShowStartArrow : function(visible) {
this._showStartArrow = visible;
if (this._isInWorkspace)
this.redraw();
};
},
mindplot.RelationshipLine.prototype.isShowEndArrow = function(){
isShowEndArrow : function() {
return this._showEndArrow;
};
},
mindplot.RelationshipLine.prototype.isShowStartArrow = function(){
isShowStartArrow : function() {
return this._showStartArrow;
};
},
mindplot.RelationshipLine.prototype.setFrom = function(x,y){
setFrom : function(x, y) {
this._line2d.setFrom(x, y);
this._startArrow.setFrom(x, y);
};
},
mindplot.RelationshipLine.prototype.setTo = function(x,y){
setTo : function(x, y) {
this._line2d.setTo(x, y);
this._endArrow.setFrom(x, y);
};
},
mindplot.RelationshipLine.prototype.setSrcControlPoint = function(control){
setSrcControlPoint : function(control) {
this._line2d.setSrcControlPoint(control);
this._startArrow.setControlPoint(control);
};
},
mindplot.RelationshipLine.prototype.setDestControlPoint = function(control){
setDestControlPoint : function(control) {
this._line2d.setDestControlPoint(control);
this._endArrow.setControlPoint(control);
};
},
mindplot.RelationshipLine.prototype.getControlPoints = function(){
getControlPoints : function() {
return this._line2d.getControlPoints();
};
},
mindplot.RelationshipLine.prototype.isSrcControlPointCustom = function(){
isSrcControlPointCustom : function() {
return this._line2d.isSrcControlPointCustom();
};
},
mindplot.RelationshipLine.prototype.isDestControlPointCustom = function(){
isDestControlPointCustom : function() {
return this._line2d.isDestControlPointCustom();
};
},
mindplot.RelationshipLine.prototype.setIsSrcControlPointCustom = function(isCustom){
setIsSrcControlPointCustom : function(isCustom) {
this._line2d.setIsSrcControlPointCustom(isCustom);
};
},
mindplot.RelationshipLine.prototype.setIsDestControlPointCustom = function(isCustom){
setIsDestControlPointCustom : function(isCustom) {
this._line2d.setIsDestControlPointCustom(isCustom);
};
}});
mindplot.RelationshipLine.type = "RelationshipLine";
mindplot.RelationshipLine.getStrokeColor = function() {
return '#9b74e6';
}

View File

@ -15,8 +15,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
mindplot.RelationshipModel = function(fromNode, toNode)
{
mindplot.RelationshipModel = new Class({
initialize:function(fromNode, toNode) {
$assert(fromNode, 'from node type can not be null');
$assert(toNode, 'to node type can not be null');
@ -28,63 +28,61 @@ mindplot.RelationshipModel = function(fromNode, toNode)
this._destCtrlPoint = null;
this._endArrow = true;
this._startArrow = false;
this._ctrlPointRelative=false;
},
};
mindplot.RelationshipModel.prototype.getFromNode=function(){
getFromNode : function() {
return this._fromNode;
};
},
mindplot.RelationshipModel.prototype.getToNode=function(){
getToNode : function() {
return this._toNode;
};
},
mindplot.RelationshipModel.prototype.getId=function(){
getId : function() {
return this._id;
};
},
mindplot.RelationshipModel.prototype.getLineType = function(){
getLineType : function() {
return this._lineType;
};
},
mindplot.RelationshipModel.prototype.setLineType = function(lineType){
setLineType : function(lineType) {
this._lineType = lineType;
};
},
mindplot.RelationshipModel.prototype.getSrcCtrlPoint= function(){
getSrcCtrlPoint : function() {
return this._srcCtrlPoint;
};
},
mindplot.RelationshipModel.prototype.setSrcCtrlPoint= function(srcCtrlPoint){
setSrcCtrlPoint : function(srcCtrlPoint) {
this._srcCtrlPoint = srcCtrlPoint;
};
},
mindplot.RelationshipModel.prototype.getDestCtrlPoint= function(){
getDestCtrlPoint : function() {
return this._destCtrlPoint;
};
},
mindplot.RelationshipModel.prototype.setDestCtrlPoint= function(destCtrlPoint){
setDestCtrlPoint : function(destCtrlPoint) {
this._destCtrlPoint = destCtrlPoint;
};
},
mindplot.RelationshipModel.prototype.getEndArrow= function(){
getEndArrow : function() {
return this._endArrow;
};
},
mindplot.RelationshipModel.prototype.setEndArrow= function(endArrow){
setEndArrow : function(endArrow) {
this._endArrow = endArrow;
};
},
mindplot.RelationshipModel.prototype.getStartArrow= function(){
getStartArrow : function() {
return this._startArrow;
};
},
mindplot.RelationshipModel.prototype.setStartArrow= function(startArrow){
setStartArrow : function(startArrow) {
this._startArrow = startArrow;
};
},
mindplot.RelationshipModel.prototype.clone = function(model){
clone : function(model) {
var result = new mindplot.RelationshipModel(this._fromNode, this._toNode);
result._id = this._id;
result._lineType = this._lineType;
@ -93,24 +91,23 @@ mindplot.RelationshipModel.prototype.clone = function(model){
result._endArrow = this._endArrow;
result._startArrow = this._startArrow;
return result;
};
},
inspect : function() {
return '(fromNode:' + this.getFromNode().getId() + ' , toNode: ' + this.getToNode().getId() + ')';
}
});
/**
* @todo: This method must be implemented.
*/
mindplot.RelationshipModel._nextUUID = function()
{
if (!$defined(this._uuid))
{
mindplot.RelationshipModel._nextUUID = function() {
if (!$defined(this._uuid)) {
this._uuid = 0;
}
this._uuid = this._uuid + 1;
return this._uuid;
};
}
mindplot.RelationshipModel.prototype.inspect = function()
{
return '(fromNode:' + this.getFromNode().getId() + ' , toNode: ' + this.getToNode().getId() + ')';
};

View File

@ -16,28 +16,27 @@
* limitations under the License.
*/
mindplot.ScreenManager = function(width, height, divElement)
{
mindplot.ScreenManager = new Class({
initialize:function(width, height, divElement) {
$assert(divElement, "can not be null");
this._divContainer = divElement;
this._offset = {x:0,y:0};
};
},
mindplot.ScreenManager.prototype.setScale = function(scale)
{
$assert($defined(scale), 'Screen scale can not be null');
setScale : function(scale) {
$assert(scale, 'Screen scale can not be null');
this._workspaceScale = scale;
};
},
mindplot.ScreenManager.prototype.addEventListener=function(event, listener){
addEventListener : function(event, listener) {
$(this._divContainer).addEvent(event, listener);
};
},
mindplot.ScreenManager.prototype.removeEventListener=function(event, listener){
removeEventListener : function(event, listener) {
$(this._divContainer).removeEvent(event, listener);
};
},
mindplot.ScreenManager.prototype.getWorkspaceElementPosition = function(e)
{
getWorkspaceElementPosition : function(e) {
// Retrive current element position.
var elementPosition = e.getPosition();
var x = elementPosition.x;
@ -59,11 +58,10 @@ y = y + containerPosition.y;*/
// Remove decimal part..
return {x:x,y:y};
};
},
mindplot.ScreenManager.prototype.getWorkspaceIconPosition = function(e)
{
// Retrive current icon position.
getWorkspaceIconPosition : function(e) {
// Retrieve current icon position.
var image = e.getImage();
var elementPosition = image.getPosition();
var imageSize = e.getSize();
@ -93,10 +91,9 @@ mindplot.ScreenManager.prototype.getWorkspaceIconPosition = function(e)
// Remove decimal part..
return {x:x + topicPosition.x,y:y + topicPosition.y};
};
},
mindplot.ScreenManager.prototype.getWorkspaceMousePosition = function(e)
{
getWorkspaceMousePosition : function(e) {
// Retrive current mouse position.
var mousePosition = this._getMousePosition(e);
var x = mousePosition.x;
@ -118,23 +115,20 @@ mindplot.ScreenManager.prototype.getWorkspaceMousePosition = function(e)
// Remove decimal part..
return new core.Point(x, y);
};
},
/**
* http://www.howtocreate.co.uk/tutorials/javascript/eventinfo
*/
mindplot.ScreenManager.prototype._getMousePosition = function(event)
{
_getMousePosition : function(event) {
return core.Utils.getMousePosition(event);
};
},
mindplot.ScreenManager.prototype.getContainer = function()
{
getContainer : function() {
return this._divContainer;
};
},
mindplot.ScreenManager.prototype.setOffset = function(x, y)
{
setOffset : function(x, y) {
this._offset.x = x;
this._offset.y = y;
};
}});

View File

@ -16,10 +16,10 @@
* limitations under the License.
*/
mindplot.SingleCommandDispatcher = new Class({
Extends:mindplot.BaseCommandDispatcher,
initialize: function()
mindplot.SingleCommandDispatcher = new Class(
{
Extends:mindplot.BaseCommandDispatcher,
initialize: function() {
},
addIconToTopic: function() {

View File

@ -17,8 +17,7 @@
*/
mindplot.TextEditor = new Class({
initialize:function(designer,actionRunner)
{
initialize:function(designer, actionRunner) {
this._designer = designer;
this._screenManager = designer.getWorkSpace().getScreenManager();
this._container = this._screenManager.getContainer();
@ -31,6 +30,7 @@ mindplot.TextEditor = new Class({
this._addListeners();
},
_createUI:function() {
this._size = {width:500, height:100};
this._myOverlay = new Element('div').setStyles({position:"absolute", display: "none", zIndex: "8", top: 0, left:0, width:"500px", height:"100px"});
@ -40,21 +40,19 @@ mindplot.TextEditor = new Class({
this._spanText = new Element('span').setProperties({id: "spanText", tabindex:"-1"}).setStyle('white-space', "nowrap").setStyle('nowrap', 'nowrap').inject(spanContainer);
this._myOverlay.inject(this._container);
},
_addListeners:function() {
var elem = this;
this.applyChanges = true;
this.inputText.onkeyup = function (evt) {
var event = new Event(evt);
var key = event.key;
switch(key)
{
switch (key) {
case 'esc':
elem.applyChanges = false;
case 'enter':
var executor = function(editor)
{
return function()
{
var executor = function(editor) {
return function() {
elem.lostFocus(true);
$(document.documentElement).fireEvent('focus');
};
@ -68,8 +66,7 @@ mindplot.TextEditor = new Class({
span.innerHTML = input.value;
var size = input.value.length + 1;
input.size = size;
if (span.offsetWidth > (parseInt(elem._myOverlay.style.width) - 100))
{
if (span.offsetWidth > (parseInt(elem._myOverlay.style.width) - 100)) {
elem._myOverlay.style.width = (span.offsetWidth + 100) + "px";
}
break;
@ -88,11 +85,9 @@ mindplot.TextEditor = new Class({
this.inputText.setStyle('opacity', 1);
this.setPosition(0, 0);
if (elem._currentNode != null)
{
if (elem._currentNode != null) {
this._currentNode.getTextShape().setVisibility(true);
if(this.applyChanges)
{
if (this.applyChanges) {
this._updateNode();
}
this.applyChanges = true;
@ -104,44 +99,40 @@ mindplot.TextEditor = new Class({
this.fx = new Fx.Tween(this.inputText, {property: 'opacity', duration: 10});
this.fx.addEvent('onComplete', onComplete.bind(this));
},
lostFocusEvent : function ()
{
lostFocusEvent : function () {
this.fx.options.duration = 10;
this.fx.start(1, 0);
//myAnim.animate();
},
isVisible : function ()
{
isVisible : function () {
return this._isVisible;
},
getFocusEvent: function (node)
{
getFocusEvent: function (node) {
//console.log('focus event');
if (this.isVisible())
{
if (this.isVisible()) {
this.getFocusEvent.delay(10, this);
}
else
{
else {
//console.log('calling init');
this.init(node);
}
//console.log('focus event done');
},
setInitialText : function (text)
{
setInitialText : function (text) {
this.initialText = text;
},
_updateNode : function ()
{
if ($defined(this._currentNode) && this._currentNode.getText() != this.getText())
{
_updateNode : function () {
if ($defined(this._currentNode) && this._currentNode.getText() != this.getText()) {
var text = this.getText();
var topicId = this._currentNode.getId();
var commandFunc = function(topic,value)
{
var commandFunc = function(topic, value) {
var result = topic.getText();
topic.setText(value);
return result;
@ -150,8 +141,8 @@ mindplot.TextEditor = new Class({
this._actionRunner.execute(command);
}
},
listenEventOnNode : function(topic, eventName, stopPropagation)
{
listenEventOnNode : function(topic, eventName, stopPropagation) {
var elem = this;
topic.addEventListener(eventName, function (event) {
if (elem._designer.getWorkSpace().isWorkspaceEventsEnabled()) {
@ -159,21 +150,18 @@ mindplot.TextEditor = new Class({
elem.lostFocus();
elem.getFocusEvent.attempt(topic, elem);
if (stopPropagation)
{
if ($defined(event.stopPropagation))
{
if (stopPropagation) {
if ($defined(event.stopPropagation)) {
event.stopPropagation(true);
} else
{
} else {
event.cancelBubble = true;
}
}
}
});
},
init : function (nodeGraph)
{
init : function (nodeGraph) {
//console.log('init method');
nodeGraph.getTextShape().setVisibility(false);
this._currentNode = nodeGraph;
@ -182,8 +170,7 @@ mindplot.TextEditor = new Class({
var nodeText = nodeGraph.getTextShape();
var text;
var selectText = true;
if(this.initialText && this.initialText!="")
{
if (this.initialText && this.initialText != "") {
text = this.initialText;
this.initialText = null;
selectText = false;
@ -202,10 +189,8 @@ mindplot.TextEditor = new Class({
//set editor's initial size
var editor = this;
var executor = function(editor)
{
return function()
{
var executor = function(editor) {
return function() {
//console.log('setting editor in init thread');
var scale = web2d.peer.utils.TransformUtil.workoutScale(editor._currentNode.getTextShape()._peer);
var elemSize = editor._currentNode.getSize();
@ -216,12 +201,10 @@ mindplot.TextEditor = new Class({
var textHeight = editor._currentNode.getTextShape().getHeight();
var iconGroup = editor._currentNode.getIconGroup();
var iconGroupSize;
if($chk(iconGroup))
{
if ($chk(iconGroup)) {
iconGroupSize = editor._currentNode.getIconGroup().getSize();
}
else
{
else {
iconGroupSize = {width:0, height:0};
}
var position = {x:0,y:0};
@ -240,24 +223,20 @@ mindplot.TextEditor = new Class({
setTimeout(executor(this), 10);
//console.log('init done');
},
setStyle : function (fontStyle)
{
setStyle : function (fontStyle) {
var inputField = $("inputText");
var spanField = $("spanText");
if (!$defined(fontStyle.font))
{
if (!$defined(fontStyle.font)) {
fontStyle.font = "Arial";
}
if (!$defined(fontStyle.style))
{
if (!$defined(fontStyle.style)) {
fontStyle.style = "normal";
}
if (!$defined(fontStyle.weight))
{
if (!$defined(fontStyle.weight)) {
fontStyle.weight = "normal";
}
if (!$defined(fontStyle.size))
{
if (!$defined(fontStyle.size)) {
fontStyle.size = 12;
}
inputField.style.fontSize = fontStyle.size + "px";
@ -270,8 +249,8 @@ mindplot.TextEditor = new Class({
spanField.style.fontWeight = fontStyle.weight;
spanField.style.fontSize = fontStyle.size + "px";
},
setText : function(text)
{
setText : function(text) {
var inputField = $("inputText");
inputField.size = text.length + 1;
//this._myOverlay.cfg.setProperty("width", (inputField.size * parseInt(inputField.style.fontSize) + 100) + "px");
@ -280,12 +259,12 @@ mindplot.TextEditor = new Class({
spanField.innerHTML = text;
inputField.value = text;
},
getText : function()
{
getText : function() {
return $('inputText').value;
},
setEditorSize : function (width, height, scale)
{
setEditorSize : function (width, height, scale) {
//var scale = web2d.peer.utils.TransformUtil.workoutScale(this._currentNode.getTextShape()._peer);
this._size = {width:width * scale.width, height:height * scale.height};
//this._myOverlay.cfg.setProperty("width",this._size.width*2+"px");
@ -293,17 +272,17 @@ mindplot.TextEditor = new Class({
//this._myOverlay.cfg.setProperty("height",this._size.height+"px");
this._myOverlay.style.height = this._size.height + "px";
},
getSize : function ()
{
getSize : function () {
return {width:$("spanText").offsetWidth,height:$("spanText").offsetHeight};
},
setPosition : function (x, y, scale)
{
setPosition : function (x, y, scale) {
$(this._myOverlay).setStyles({top : y + "px", left: x + "px"});
//this._myOverlay.style.left = x + "px";
},
showTextEditor : function(selectText)
{
showTextEditor : function(selectText) {
//this._myOverlay.show();
//var myAnim = new YAHOO.util.Anim('inputText',{opacity: {to:1}}, 0.10, YAHOO.util.Easing.easeOut);
//$('inputText').style.opacity='1';
@ -322,31 +301,25 @@ mindplot.TextEditor = new Class({
{
var range = $('inputText').createTextRange();
var pos = $('inputText').value.length;
if(selectText)
{
if (selectText) {
range.select();
range.move("character", pos);
}
else
{
else {
range.move("character", pos);
range.select();
}
}
else if(selectText)
{
else if (selectText) {
$('inputText').setSelectionRange(0, $('inputText').value.length);
}
var executor = function(editor)
{
return function()
{
var executor = function(editor) {
return function() {
try {
$('inputText').focus();
}
catch (e)
{
catch (e) {
}
};
@ -356,10 +329,9 @@ mindplot.TextEditor = new Class({
//myAnim.animate();
},
lostFocus : function(bothBrowsers)
{
if (this.isVisible())
{
lostFocus : function(bothBrowsers) {
if (this.isVisible()) {
//the editor is opened in another node. lets Finish it.
var fireOnThis = $('inputText');
fireOnThis.fireEvent('blur');
@ -367,11 +339,9 @@ mindplot.TextEditor = new Class({
},
clickEvent : function(event) {
if (this.isVisible()) {
if ($defined(event.stopPropagation))
{
if ($defined(event.stopPropagation)) {
event.stopPropagation(true);
} else
{
} else {
event.cancelBubble = true;
}
event.preventDefault();
@ -380,11 +350,9 @@ mindplot.TextEditor = new Class({
},
mouseDownEvent : function(event) {
if (this.isVisible()) {
if ($defined(event.stopPropagation))
{
if ($defined(event.stopPropagation)) {
event.stopPropagation(true);
} else
{
} else {
event.cancelBubble = true;
}
}

View File

@ -16,11 +16,8 @@
* limitations under the License.
*/
mindplot.Tip = function(divContainer){
this.initialize(divContainer);
};
mindplot.Tip.prototype.initialize=function(divContainer){
mindplot.Tip = new Class({
initialize:function(divContainer) {
this.options = {
panel:null,
container:null,
@ -35,40 +32,42 @@ mindplot.Tip.prototype.initialize=function(divContainer){
this.buildTip();
this._isMouseOver = false;
this._open = false;
};
},
mindplot.Tip.prototype.buildTip=function(){
buildTip : function() {
var opts = this.options;
var panel = new Element('div').addClass('bubbleContainer');
if ($chk(opts.height))
panel.setStyle('height', opts.height);
if ($chk(opts.width))
panel.setStyle('width', opts.width);
if(!$chk(opts.divContainer))
{
if (!$chk(opts.divContainer)) {
opts.divContainer = document.body;
}
panel.injectTop(opts.divContainer);
opts.panel = $(panel);
opts.panel.setStyle('opacity', 0);
opts.panel.addEvent('mouseover',function(){this._isMouseOver=true;}.bind(this));
opts.panel.addEvent('mouseleave',function(event){this.close(event);}.bindWithEvent(this));//this.close.bindWithEvent(this)
opts.panel.addEvent('mouseover', function() {
this._isMouseOver = true;
}.bind(this));
opts.panel.addEvent('mouseleave', function(event) {
this.close(event);
}.bindWithEvent(this));//this.close.bindWithEvent(this)
};
},
mindplot.Tip.prototype.click= function(event, el) {
click : function(event, el) {
return this.open(event, el);
};
},
mindplot.Tip.prototype.open= function(event, content, source){
open : function(event, content, source) {
this._isMouseOver = true;
this._evt = new Event(event);
this.doOpen.delay(500, this, [content,source]);
};
},
mindplot.Tip.prototype.doOpen= function(content, source){
if($chk(this._isMouseOver) &&!$chk(this._open) && !$chk(this._opening))
{
doOpen : function(content, source) {
if ($chk(this._isMouseOver) && !$chk(this._open) && !$chk(this._opening)) {
this._opening = true;
var container = new Element('div');
$(content).inject(container);
@ -76,39 +75,41 @@ mindplot.Tip.prototype.doOpen= function(content, source){
this.options.container = container;
$(this.options.container).inject(this.options.panel);
this.init(this._evt, source);
$(this.options.panel).effect('opacity',{duration:500, onComplete:function(){this._open=true; this._opening = false;}.bind(this)}).start(0,100);
$(this.options.panel).effect('opacity', {duration:500, onComplete:function() {
this._open = true;
this._opening = false;
}.bind(this)}).start(0, 100);
}
};
},
mindplot.Tip.prototype.updatePosition=function(event){
updatePosition : function(event) {
this._evt = new Event(event);
};
},
mindplot.Tip.prototype.close=function(event){
close : function(event) {
this._isMouseOver = false;
this.doClose.delay(50, this, new Event(event));
};
},
mindplot.Tip.prototype.doClose=function(event){
doClose : function(event) {
if (!$chk(this._isMouseOver) && $chk(this._opening))
this.doClose.delay(500, this, this._evt);
if(!$chk(this._isMouseOver) && $chk(this._open))
{
if (!$chk(this._isMouseOver) && $chk(this._open)) {
this.forceClose();
}
};
},
mindplot.Tip.prototype.forceClose=function(){
forceClose : function() {
this.options.panel.effect('opacity', {duration:100, onComplete:function() {
this._open = false;
$(this.options.panel).setStyles({left:0,top:0});
$(this.options.container).dispose();
}.bind(this)}).start(100, 0);
};
},
mindplot.Tip.prototype.init=function(event,source){
init : function(event, source) {
var opts = this.options;
var coordinates = $(opts.panel).getCoordinates();
var width = coordinates.width; //not total width, but close enough
@ -124,21 +125,21 @@ mindplot.Tip.prototype.init=function(event,source){
this.buildTip();
$(this.options.container).inject(this.options.panel);
this.moveTopic(offset, $(opts.panel).getCoordinates().height);
};
},
mindplot.Tip.prototype.moveTopic=function(offset, panelHeight){
moveTopic : function(offset, panelHeight) {
var opts = this.options;
var width = $(opts.panel).getCoordinates().width;
$(opts.panel).setStyles({left:offset.x - (width / 2), top:offset.y - (panelHeight * 2) + 35});
};
}
mindplot.Tip.getInstance = function(divContainer)
{
});
mindplot.Tip.getInstance = function(divContainer) {
var result = mindplot.Tip.instance;
if(!$defined(result))
{
if (!$defined(result)) {
mindplot.Tip.instance = new mindplot.Tip(divContainer);
result = mindplot.Tip.instance;
}
return result;
};
}

View File

@ -103,7 +103,7 @@ mindplot.VariableDistanceBoard = new Class({
},
lookupEntryByPosition:function(pos) {
$assert($defined(pos), 'position can not be null');
$assert(pos, 'position can not be null');
var entries = this._entries;
var zeroEntry = entries.get(0);
if (zeroEntry.isCoordinateIn(pos.y)) {

View File

@ -150,8 +150,7 @@ mindplot.Workspace = new Class({
var screenManager = this._screenManager;
this._dragging = true;
var mWorkspace = this;
var mouseDownListener = function(event)
{
var mouseDownListener = function(event) {
if (!$defined(workspace.mouseMoveListener)) {
if (mWorkspace.isWorkspaceEventsEnabled()) {
mWorkspace.enableWorkspaceEvents(false);

View File

@ -49,7 +49,8 @@ mindplot.XMLMindmapSerializerFactory.getSerializer = function(version){
};
mindplot.XMLMindmapSerializerFactory._codeNames =
[{
[
{
codeName:mindplot.ModelCodeName.BETA,
serializer: mindplot.XMLMindmapSerializer_Beta,
migrator:function() {//todo:error

View File

@ -14,13 +14,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
mindplot.XMLMindmapSerializer_Beta = function()
{
mindplot.XMLMindmapSerializer_Beta = new Class({
};
mindplot.XMLMindmapSerializer_Beta.prototype.toXML = function(mindmap)
{
toXML : function(mindmap) {
$assert(mindmap, "Can not save a null mindmap");
var document = core.Utils.createDocument();
@ -28,41 +24,34 @@ mindplot.XMLMindmapSerializer_Beta.prototype.toXML = function(mindmap)
// Store map attributes ...
var mapElem = document.createElement("map");
var name = mindmap.getId();
if ($defined(name))
{
if ($defined(name)) {
mapElem.setAttribute('name', name);
}
document.appendChild(mapElem);
// Create branches ...
var topics = mindmap.getBranches();
for (var i = 0; i < topics.length; i++)
{
for (var i = 0; i < topics.length; i++) {
var topic = topics[i];
var topicDom = this._topicToXML(document, topic);
mapElem.appendChild(topicDom);
}
return document;
};
},
mindplot.XMLMindmapSerializer_Beta.prototype._topicToXML = function(document, topic)
{
_topicToXML : function(document, topic) {
var parentTopic = document.createElement("topic");
// Set topic attributes...
if (topic.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE)
{
if (topic.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE) {
parentTopic.setAttribute("central", true);
} else
{
} else {
var parent = topic.getParent();
if (parent == null || parent.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE)
{
if (parent == null || parent.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE) {
var pos = topic.getPosition();
parentTopic.setAttribute("position", pos.x + ',' + pos.y);
} else
{
} else {
var order = topic.getOrder();
parentTopic.setAttribute("order", order);
}
@ -78,8 +67,7 @@ mindplot.XMLMindmapSerializer_Beta.prototype._topicToXML = function(document, to
parentTopic.setAttribute('shape', shape);
}
if(topic.areChildrenShrinked())
{
if (topic.areChildrenShrinked()) {
parentTopic.setAttribute('shrink', true);
}
@ -102,8 +90,7 @@ mindplot.XMLMindmapSerializer_Beta.prototype._topicToXML = function(document, to
font += (fontStyle ? fontStyle : '') + ';';
if ($defined(fontFamily) || $defined(fontSize) || $defined(fontColor)
|| $defined(fontWeight )|| $defined(fontStyle))
{
|| $defined(fontWeight) || $defined(fontStyle)) {
parentTopic.setAttribute('fontStyle', font);
}
@ -119,8 +106,7 @@ mindplot.XMLMindmapSerializer_Beta.prototype._topicToXML = function(document, to
//ICONS
var icons = topic.getIcons();
for (var i = 0; i < icons.length; i++)
{
for (var i = 0; i < icons.length; i++) {
var icon = icons[i];
var iconDom = this._iconToXML(document, icon);
parentTopic.appendChild(iconDom);
@ -128,16 +114,14 @@ mindplot.XMLMindmapSerializer_Beta.prototype._topicToXML = function(document, to
//LINKS
var links = topic.getLinks();
for (var i = 0; i < links.length; i++)
{
for (var i = 0; i < links.length; i++) {
var link = links[i];
var linkDom = this._linkToXML(document, link);
parentTopic.appendChild(linkDom);
}
var notes = topic.getNotes();
for (var i = 0; i < notes.length; i++)
{
for (var i = 0; i < notes.length; i++) {
var note = notes[i];
var noteDom = this._noteToXML(document, note);
parentTopic.appendChild(noteDom);
@ -145,8 +129,7 @@ mindplot.XMLMindmapSerializer_Beta.prototype._topicToXML = function(document, to
//CHILDREN TOPICS
var childTopics = topic.getChildren();
for (var i = 0; i < childTopics.length; i++)
{
for (var i = 0; i < childTopics.length; i++) {
var childTopic = childTopics[i];
var childDom = this._topicToXML(document, childTopic);
parentTopic.appendChild(childDom);
@ -154,31 +137,27 @@ mindplot.XMLMindmapSerializer_Beta.prototype._topicToXML = function(document, to
}
return parentTopic;
};
},
mindplot.XMLMindmapSerializer_Beta.prototype._iconToXML = function(document, icon)
{
_iconToXML : function(document, icon) {
var iconDom = document.createElement("icon");
iconDom.setAttribute('id', icon.getIconType());
return iconDom;
};
},
mindplot.XMLMindmapSerializer_Beta.prototype._linkToXML = function(document, link)
{
_linkToXML : function(document, link) {
var linkDom = document.createElement("link");
linkDom.setAttribute('url', link.getUrl());
return linkDom;
};
},
mindplot.XMLMindmapSerializer_Beta.prototype._noteToXML = function(document, note)
{
_noteToXML : function(document, note) {
var noteDom = document.createElement("note");
noteDom.setAttribute('text', note.getText());
return noteDom;
};
},
mindplot.XMLMindmapSerializer_Beta.prototype.loadFromDom = function(dom)
{
loadFromDom : function(dom) {
$assert(dom, "Dom can not be null");
var rootElem = dom.documentElement;
@ -189,20 +168,17 @@ mindplot.XMLMindmapSerializer_Beta.prototype.loadFromDom = function(dom)
var mindmap = new mindplot.Mindmap();
var children = rootElem.childNodes;
for (var i = 0; i < children.length; i++)
{
for (var i = 0; i < children.length; i++) {
var child = children[i];
if (child.nodeType == 1)
{
if (child.nodeType == 1) {
var topic = this._deserializeNode(child, mindmap);
mindmap.addBranch(topic);
}
}
return mindmap;
};
},
mindplot.XMLMindmapSerializer_Beta.prototype._deserializeNode = function(domElem, mindmap)
{
_deserializeNode : function(domElem, mindmap) {
var type = (domElem.getAttribute('central') != null) ? mindplot.NodeModel.CENTRAL_TOPIC_TYPE : mindplot.NodeModel.MAIN_TOPIC_TYPE;
var topic = mindmap.createNode(type);
@ -223,8 +199,7 @@ mindplot.XMLMindmapSerializer_Beta.prototype._deserializeNode = function(domElem
}
var isShrink = domElem.getAttribute('shrink');
if($defined(isShrink))
{
if ($defined(isShrink)) {
topic.setChildrenShrinked(isShrink);
}
@ -232,28 +207,23 @@ mindplot.XMLMindmapSerializer_Beta.prototype._deserializeNode = function(domElem
if ($defined(fontStyle)) {
var font = fontStyle.split(';');
if (font[0])
{
if (font[0]) {
topic.setFontFamily(font[0]);
}
if (font[1])
{
if (font[1]) {
topic.setFontSize(font[1]);
}
if (font[2])
{
if (font[2]) {
topic.setFontColor(font[2]);
}
if (font[3])
{
if (font[3]) {
topic.setFontWeight(font[3]);
}
if (font[4])
{
if (font[4]) {
topic.setFontStyle(font[4]);
}
}
@ -276,11 +246,9 @@ mindplot.XMLMindmapSerializer_Beta.prototype._deserializeNode = function(domElem
//Creating icons and children nodes
var children = domElem.childNodes;
for (var i = 0; i < children.length; i++)
{
for (var i = 0; i < children.length; i++) {
var child = children[i];
if (child.nodeType == 1)
{
if (child.nodeType == 1) {
$assert(child.tagName == "topic" || child.tagName == "icon" || child.tagName == "link" || child.tagName == "note", 'Illegal node type:' + child.tagName);
if (child.tagName == "topic") {
var childTopic = this._deserializeNode(child, mindmap);
@ -297,23 +265,20 @@ mindplot.XMLMindmapSerializer_Beta.prototype._deserializeNode = function(domElem
}
}
}
;
return topic;
};
},
mindplot.XMLMindmapSerializer_Beta.prototype._deserializeIcon = function(domElem, topic)
{
_deserializeIcon : function(domElem, topic) {
return topic.createIcon(domElem.getAttribute("id"));
};
},
mindplot.XMLMindmapSerializer_Beta.prototype._deserializeLink = function(domElem, topic)
{
_deserializeLink : function(domElem, topic) {
return topic.createLink(domElem.getAttribute("url"));
};
},
mindplot.XMLMindmapSerializer_Beta.prototype._deserializeNote = function(domElem, topic)
{
_deserializeNote : function(domElem, topic) {
return topic.createNote(domElem.getAttribute("text"));
};
}});
mindplot.XMLMindmapSerializer_Beta.MAP_ROOT_NODE = 'map';

View File

@ -16,13 +16,9 @@
* limitations under the License.
*/
mindplot.XMLMindmapSerializer_Pela = function()
{
mindplot.XMLMindmapSerializer_Pela = new Class({
};
mindplot.XMLMindmapSerializer_Pela.prototype.toXML = function(mindmap)
{
toXML : function(mindmap) {
$assert(mindmap, "Can not save a null mindmap");
var document = core.Utils.createDocument();
@ -30,13 +26,11 @@ mindplot.XMLMindmapSerializer_Pela.prototype.toXML = function(mindmap)
// Store map attributes ...
var mapElem = document.createElement("map");
var name = mindmap.getId();
if ($defined(name))
{
if ($defined(name)) {
mapElem.setAttribute('name', name);
}
var version = mindmap.getVersion();
if ($defined(version))
{
if ($defined(version)) {
mapElem.setAttribute('version', version);
}
@ -44,8 +38,7 @@ mindplot.XMLMindmapSerializer_Pela.prototype.toXML = function(mindmap)
// Create branches ...
var topics = mindmap.getBranches();
for (var i = 0; i < topics.length; i++)
{
for (var i = 0; i < topics.length; i++) {
var topic = topics[i];
var topicDom = this._topicToXML(document, topic);
mapElem.appendChild(topicDom);
@ -63,18 +56,15 @@ mindplot.XMLMindmapSerializer_Pela.prototype.toXML = function(mindmap)
}
return document;
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._topicToXML = function(document, topic)
{
_topicToXML : function(document, topic) {
var parentTopic = document.createElement("topic");
// Set topic attributes...
if (topic.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE)
{
if (topic.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE) {
parentTopic.setAttribute("central", true);
} else
{
} else {
var parent = topic.getParent();
// if (parent == null || parent.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE)
// {
@ -97,8 +87,7 @@ mindplot.XMLMindmapSerializer_Pela.prototype._topicToXML = function(document, to
parentTopic.setAttribute('shape', shape);
}
if(topic.areChildrenShrinked())
{
if (topic.areChildrenShrinked()) {
parentTopic.setAttribute('shrink', true);
}
@ -124,8 +113,7 @@ mindplot.XMLMindmapSerializer_Pela.prototype._topicToXML = function(document, to
font += (fontStyle ? fontStyle : '') + ';';
if ($defined(fontFamily) || $defined(fontSize) || $defined(fontColor)
|| $defined(fontWeight) || $defined(fontStyle))
{
|| $defined(fontWeight) || $defined(fontStyle)) {
parentTopic.setAttribute('fontStyle', font);
}
@ -141,8 +129,7 @@ mindplot.XMLMindmapSerializer_Pela.prototype._topicToXML = function(document, to
//ICONS
var icons = topic.getIcons();
for (var i = 0; i < icons.length; i++)
{
for (var i = 0; i < icons.length; i++) {
var icon = icons[i];
var iconDom = this._iconToXML(document, icon);
parentTopic.appendChild(iconDom);
@ -150,16 +137,14 @@ mindplot.XMLMindmapSerializer_Pela.prototype._topicToXML = function(document, to
//LINKS
var links = topic.getLinks();
for (var i = 0; i < links.length; i++)
{
for (var i = 0; i < links.length; i++) {
var link = links[i];
var linkDom = this._linkToXML(document, link);
parentTopic.appendChild(linkDom);
}
var notes = topic.getNotes();
for (var i = 0; i < notes.length; i++)
{
for (var i = 0; i < notes.length; i++) {
var note = notes[i];
var noteDom = this._noteToXML(document, note);
parentTopic.appendChild(noteDom);
@ -167,8 +152,7 @@ mindplot.XMLMindmapSerializer_Pela.prototype._topicToXML = function(document, to
//CHILDREN TOPICS
var childTopics = topic.getChildren();
for (var i = 0; i < childTopics.length; i++)
{
for (var i = 0; i < childTopics.length; i++) {
var childTopic = childTopics[i];
var childDom = this._topicToXML(document, childTopic);
parentTopic.appendChild(childDom);
@ -176,30 +160,27 @@ mindplot.XMLMindmapSerializer_Pela.prototype._topicToXML = function(document, to
}
return parentTopic;
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._iconToXML = function(document, icon)
{
_iconToXML : function(document, icon) {
var iconDom = document.createElement("icon");
iconDom.setAttribute('id', icon.getIconType());
return iconDom;
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._linkToXML = function(document, link)
{
_linkToXML : function(document, link) {
var linkDom = document.createElement("link");
linkDom.setAttribute('url', link.getUrl());
return linkDom;
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._noteToXML = function(document, note)
{
_noteToXML : function(document, note) {
var noteDom = document.createElement("note");
noteDom.setAttribute('text', note.getText());
return noteDom;
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._relationshipToXML = function(document,relationship){
_relationshipToXML : function(document, relationship) {
var relationDom = document.createElement("relationship");
relationDom.setAttribute("srcTopicId", relationship.getFromNode());
relationDom.setAttribute("destTopicId", relationship.getToNode());
@ -218,10 +199,9 @@ mindplot.XMLMindmapSerializer_Pela.prototype._relationshipToXML = function(docum
relationDom.setAttribute("endArrow", relationship.getEndArrow());
relationDom.setAttribute("startArrow", relationship.getStartArrow());
return relationDom;
};
},
mindplot.XMLMindmapSerializer_Pela.prototype.loadFromDom = function(dom)
{
loadFromDom : function(dom) {
$assert(dom, "Dom can not be null");
var rootElem = dom.documentElement;
@ -236,11 +216,9 @@ mindplot.XMLMindmapSerializer_Pela.prototype.loadFromDom = function(dom)
mindmap.setVersion(version);
var children = rootElem.childNodes;
for (var i = 0; i < children.length; i++)
{
for (var i = 0; i < children.length; i++) {
var child = children[i];
if (child.nodeType == 1)
{
if (child.nodeType == 1) {
switch (child.tagName) {
case "topic":
var topic = this._deserializeNode(child, mindmap);
@ -256,10 +234,9 @@ mindplot.XMLMindmapSerializer_Pela.prototype.loadFromDom = function(dom)
}
this._idsMap = null;
return mindmap;
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._deserializeNode = function(domElem, mindmap)
{
_deserializeNode : function(domElem, mindmap) {
var type = (domElem.getAttribute('central') != null) ? mindplot.NodeModel.CENTRAL_TOPIC_TYPE : mindplot.NodeModel.MAIN_TOPIC_TYPE;
// Load attributes...
var id = domElem.getAttribute('id');
@ -291,8 +268,7 @@ mindplot.XMLMindmapSerializer_Pela.prototype._deserializeNode = function(domElem
}
var isShrink = domElem.getAttribute('shrink');
if($defined(isShrink))
{
if ($defined(isShrink)) {
topic.setChildrenShrinked(isShrink);
}
@ -300,28 +276,23 @@ mindplot.XMLMindmapSerializer_Pela.prototype._deserializeNode = function(domElem
if ($defined(fontStyle)) {
var font = fontStyle.split(';');
if (font[0])
{
if (font[0]) {
topic.setFontFamily(font[0]);
}
if (font[1])
{
if (font[1]) {
topic.setFontSize(font[1]);
}
if (font[2])
{
if (font[2]) {
topic.setFontColor(font[2]);
}
if (font[3])
{
if (font[3]) {
topic.setFontWeight(font[3]);
}
if (font[4])
{
if (font[4]) {
topic.setFontStyle(font[4]);
}
}
@ -345,11 +316,9 @@ mindplot.XMLMindmapSerializer_Pela.prototype._deserializeNode = function(domElem
//Creating icons and children nodes
var children = domElem.childNodes;
for (var i = 0; i < children.length; i++)
{
for (var i = 0; i < children.length; i++) {
var child = children[i];
if (child.nodeType == 1)
{
if (child.nodeType == 1) {
$assert(child.tagName == "topic" || child.tagName == "icon" || child.tagName == "link" || child.tagName == "note", 'Illegal node type:' + child.tagName);
if (child.tagName == "topic") {
var childTopic = this._deserializeNode(child, mindmap);
@ -368,25 +337,21 @@ mindplot.XMLMindmapSerializer_Pela.prototype._deserializeNode = function(domElem
}
;
return topic;
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._deserializeIcon = function(domElem, topic)
{
_deserializeIcon : function(domElem, topic) {
return topic.createIcon(domElem.getAttribute("id"));
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._deserializeLink = function(domElem, topic)
{
_deserializeLink : function(domElem, topic) {
return topic.createLink(domElem.getAttribute("url"));
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._deserializeNote = function(domElem, topic)
{
_deserializeNote : function(domElem, topic) {
return topic.createNote(domElem.getAttribute("text"));
};
},
mindplot.XMLMindmapSerializer_Pela.prototype._deserializeRelationship = function(domElement, mindmap)
{
_deserializeRelationship : function(domElement, mindmap) {
var srcId = domElement.getAttribute("srcTopicId");
var destId = domElement.getAttribute("destTopicId");
var lineType = domElement.getAttribute("lineType");
@ -409,6 +374,7 @@ mindplot.XMLMindmapSerializer_Pela.prototype._deserializeRelationship = function
model.setEndArrow(endArrow == "true");
model.setStartArrow(startArrow == "true");
return model;
};
}
});
mindplot.XMLMindmapSerializer_Pela.MAP_ROOT_NODE = 'map';

View File

@ -39,7 +39,7 @@ mindplot.util.Shape =
{
$assert(rectCenterPoint, 'rectCenterPoint can not be null');
$assert(rectSize, 'rectSize can not be null');
$assert($defined(isAtRight), 'isRight can not be null');
$assert(isAtRight, 'isRight can not be null');
// Node is placed at the right ?
var result = new core.Point();