mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
Revert "adding multiple line support editor and in nodes"
This reverts commit 5aa6775a85
.
This commit is contained in:
parent
fff2db0ab8
commit
b678344991
@ -24,9 +24,7 @@ mindplot.ActionIcon = function(topic, url) {
|
|||||||
objects.extend(mindplot.ActionIcon, mindplot.Icon);
|
objects.extend(mindplot.ActionIcon, mindplot.Icon);
|
||||||
|
|
||||||
mindplot.ActionIcon.prototype.initialize = function() {
|
mindplot.ActionIcon.prototype.initialize = function() {
|
||||||
var pos = this.getImage.getPosition();
|
|
||||||
var size = this.getSize();
|
|
||||||
this._position = new core.Point(pos.x - size.width/2, pos.y - size.height/2);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.ActionIcon.prototype.getNode = function(){
|
mindplot.ActionIcon.prototype.getNode = function(){
|
||||||
@ -35,14 +33,9 @@ mindplot.ActionIcon.prototype.getNode = function(){
|
|||||||
|
|
||||||
mindplot.ActionIcon.prototype.setPosition = function(x,y){
|
mindplot.ActionIcon.prototype.setPosition = function(x,y){
|
||||||
var size = this.getSize();
|
var size = this.getSize();
|
||||||
this._position = new core.Point(x,y);
|
|
||||||
this.getImage().setPosition(x-size.width/2, y-size.height/2);
|
this.getImage().setPosition(x-size.width/2, y-size.height/2);
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.ActionIcon.prototype.getPosition = function(){
|
|
||||||
return this._position;
|
|
||||||
};
|
|
||||||
|
|
||||||
mindplot.ActionIcon.prototype.addEventListener = function(event, fn){
|
mindplot.ActionIcon.prototype.addEventListener = function(event, fn){
|
||||||
this.getImage().addEventListener(event, fn);
|
this.getImage().addEventListener(event, fn);
|
||||||
};
|
};
|
||||||
|
@ -29,7 +29,7 @@ mindplot.ConnectionLine = function(sourceNode, targetNode, lineType)
|
|||||||
var line;
|
var line;
|
||||||
if (targetNode.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE)
|
if (targetNode.getType() == mindplot.NodeModel.CENTRAL_TOPIC_TYPE)
|
||||||
{
|
{
|
||||||
line = this._createLine(lineType,mindplot.ConnectionLine.SIMPLE_CURVED);
|
line = this._createLine(lineType,mindplot.ConnectionLine.CURVED);
|
||||||
// line = new web2d.Line();
|
// line = new web2d.Line();
|
||||||
if(line.getType()=="CurvedLine"){
|
if(line.getType()=="CurvedLine"){
|
||||||
var ctrlPoints = this._getCtrlPoints(sourceNode, targetNode);
|
var ctrlPoints = this._getCtrlPoints(sourceNode, targetNode);
|
||||||
@ -86,7 +86,7 @@ mindplot.ConnectionLine.prototype._createLine = function(lineType, defaultStyle)
|
|||||||
|
|
||||||
mindplot.ConnectionLine.getStrokeColor = function()
|
mindplot.ConnectionLine.getStrokeColor = function()
|
||||||
{
|
{
|
||||||
return '#495879';
|
return '#c8e794';
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.ConnectionLine.prototype.setVisibility = function(value)
|
mindplot.ConnectionLine.prototype.setVisibility = function(value)
|
||||||
|
@ -189,12 +189,10 @@ mindplot.IconGroup.prototype.updateIconGroupPosition = function() {
|
|||||||
|
|
||||||
mindplot.IconGroup.prototype._calculateOffsets = function() {
|
mindplot.IconGroup.prototype._calculateOffsets = function() {
|
||||||
var offset = this.options.topic.getOffset();
|
var offset = this.options.topic.getOffset();
|
||||||
/*var text = this.options.topic.getTextShape();
|
var text = this.options.topic.getTextShape();
|
||||||
var sizeHeight = text.getHtmlFontSize();
|
var sizeHeight = text.getHtmlFontSize();
|
||||||
var yOffset = offset;
|
var yOffset = offset;
|
||||||
var shape = this.options.topic.getShapeType();
|
var shape = this.options.topic.getShapeType();
|
||||||
yOffset = text.getPosition().y + (sizeHeight - 18)/2 + 1;*/
|
yOffset = text.getPosition().y + (sizeHeight - 18)/2 + 1;
|
||||||
var height = this.options.topic.getSize().height;
|
|
||||||
var yOffset = (height/2)-this.getSize().height/2;
|
|
||||||
return {x:offset, y:yOffset};
|
return {x:offset, y:yOffset};
|
||||||
};
|
};
|
@ -90,21 +90,8 @@ mindplot.RichTextEditor = mindplot.TextEditor.extend({
|
|||||||
}
|
}
|
||||||
}.bind(this);
|
}.bind(this);
|
||||||
_animEffect = effect.periodical(10);
|
_animEffect = effect.periodical(10);
|
||||||
var text;
|
$(this.inputText).value = core.Utils.isDefined(this.initialText)&& this.initialText!=""? this.initialText: node.getText();
|
||||||
this._selectText=true;
|
this._editor = new nicEditor({iconsPath: '../images/nicEditorIcons.gif', buttonList : ['bold','italic','underline','removeformat','forecolor', 'fontSize', 'fontFamily', 'xhtml']}).panelInstance("inputText2");
|
||||||
if(this.initialText && this.initialText!="")
|
|
||||||
{
|
|
||||||
text = this.initialText;
|
|
||||||
this.initialText=null;
|
|
||||||
this._selectText=false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
text = node.getText();
|
|
||||||
$(this.inputText).value = text;
|
|
||||||
this._editor = new nicEditor({iconsPath: '../images/nicEditorIcons.gif', buttonList : ['bold','italic','underline','ol','ul','image','link','unlink','forecolor','removeformat','fontSize','fontFamily'], maxHeight:152}).panelInstance("inputText2");
|
|
||||||
this._editor.addEvent('key',function(instance,event){
|
|
||||||
console.log("key");
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
init:function(node){
|
init:function(node){
|
||||||
this._currentNode = node;
|
this._currentNode = node;
|
||||||
@ -112,21 +99,7 @@ mindplot.RichTextEditor = mindplot.TextEditor.extend({
|
|||||||
$(this._myOverlay.setStyle('display','block'));
|
$(this._myOverlay.setStyle('display','block'));
|
||||||
inst = this._editor.instanceById("inputText2");
|
inst = this._editor.instanceById("inputText2");
|
||||||
inst.elm.focus();
|
inst.elm.focus();
|
||||||
if(this._selectText){
|
|
||||||
document.execCommand('selectAll', false, null);
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
var length = $(this.inputText).value.length;
|
|
||||||
if (document.selection) {
|
|
||||||
var sel = document.selection.createRange();
|
|
||||||
sel.moveStart('character', length);
|
|
||||||
sel.select();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
sel = window.getSelection();
|
|
||||||
sel.collapse(inst.elm.firstChild, length);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//becarefull this._editor is not mootools!!
|
//becarefull this._editor is not mootools!!
|
||||||
@ -137,6 +110,7 @@ mindplot.RichTextEditor = mindplot.TextEditor.extend({
|
|||||||
if(text!=this._text){
|
if(text!=this._text){
|
||||||
this.applyChanges = true;
|
this.applyChanges = true;
|
||||||
}
|
}
|
||||||
|
console.log('bye');
|
||||||
this.lostFocusListener();
|
this.lostFocusListener();
|
||||||
this._editor.removeInstance("inputText2");
|
this._editor.removeInstance("inputText2");
|
||||||
this._editor.destruct();
|
this._editor.destruct();
|
||||||
|
@ -192,7 +192,7 @@ mindplot.TextEditor = new Class({
|
|||||||
text = nodeText.getText();
|
text = nodeText.getText();
|
||||||
|
|
||||||
var font = nodeText.getFont();
|
var font = nodeText.getFont();
|
||||||
font.size = nodeText.getSize();
|
font.size = nodeText.getHtmlFontSize();
|
||||||
font.color = nodeText.getColor();
|
font.color = nodeText.getColor();
|
||||||
|
|
||||||
this.setStyle(font);
|
this.setStyle(font);
|
||||||
|
@ -189,7 +189,7 @@ mindplot.Topic.prototype.buildShape = function(attributes, type)
|
|||||||
}
|
}
|
||||||
else if (type == mindplot.NodeModel.SHAPE_TYPE_LINE)
|
else if (type == mindplot.NodeModel.SHAPE_TYPE_LINE)
|
||||||
{
|
{
|
||||||
result = new web2d.Line({strokeColor:"#495879",strokeWidth:1, strokeOpacity:1});
|
result = new web2d.Line({strokeColor:"#c8e794",strokeWidth:1, strokeOpacity:1});
|
||||||
result.setSize = function(width, height)
|
result.setSize = function(width, height)
|
||||||
{
|
{
|
||||||
this.size = {width:width, height:height};
|
this.size = {width:width, height:height};
|
||||||
@ -440,7 +440,7 @@ mindplot.Topic.prototype.getRelationships = function(){
|
|||||||
|
|
||||||
mindplot.Topic.prototype._buildTextShape = function(disableEventsListeners)
|
mindplot.Topic.prototype._buildTextShape = function(disableEventsListeners)
|
||||||
{
|
{
|
||||||
var result = new web2d.HtmlBox();
|
var result = new web2d.Text();
|
||||||
var font = {};
|
var font = {};
|
||||||
|
|
||||||
var family = this.getFontFamily();
|
var family = this.getFontFamily();
|
||||||
@ -1174,7 +1174,7 @@ mindplot.Topic.prototype.setSize = function(size, force, updatePosition)
|
|||||||
// Update the figure position(ej: central topic must be centered) and children position.
|
// Update the figure position(ej: central topic must be centered) and children position.
|
||||||
this._updatePositionOnChangeSize(oldSize, size, updatePosition);
|
this._updatePositionOnChangeSize(oldSize, size, updatePosition);
|
||||||
|
|
||||||
mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeResizeEvent,[this, oldSize]);
|
mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.NodeResizeEvent,[this]);
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -1359,10 +1359,11 @@ mindplot.Topic.prototype.updateNode = function(updatePosition)
|
|||||||
var textShape = this.getTextShape();
|
var textShape = this.getTextShape();
|
||||||
var sizeWidth = textShape.getWidth();
|
var sizeWidth = textShape.getWidth();
|
||||||
var sizeHeight = textShape.getHeight();
|
var sizeHeight = textShape.getHeight();
|
||||||
|
var font = textShape.getFont();
|
||||||
var iconOffset = this.getIconOffset();
|
var iconOffset = this.getIconOffset();
|
||||||
var height = sizeHeight + this._offset;
|
var height = sizeHeight + this._offset;
|
||||||
var width = sizeWidth + this._offset*2 + iconOffset +2;
|
var width = sizeWidth + this._offset*2 + iconOffset +2;
|
||||||
var pos = height/2 - sizeHeight/2;
|
var pos = this._offset /2 -1;
|
||||||
if(this.getShapeType()==mindplot.NodeModel.SHAPE_TYPE_ELIPSE){
|
if(this.getShapeType()==mindplot.NodeModel.SHAPE_TYPE_ELIPSE){
|
||||||
var factor = 0.25;
|
var factor = 0.25;
|
||||||
height = (width*factor<height?height:width*factor);
|
height = (width*factor<height?height:width*factor);
|
||||||
@ -1378,13 +1379,6 @@ mindplot.Topic.prototype.updateNode = function(updatePosition)
|
|||||||
var iconGroup = this.getIconGroup();
|
var iconGroup = this.getIconGroup();
|
||||||
if(core.Utils.isDefined(iconGroup))
|
if(core.Utils.isDefined(iconGroup))
|
||||||
iconGroup.updateIconGroupPosition();
|
iconGroup.updateIconGroupPosition();
|
||||||
|
|
||||||
//Positionate Helpers
|
|
||||||
this._helpers.forEach(function(helper){
|
|
||||||
var pos = helper.getPosition();
|
|
||||||
var x = width/2;
|
|
||||||
helper.setPosition(x, pos.y);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ mindplot.XMLMindmapSerializer_Pela.prototype._topicToXML = function(document, to
|
|||||||
|
|
||||||
var text = topic.getText();
|
var text = topic.getText();
|
||||||
if (core.Utils.isDefined(text)) {
|
if (core.Utils.isDefined(text)) {
|
||||||
parentTopic.setAttribute('text', "<![CDATA["+text+"]]");
|
parentTopic.setAttribute('text', text);
|
||||||
}
|
}
|
||||||
|
|
||||||
var shape = topic.getShapeType();
|
var shape = topic.getShapeType();
|
||||||
@ -276,9 +276,6 @@ mindplot.XMLMindmapSerializer_Pela.prototype._deserializeNode = function(domElem
|
|||||||
|
|
||||||
var text = domElem.getAttribute('text');
|
var text = domElem.getAttribute('text');
|
||||||
if (core.Utils.isDefined(text)) {
|
if (core.Utils.isDefined(text)) {
|
||||||
if(text.indexOf("<![CDATA[")!=-1){
|
|
||||||
text = text.substr(9,text.length-9-2);
|
|
||||||
}
|
|
||||||
topic.setText(text);
|
topic.setText(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ mindplot.layoutManagers.BaseLayoutManager = new Class({
|
|||||||
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeRepositionateEvent,this._nodeRepositionateEvent.bind(this));
|
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeRepositionateEvent,this._nodeRepositionateEvent.bind(this));
|
||||||
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeShrinkEvent,this._nodeShrinkEvent.bind(this));
|
mindplot.EventBus.instance.addEvent(mindplot.EventBus.events.NodeShrinkEvent,this._nodeShrinkEvent.bind(this));
|
||||||
},
|
},
|
||||||
_nodeResizeEvent:function(node, oldSize){
|
_nodeResizeEvent:function(node){
|
||||||
},
|
},
|
||||||
_nodeMoveEvent:function(node){
|
_nodeMoveEvent:function(node){
|
||||||
var modifiedTopics = [];
|
var modifiedTopics = [];
|
||||||
|
@ -5,19 +5,6 @@ mindplot.layoutManagers.FreeMindLayoutManager = mindplot.layoutManagers.BaseLayo
|
|||||||
initialize:function(designer, options){
|
initialize:function(designer, options){
|
||||||
this.parent(designer, options);
|
this.parent(designer, options);
|
||||||
},
|
},
|
||||||
_nodeResizeEvent:function(node, oldSize){
|
|
||||||
var size = node.getSize();
|
|
||||||
var sign = -Math.sign(node.getPosition().x);
|
|
||||||
var delta = new core.Point((size.width-oldSize.width)*sign, (-size.height + oldSize.height)/2);
|
|
||||||
if(node.getParent()!=null){
|
|
||||||
var board = this.getTopicBoardForTopic(node.getParent());
|
|
||||||
var result = board.findNodeEntryIndex(node);
|
|
||||||
var entry = result.table[result.index];
|
|
||||||
entry.updateMinimumMargin();
|
|
||||||
}
|
|
||||||
this._updateChildrenBoards(node, delta, []);
|
|
||||||
this._updateBoard(node,[]);
|
|
||||||
},
|
|
||||||
_nodeConnectEvent:function(targetNode, node){
|
_nodeConnectEvent:function(targetNode, node){
|
||||||
if(core.Utils.isDefined(node.relationship)){
|
if(core.Utils.isDefined(node.relationship)){
|
||||||
this._movingNode(targetNode, node);
|
this._movingNode(targetNode, node);
|
||||||
@ -273,16 +260,11 @@ mindplot.layoutManagers.FreeMindLayoutManager = mindplot.layoutManagers.BaseLayo
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
_updateChildrenBoards:function(node, delta, modifiedTopics){
|
_updateChildrenBoards:function(node, delta, modifiedTopics){
|
||||||
|
|
||||||
if(this._isCentralTopic(node)){
|
|
||||||
delta.x = delta.x/2;
|
|
||||||
}
|
|
||||||
var board = this.getTopicBoardForTopic(node);
|
var board = this.getTopicBoardForTopic(node);
|
||||||
board._positionTables.forEach(function(topics){
|
var topics = board._getTableForNode(null);
|
||||||
for(var i=0; i<topics.length; i++){
|
for(var i=0; i<topics.length; i++){
|
||||||
board._updateEntryPos(topics[i],delta, modifiedTopics, false);
|
board._updateEntryPos(topics[i],delta, modifiedTopics, false);
|
||||||
}
|
}
|
||||||
});
|
|
||||||
},
|
},
|
||||||
addHelpers:function(node){
|
addHelpers:function(node){
|
||||||
if (node.getType() != mindplot.NodeModel.CENTRAL_TOPIC_TYPE)
|
if (node.getType() != mindplot.NodeModel.CENTRAL_TOPIC_TYPE)
|
||||||
@ -503,7 +485,7 @@ mindplot.layoutManagers.FreeMindLayoutManager = mindplot.layoutManagers.BaseLayo
|
|||||||
pos.y = Math.round(pos.y);
|
pos.y = Math.round(pos.y);
|
||||||
var nodePos = this.getPosition();
|
var nodePos = this.getPosition();
|
||||||
//if it is on the child half side, or it is central topic add it as child
|
//if it is on the child half side, or it is central topic add it as child
|
||||||
if(!this.areChildrenShrinked() && (layoutManager._isCentralTopic(this) || this.getParent()==null || ((Math.sign(nodePos.x)>0 && pos.x>nodePos.x) || (Math.sign(nodePos.x)<0 && pos.x<nodePos.x)))){
|
if(layoutManager._isCentralTopic(this) || this.getParent()==null || ((Math.sign(nodePos.x)>0 && pos.x>nodePos.x) || (Math.sign(nodePos.x)<0 && pos.x<nodePos.x))){
|
||||||
layoutManager._updateIndicatorShapes(this, mindplot.layoutManagers.FreeMindLayoutManager.RECONNECT_SHAPE_CHILD, pos);
|
layoutManager._updateIndicatorShapes(this, mindplot.layoutManagers.FreeMindLayoutManager.RECONNECT_SHAPE_CHILD, pos);
|
||||||
}else{
|
}else{
|
||||||
//is a sibling. if mouse in top half sibling goes above this one
|
//is a sibling. if mouse in top half sibling goes above this one
|
||||||
|
@ -19,7 +19,8 @@ mindplot.layoutManagers.boards.freeMindBoards.Entry = new Class({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
this._DEFAULT_GAP = 10;
|
this._DEFAULT_GAP = 10;
|
||||||
this.updateMinimumMargin();
|
var height = this.getNode().getSize().height;
|
||||||
|
this._minimalMargin = this._DEFAULT_GAP + height/2;
|
||||||
this._marginTop = this._minimalMargin;
|
this._marginTop = this._minimalMargin;
|
||||||
this._marginBottom = this._minimalMargin;
|
this._marginBottom = this._minimalMargin;
|
||||||
this._marginTopChildren=0;
|
this._marginTopChildren=0;
|
||||||
@ -84,15 +85,5 @@ mindplot.layoutManagers.boards.freeMindBoards.Entry = new Class({
|
|||||||
},
|
},
|
||||||
getTotalMarginBottom:function(){
|
getTotalMarginBottom:function(){
|
||||||
return (this._node.areChildrenShrinked()?0:this._marginBottomChildren) + this._marginBottom;
|
return (this._node.areChildrenShrinked()?0:this._marginBottomChildren) + this._marginBottom;
|
||||||
},
|
|
||||||
updateMinimumMargin:function(){
|
|
||||||
var height = this.getNode().getSize().height;
|
|
||||||
this._minimalMargin = this._DEFAULT_GAP + height/2;
|
|
||||||
if(this.getMarginTop()<this._minimalMargin){
|
|
||||||
this.setMarginTop(this._minimalMargin);
|
|
||||||
}
|
|
||||||
if(this.getMarginBottom()<this._minimalMargin){
|
|
||||||
this.setMarginBottom(this._minimalMargin);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
@ -58,7 +58,6 @@
|
|||||||
<include>${basedir}/target/tmp/peer/svg/CurvedLinePeer-min.js</include>
|
<include>${basedir}/target/tmp/peer/svg/CurvedLinePeer-min.js</include>
|
||||||
<include>${basedir}/target/tmp/peer/svg/ArrowPeer-min.js</include>
|
<include>${basedir}/target/tmp/peer/svg/ArrowPeer-min.js</include>
|
||||||
<include>${basedir}/target/tmp/peer/svg/TextPeer-min.js</include>
|
<include>${basedir}/target/tmp/peer/svg/TextPeer-min.js</include>
|
||||||
<include>${basedir}/target/tmp/peer/svg/HtmlBoxPeer-min.js</include>
|
|
||||||
<include>${basedir}/target/tmp/peer/svg/WorkspacePeer-min.js</include>
|
<include>${basedir}/target/tmp/peer/svg/WorkspacePeer-min.js</include>
|
||||||
<include>${basedir}/target/tmp/peer/svg/GroupPeer-min.js</include>
|
<include>${basedir}/target/tmp/peer/svg/GroupPeer-min.js</include>
|
||||||
<include>${basedir}/target/tmp/peer/svg/RectPeer-min.js</include>
|
<include>${basedir}/target/tmp/peer/svg/RectPeer-min.js</include>
|
||||||
@ -80,7 +79,6 @@
|
|||||||
<include>${basedir}/target/tmp/Arrow-min.js</include>
|
<include>${basedir}/target/tmp/Arrow-min.js</include>
|
||||||
<include>${basedir}/target/tmp/Rect-min.js</include>
|
<include>${basedir}/target/tmp/Rect-min.js</include>
|
||||||
<include>${basedir}/target/tmp/Text-min.js</include>
|
<include>${basedir}/target/tmp/Text-min.js</include>
|
||||||
<include>${basedir}/target/tmp/HtmlBox-min.js</include>
|
|
||||||
<include>${basedir}/target/tmp/Toolkit-min.js</include>
|
<include>${basedir}/target/tmp/Toolkit-min.js</include>
|
||||||
<include>${basedir}/target/tmp/Workspace-min.js</include>
|
<include>${basedir}/target/tmp/Workspace-min.js</include>
|
||||||
</includes>
|
</includes>
|
||||||
|
@ -1,104 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright [2011] [wisemapping]
|
|
||||||
*
|
|
||||||
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
||||||
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
||||||
* "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
|
|
||||||
*
|
|
||||||
* http://www.wisemapping.org/license
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
web2d.HtmlBox = function(attributes)
|
|
||||||
{
|
|
||||||
var peer = web2d.peer.Toolkit.createHtmlBox();
|
|
||||||
web2d.Element.call(this, peer, attributes);
|
|
||||||
};
|
|
||||||
objects.extend(web2d.HtmlBox, web2d.Element);
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.getType = function()
|
|
||||||
{
|
|
||||||
return "HtmlBox";
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setText = function(text)
|
|
||||||
{
|
|
||||||
this._peer.setText(text);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.getText = function()
|
|
||||||
{
|
|
||||||
return this._peer.getText();
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setFont = function(font, size, style, weight)
|
|
||||||
{
|
|
||||||
this._peer.setFont(font, size, style, weight);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setColor = function(color)
|
|
||||||
{
|
|
||||||
this._peer.setColor(color);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.getColor = function()
|
|
||||||
{
|
|
||||||
return this._peer.getColor();
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setStyle = function(style)
|
|
||||||
{
|
|
||||||
this._peer.setStyle(style);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setWeight = function(weight)
|
|
||||||
{
|
|
||||||
this._peer.setWeight(weight);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setFontFamily = function(family)
|
|
||||||
{
|
|
||||||
this._peer.setFontFamily(family);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.getFont = function()
|
|
||||||
{
|
|
||||||
return this._peer.getFont();
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setSize = function(size)
|
|
||||||
{
|
|
||||||
this._peer.setSize(size);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.getWidth = function()
|
|
||||||
{
|
|
||||||
return parseInt(this._peer.getWidth());
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.getHeight = function()
|
|
||||||
{
|
|
||||||
return parseInt(this._peer.getHeight());
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setWidth = function(width)
|
|
||||||
{
|
|
||||||
return this._peer.setWidth(width);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setHeight = function(height)
|
|
||||||
{
|
|
||||||
return this._peer.setHeight(height);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.HtmlBox.prototype.setTextSize = function()
|
|
||||||
{
|
|
||||||
return this._peer.updateSize();
|
|
||||||
};
|
|
@ -53,10 +53,6 @@ web2d.peer.ToolkitSVG =
|
|||||||
{
|
{
|
||||||
return new web2d.peer.svg.TextPeer();
|
return new web2d.peer.svg.TextPeer();
|
||||||
},
|
},
|
||||||
createHtmlBox: function ()
|
|
||||||
{
|
|
||||||
return new web2d.peer.svg.HtmlBoxPeer();
|
|
||||||
},
|
|
||||||
createImage: function ()
|
createImage: function ()
|
||||||
{
|
{
|
||||||
return new web2d.peer.svg.ImagePeer();
|
return new web2d.peer.svg.ImagePeer();
|
||||||
|
@ -20,7 +20,7 @@ web2d.peer.svg.CurvedLinePeer = function()
|
|||||||
{
|
{
|
||||||
var svgElement = window.document.createElementNS(this.svgNamespace, 'path');
|
var svgElement = window.document.createElementNS(this.svgNamespace, 'path');
|
||||||
web2d.peer.svg.ElementPeer.call(this, svgElement);
|
web2d.peer.svg.ElementPeer.call(this, svgElement);
|
||||||
this._style={fill:'gray'};
|
this._style={fill:'#c8e794'};
|
||||||
this._updateStyle();
|
this._updateStyle();
|
||||||
this._customControlPoint_1 = false;
|
this._customControlPoint_1 = false;
|
||||||
this._customControlPoint_2 = false;
|
this._customControlPoint_2 = false;
|
||||||
|
@ -1,178 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright [2011] [wisemapping]
|
|
||||||
*
|
|
||||||
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
||||||
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
||||||
* "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
|
|
||||||
*
|
|
||||||
* http://www.wisemapping.org/license
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer = function()
|
|
||||||
{
|
|
||||||
var svgElement = window.document.createElementNS(this.svgNamespace, 'foreignObject');
|
|
||||||
web2d.peer.svg.ElementPeer.call(this, svgElement);
|
|
||||||
this._native.setAttribute("focusable", "true");
|
|
||||||
svgElement.setAttribute('width',1);
|
|
||||||
svgElement.setAttribute('height',1);
|
|
||||||
$(svgElement).setAttribute("x",0);
|
|
||||||
$(svgElement).setAttribute("y",0);
|
|
||||||
|
|
||||||
this._position = {x:0,y:0};
|
|
||||||
this._font = new web2d.Font("Arial", this);
|
|
||||||
var body = window.document.createElementNS("http://www.w3.org/1999/xhtml",'body');
|
|
||||||
this._body = window.document.createElementNS("http://www.w3.org/1999/xhtml",'div');
|
|
||||||
$(body).setStyle("backgroundColor","transparent");
|
|
||||||
$(this._body).setStyles({position:"absolute", left:0, top:0, whiteSpace:"nowrap"});
|
|
||||||
body.appendChild(this._body);
|
|
||||||
this._native.appendChild(body);
|
|
||||||
};
|
|
||||||
|
|
||||||
objects.extend(web2d.peer.svg.HtmlBoxPeer, web2d.peer.svg.ElementPeer);
|
|
||||||
|
|
||||||
//todo: use ths method to specify the maximum size of the text box
|
|
||||||
/*web2d.web2d.peer.svg.HtmlBoxPeer.prototype.setSize = function(width, height)
|
|
||||||
{
|
|
||||||
web2d.web2d.peer.svg.HtmlBoxPeer.superClass.setSize.call(this,width,height);
|
|
||||||
this._native.setAttribute('rx', width / 2);
|
|
||||||
this._native.setAttribute('ry', height /ose 2);
|
|
||||||
};
|
|
||||||
*/
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.appendChild = function(element)
|
|
||||||
{
|
|
||||||
this._native.appendChild(element._native);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.setText = function(text)
|
|
||||||
{
|
|
||||||
var child = this._body.firstChild;
|
|
||||||
if (core.Utils.isDefined(child))
|
|
||||||
{
|
|
||||||
this._body.removeChild(child);
|
|
||||||
}
|
|
||||||
this._text = text;
|
|
||||||
this._body.innerHTML=text;
|
|
||||||
this.updateSize.delay(1, this);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.getText = function()
|
|
||||||
{
|
|
||||||
return this._text;
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.setPosition = function(x, y)
|
|
||||||
{
|
|
||||||
this._position = {x:x, y:y};
|
|
||||||
$(this._native).setAttribute('y', y);
|
|
||||||
$(this._native).setAttribute('x', x);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.getPosition = function()
|
|
||||||
{
|
|
||||||
return this._position;
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.setFont = function(font, size, style, weight)
|
|
||||||
{
|
|
||||||
if (core.Utils.isDefined(font))
|
|
||||||
{
|
|
||||||
this._font = new web2d.Font(font, this);
|
|
||||||
}
|
|
||||||
if (core.Utils.isDefined(style))
|
|
||||||
{
|
|
||||||
this._font.setStyle(style);
|
|
||||||
}
|
|
||||||
if (core.Utils.isDefined(weight))
|
|
||||||
{
|
|
||||||
this._font.setWeight(weight);
|
|
||||||
}
|
|
||||||
if (core.Utils.isDefined(size))
|
|
||||||
{
|
|
||||||
this._font.setSize(size);
|
|
||||||
}
|
|
||||||
this._updateFontStyle();
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype._updateFontStyle = function()
|
|
||||||
{
|
|
||||||
$(this._body).setStyles({fontFamily: this._font.getFontFamily(), fontSize: this._font.getGraphSize(), fontStyle: this._font.getStyle(), fontWeight: this._font.getWeight()});
|
|
||||||
|
|
||||||
};
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.setColor = function(color)
|
|
||||||
{
|
|
||||||
$(this._body).setStyle('color', color);
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.getColor = function()
|
|
||||||
{
|
|
||||||
return $(this._body).getStyle('color');
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.setStyle = function (style)
|
|
||||||
{
|
|
||||||
this._font.setStyle(style);
|
|
||||||
this._updateFontStyle();
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.setWeight = function (weight)
|
|
||||||
{
|
|
||||||
this._font.setWeight(weight);
|
|
||||||
this._updateFontStyle();
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.setFontFamily = function (family)
|
|
||||||
{
|
|
||||||
var oldFont = this._font;
|
|
||||||
this._font = new web2d.Font(family, this);
|
|
||||||
this._font.setSize(oldFont.getSize());
|
|
||||||
this._font.setStyle(oldFont.getStyle());
|
|
||||||
this._font.setWeight(oldFont.getWeight());
|
|
||||||
this._updateFontStyle();
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.getFont = function ()
|
|
||||||
{
|
|
||||||
return {
|
|
||||||
font:this._font.getFont(),
|
|
||||||
size:parseInt(this._font.getSize()),
|
|
||||||
style:this._font.getStyle(),
|
|
||||||
weight:this._font.getWeight()
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.setSize = function (size)
|
|
||||||
{
|
|
||||||
this._font.setSize(size);
|
|
||||||
this._updateFontStyle();
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.getWidth = function ()
|
|
||||||
{
|
|
||||||
var scale = web2d.peer.utils.TransformUtil.workoutScale(this);
|
|
||||||
var width = $(this._body).getSize().size.x;
|
|
||||||
return width*scale.width*3/4;
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.getHeight = function ()
|
|
||||||
{
|
|
||||||
var scale = web2d.peer.utils.TransformUtil.workoutScale(this);
|
|
||||||
var height = $(this._body).getSize().size.y;
|
|
||||||
return height*scale.height*3/4;
|
|
||||||
};
|
|
||||||
|
|
||||||
web2d.peer.svg.HtmlBoxPeer.prototype.updateSize = function()
|
|
||||||
{
|
|
||||||
var width = this.getWidth();
|
|
||||||
this._native.setAttribute("width", width>1?width:1);
|
|
||||||
var height = this.getHeight();
|
|
||||||
this._native.setAttribute("height", height>1?height:1);
|
|
||||||
};
|
|
@ -443,7 +443,7 @@
|
|||||||
<include>help.js</include>
|
<include>help.js</include>
|
||||||
<include>helpPanel.js</include>
|
<include>helpPanel.js</include>
|
||||||
<include>IconPanel.js</include>
|
<include>IconPanel.js</include>
|
||||||
<include>nicEdit.js</include>
|
<!--<include>nicEdit.js</include>-->
|
||||||
</includes>
|
</includes>
|
||||||
</aggregation>
|
</aggregation>
|
||||||
</aggregations>
|
</aggregations>
|
||||||
|
@ -737,14 +737,6 @@ div#toolbar .relationshiplabel{
|
|||||||
width:56px;
|
width:56px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mindplot ul{
|
|
||||||
list-style:disc inside none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mindplot ol{
|
|
||||||
list-style:decimal inside none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nicEdit-main {
|
.nicEdit-main {
|
||||||
outline:none;
|
outline:none;
|
||||||
}
|
}
|
@ -399,11 +399,11 @@ var nicEditor = bkClass.extend({
|
|||||||
selectCheck : function(e,t) {
|
selectCheck : function(e,t) {
|
||||||
var found = false;
|
var found = false;
|
||||||
do{
|
do{
|
||||||
if(t.className && t.className.indexOf && (t.className.indexOf('nicEdit') != -1 || t.className.indexOf('nicEdit-mainContainer') != -1)) {
|
if(t.className && t.className.indexOf && t.className.indexOf('nicEdit') != -1) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} while(t = t.parentNode);
|
} while(t = t.parentNode);
|
||||||
this.fireEvent('blur',this.selectedInstance,t);
|
this.fireEvent('blur',this.<selectedInstance,t);
|
||||||
this.lastSelectedInstance = this.selectedInstance;
|
this.lastSelectedInstance = this.selectedInstance;
|
||||||
this.selectedInstance = null;
|
this.selectedInstance = null;
|
||||||
return false;
|
return false;
|
||||||
@ -433,7 +433,7 @@ var nicEditorInstance = bkClass.extend({
|
|||||||
var ie7s = (bkLib.isMSIE && !((typeof document.body.style.maxHeight != "undefined") && document.compatMode == "CSS1Compat"))
|
var ie7s = (bkLib.isMSIE && !((typeof document.body.style.maxHeight != "undefined") && document.compatMode == "CSS1Compat"))
|
||||||
var s = {width: newX+'px', border : 0, overflowY : 'auto', overflowX: 'hidden' };
|
var s = {width: newX+'px', border : 0, overflowY : 'auto', overflowX: 'hidden' };
|
||||||
s[(ie7s) ? 'height' : 'maxHeight'] = (this.ne.options.maxHeight) ? this.ne.options.maxHeight+'px' : null;
|
s[(ie7s) ? 'height' : 'maxHeight'] = (this.ne.options.maxHeight) ? this.ne.options.maxHeight+'px' : null;
|
||||||
this.editorContain = new bkElement('DIV').setStyle(s).addClass('nicEdit-mainContainer').appendBefore(e);
|
this.editorContain = new bkElement('DIV').setStyle(s).appendBefore(e);
|
||||||
var editorElm = new bkElement('DIV').setStyle({width : (newX-8)+'px', margin: '4px', minHeight : newY+'px'}).addClass('main').appendTo(this.editorContain);
|
var editorElm = new bkElement('DIV').setStyle({width : (newX-8)+'px', margin: '4px', minHeight : newY+'px'}).addClass('main').appendTo(this.editorContain);
|
||||||
|
|
||||||
e.setStyle({display : 'none'});
|
e.setStyle({display : 'none'});
|
||||||
@ -1149,7 +1149,7 @@ var nicEditorSelect = bkClass.extend({
|
|||||||
});
|
});
|
||||||
|
|
||||||
var nicEditorFontSizeSelect = nicEditorSelect.extend({
|
var nicEditorFontSizeSelect = nicEditorSelect.extend({
|
||||||
sel : {1 : '1 (6pt)', 2 : '2 (8pt)', 3 : '3 (10pt)', 4 : '4 (15pt)'},
|
sel : {1 : '1 (8pt)', 2 : '2 (10pt)', 3 : '3 (12pt)', 4 : '4 (14pt)', 5 : '5 (18pt)', 6 : '6 (24pt)'},
|
||||||
init : function() {
|
init : function() {
|
||||||
this.setDisplay('Font Size...');
|
this.setDisplay('Font Size...');
|
||||||
for(itm in this.sel) {
|
for(itm in this.sel) {
|
||||||
@ -1159,7 +1159,7 @@ var nicEditorFontSizeSelect = nicEditorSelect.extend({
|
|||||||
});
|
});
|
||||||
|
|
||||||
var nicEditorFontFamilySelect = nicEditorSelect.extend({
|
var nicEditorFontFamilySelect = nicEditorSelect.extend({
|
||||||
sel : {'arial' : 'Arial', 'times new roman' : 'Times', 'tahoma' : 'tahoma', 'verdana' : 'Verdana'},
|
sel : {'arial' : 'Arial','comic sans ms' : 'Comic Sans','courier new' : 'Courier New','georgia' : 'Georgia', 'helvetica' : 'Helvetica', 'impact' : 'Impact', 'times new roman' : 'Times', 'trebuchet ms' : 'Trebuchet', 'verdana' : 'Verdana'},
|
||||||
|
|
||||||
init : function() {
|
init : function() {
|
||||||
this.setDisplay('Font Family...');
|
this.setDisplay('Font Family...');
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
<script type='text/javascript' src='../js/wiseLibrary.js'></script>
|
<script type='text/javascript' src='../js/wiseLibrary.js'></script>
|
||||||
<script type='text/javascript' src='../js/wiseEditorLibrary.js'></script>
|
<script type='text/javascript' src='../js/wiseEditorLibrary.js'></script>
|
||||||
|
<script type='text/javascript' src='../js/nicEdit.js'></script>
|
||||||
<script type='text/javascript' src='../js/core.js'></script>
|
<script type='text/javascript' src='../js/core.js'></script>
|
||||||
|
|
||||||
<link rel="icon" href="../images/favicon.ico" type="image/x-icon">
|
<link rel="icon" href="../images/favicon.ico" type="image/x-icon">
|
||||||
|
Loading…
Reference in New Issue
Block a user