mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
- Fix remove icon position
- Import don't use elipse for freemind anymore -
This commit is contained in:
parent
a527404aa2
commit
6d1b678c48
@ -149,6 +149,7 @@ mindplot.ImageIcon.prototype.getUiId = function()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
mindplot.ImageIcon.prototype.ICON_FAMILIES = [{"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": "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": "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": "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"]},{"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": "object", "icons" : ["object_penguin","object_bell","object_clanbomber","object_key","object_pencil","object_phone","object_magnifier","object_clip","object_music","object_star","object_wizard","object_house"]}]
|
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"]}]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
mindplot.Tip = function(divContainer){
|
mindplot.Tip = function(divContainer){
|
||||||
this.initialize(divContainer);
|
this.initialize(divContainer);
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.initialize=function(divContainer){
|
mindplot.Tip.prototype.initialize=function(divContainer){
|
||||||
this.options={
|
this.options={
|
||||||
panel:null,
|
panel:null,
|
||||||
@ -35,6 +36,7 @@ mindplot.Tip.prototype.initialize=function(divContainer){
|
|||||||
this._isMouseOver=false;
|
this._isMouseOver=false;
|
||||||
this._open=false;
|
this._open=false;
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.buildTip=function(){
|
mindplot.Tip.prototype.buildTip=function(){
|
||||||
var opts = this.options;
|
var opts = this.options;
|
||||||
var panel = new Element('div').addClass('bubbleContainer');
|
var panel = new Element('div').addClass('bubbleContainer');
|
||||||
@ -53,14 +55,17 @@ mindplot.Tip.prototype.buildTip=function(){
|
|||||||
opts.panel.addEvent('mouseleave',function(event){this.close(event);}.bindWithEvent(this));//this.close.bindWithEvent(this)
|
opts.panel.addEvent('mouseleave',function(event){this.close(event);}.bindWithEvent(this));//this.close.bindWithEvent(this)
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.click= function(event, el) {
|
mindplot.Tip.prototype.click= function(event, el) {
|
||||||
return this.open(event, el);
|
return this.open(event, el);
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.open= function(event, content, source){
|
mindplot.Tip.prototype.open= function(event, content, source){
|
||||||
this._isMouseOver=true;
|
this._isMouseOver=true;
|
||||||
this._evt = new Event(event);
|
this._evt = new Event(event);
|
||||||
this.doOpen.delay(500, this,[content,source]);
|
this.doOpen.delay(500, this,[content,source]);
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.doOpen= function(content, source){
|
mindplot.Tip.prototype.doOpen= function(content, source){
|
||||||
if($chk(this._isMouseOver) &&!$chk(this._open) && !$chk(this._opening))
|
if($chk(this._isMouseOver) &&!$chk(this._open) && !$chk(this._opening))
|
||||||
{
|
{
|
||||||
@ -74,13 +79,16 @@ mindplot.Tip.prototype.doOpen= function(content, 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){
|
mindplot.Tip.prototype.updatePosition=function(event){
|
||||||
this._evt = new Event(event);
|
this._evt = new Event(event);
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.close=function(event){
|
mindplot.Tip.prototype.close=function(event){
|
||||||
this._isMouseOver=false;
|
this._isMouseOver=false;
|
||||||
this.doClose.delay(50,this,new Event(event));
|
this.doClose.delay(50,this,new Event(event));
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.doClose=function(event){
|
mindplot.Tip.prototype.doClose=function(event){
|
||||||
|
|
||||||
if(!$chk(this._isMouseOver) && $chk(this._opening))
|
if(!$chk(this._isMouseOver) && $chk(this._opening))
|
||||||
@ -91,6 +99,7 @@ mindplot.Tip.prototype.doClose=function(event){
|
|||||||
this.forceClose();
|
this.forceClose();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.forceClose=function(){
|
mindplot.Tip.prototype.forceClose=function(){
|
||||||
this.options.panel.effect('opacity',{duration:100, onComplete:function(){
|
this.options.panel.effect('opacity',{duration:100, onComplete:function(){
|
||||||
this._open=false;
|
this._open=false;
|
||||||
@ -98,6 +107,7 @@ mindplot.Tip.prototype.forceClose=function(){
|
|||||||
$(this.options.container).remove();
|
$(this.options.container).remove();
|
||||||
}.bind(this)}).start(100,0);
|
}.bind(this)}).start(100,0);
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.prototype.init=function(event,source){
|
mindplot.Tip.prototype.init=function(event,source){
|
||||||
var opts = this.options;
|
var opts = this.options;
|
||||||
var coordinates = $(opts.panel).getCoordinates();
|
var coordinates = $(opts.panel).getCoordinates();
|
||||||
@ -119,7 +129,7 @@ mindplot.Tip.prototype.init=function(event,source){
|
|||||||
mindplot.Tip.prototype.moveTopic=function(offset, panelHeight){
|
mindplot.Tip.prototype.moveTopic=function(offset, panelHeight){
|
||||||
var opts = this.options;
|
var opts = this.options;
|
||||||
var width = $(opts.panel).getCoordinates().width;
|
var width = $(opts.panel).getCoordinates().width;
|
||||||
$(opts.panel).setStyles({left:offset.x - (width/2), top:offset.y - (panelHeight*2)});
|
$(opts.panel).setStyles({left:offset.x - (width/2), top:offset.y - (panelHeight*2) + 35});
|
||||||
};
|
};
|
||||||
|
|
||||||
mindplot.Tip.getInstance = function(divContainer)
|
mindplot.Tip.getInstance = function(divContainer)
|
||||||
|
@ -22,7 +22,9 @@ import com.wisemapping.exporter.ExportException;
|
|||||||
import com.wisemapping.exporter.Exporter;
|
import com.wisemapping.exporter.Exporter;
|
||||||
import com.wisemapping.importer.freemind.FreemindIconConverter;
|
import com.wisemapping.importer.freemind.FreemindIconConverter;
|
||||||
import com.wisemapping.model.MindMap;
|
import com.wisemapping.model.MindMap;
|
||||||
|
import com.wisemapping.model.ShapeStyle;
|
||||||
import com.wisemapping.util.JAXBUtils;
|
import com.wisemapping.util.JAXBUtils;
|
||||||
|
import com.wisemapping.xml.Style;
|
||||||
import com.wisemapping.xml.freemind.*;
|
import com.wisemapping.xml.freemind.*;
|
||||||
import com.wisemapping.xml.mindmap.RelationshipType;
|
import com.wisemapping.xml.mindmap.RelationshipType;
|
||||||
import com.wisemapping.xml.mindmap.TopicType;
|
import com.wisemapping.xml.mindmap.TopicType;
|
||||||
@ -90,7 +92,7 @@ public class FreemindExporter
|
|||||||
freemindMap.setNode(main);
|
freemindMap.setNode(main);
|
||||||
if (centerTopic != null) {
|
if (centerTopic != null) {
|
||||||
nodesMap.put(centerTopic.getId(), main);
|
nodesMap.put(centerTopic.getId(), main);
|
||||||
setTopicPropertiesToNode(main, centerTopic);
|
setTopicPropertiesToNode(main, centerTopic, true);
|
||||||
addNodeFromTopic(centerTopic, main);
|
addNodeFromTopic(centerTopic, main);
|
||||||
}
|
}
|
||||||
List<RelationshipType> relationships = mindmapMap.getRelationship();
|
List<RelationshipType> relationships = mindmapMap.getRelationship();
|
||||||
@ -119,7 +121,7 @@ public class FreemindExporter
|
|||||||
for (TopicType topicType : currentTopic) {
|
for (TopicType topicType : currentTopic) {
|
||||||
final Node newNode = objectFactory.createNode();
|
final Node newNode = objectFactory.createNode();
|
||||||
nodesMap.put(topicType.getId(), newNode);
|
nodesMap.put(topicType.getId(), newNode);
|
||||||
setTopicPropertiesToNode(newNode, topicType);
|
setTopicPropertiesToNode(newNode, topicType, false);
|
||||||
destNode.getArrowlinkOrCloudOrEdge().add(newNode);
|
destNode.getArrowlinkOrCloudOrEdge().add(newNode);
|
||||||
addNodeFromTopic(topicType, newNode);
|
addNodeFromTopic(topicType, newNode);
|
||||||
final String position = topicType.getPosition();
|
final String position = topicType.getPosition();
|
||||||
@ -131,14 +133,17 @@ public class FreemindExporter
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setTopicPropertiesToNode(com.wisemapping.xml.freemind.Node freemindNode, com.wisemapping.xml.mindmap.TopicType mindmapTopic) {
|
private void setTopicPropertiesToNode(@NotNull com.wisemapping.xml.freemind.Node freemindNode, @NotNull com.wisemapping.xml.mindmap.TopicType mindmapTopic, boolean isRoot) {
|
||||||
freemindNode.setID("ID_" + mindmapTopic.getId());
|
freemindNode.setID("ID_" + mindmapTopic.getId());
|
||||||
freemindNode.setTEXT(mindmapTopic.getText());
|
freemindNode.setTEXT(mindmapTopic.getText());
|
||||||
freemindNode.setBACKGROUNDCOLOR(mindmapTopic.getBgColor());
|
freemindNode.setBACKGROUNDCOLOR(mindmapTopic.getBgColor());
|
||||||
|
|
||||||
if (mindmapTopic.getShape() != null && !mindmapTopic.getShape().equals("line")) {
|
final String shape = mindmapTopic.getShape();
|
||||||
String style = mindmapTopic.getShape();
|
if (shape != null && !shape.isEmpty()) {
|
||||||
if ("rounded rectagle".equals(mindmapTopic.getShape())) {
|
if ( isRoot && !ShapeStyle.ROUNDED_RETAGLE.getStyle().endsWith(shape) || !isRoot && !ShapeStyle.LINE.getStyle().endsWith(shape) ) {
|
||||||
|
|
||||||
|
String style = shape;
|
||||||
|
if (ShapeStyle.ROUNDED_RETAGLE.getStyle().equals(shape)) {
|
||||||
style = "bubble";
|
style = "bubble";
|
||||||
}
|
}
|
||||||
freemindNode.setSTYLE(style);
|
freemindNode.setSTYLE(style);
|
||||||
@ -155,6 +160,7 @@ public class FreemindExporter
|
|||||||
if (shrink != null && shrink)
|
if (shrink != null && shrink)
|
||||||
freemindNode.setFOLDED(String.valueOf(shrink));
|
freemindNode.setFOLDED(String.valueOf(shrink));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void addNote(com.wisemapping.xml.freemind.Node freemindNode, com.wisemapping.xml.mindmap.TopicType mindmapTopic) {
|
private void addNote(com.wisemapping.xml.freemind.Node freemindNode, com.wisemapping.xml.mindmap.TopicType mindmapTopic) {
|
||||||
if (mindmapTopic.getNote() != null) {
|
if (mindmapTopic.getNote() != null) {
|
||||||
|
@ -74,7 +74,7 @@ public class FreemindImporter
|
|||||||
centralTopic.setCentral(true);
|
centralTopic.setCentral(true);
|
||||||
|
|
||||||
setNodePropertiesToTopic(centralTopic, centralNode);
|
setNodePropertiesToTopic(centralTopic, centralNode);
|
||||||
centralTopic.setShape(ShapeStyle.ELIPSE.getStyle());
|
centralTopic.setShape(ShapeStyle.ROUNDED_RETAGLE.getStyle());
|
||||||
mindmapMap.getTopic().add(centralTopic);
|
mindmapMap.getTopic().add(centralTopic);
|
||||||
mindmapMap.setName(mapName);
|
mindmapMap.setName(mapName);
|
||||||
|
|
||||||
@ -104,7 +104,7 @@ public class FreemindImporter
|
|||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addRelationships(com.wisemapping.xml.mindmap.Map mindmapMap) {
|
private void addRelationships(@NotNull com.wisemapping.xml.mindmap.Map mindmapMap) {
|
||||||
List<RelationshipType> mapRelationships = mindmapMap.getRelationship();
|
List<RelationshipType> mapRelationships = mindmapMap.getRelationship();
|
||||||
for (RelationshipType relationship : relationships) {
|
for (RelationshipType relationship : relationships) {
|
||||||
relationship.setId(String.valueOf(currentId++));
|
relationship.setId(String.valueOf(currentId++));
|
||||||
@ -155,7 +155,7 @@ public class FreemindImporter
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fixCentralTopicChildOrder(TopicType centralTopic) {
|
private void fixCentralTopicChildOrder(@NotNull TopicType centralTopic) {
|
||||||
List<TopicType> topics = centralTopic.getTopic();
|
List<TopicType> topics = centralTopic.getTopic();
|
||||||
List<TopicType> leftTopics = new ArrayList<TopicType>();
|
List<TopicType> leftTopics = new ArrayList<TopicType>();
|
||||||
List<TopicType> rightTopics = new ArrayList<TopicType>();
|
List<TopicType> rightTopics = new ArrayList<TopicType>();
|
||||||
@ -479,14 +479,14 @@ public class FreemindImporter
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getShapeFormFromNode(Node node) {
|
private @NotNull String getShapeFormFromNode(@NotNull Node node) {
|
||||||
String shape = node.getSTYLE();
|
String result = node.getSTYLE();
|
||||||
// In freemind a node without style is a line
|
// In freemind a node without style is a line
|
||||||
if ("bubble".equals(shape)) {
|
if ("bubble".equals(result)) {
|
||||||
shape = ShapeStyle.ROUNDED_RETAGLE.getStyle();
|
result = ShapeStyle.ROUNDED_RETAGLE.getStyle();
|
||||||
} else {
|
} else {
|
||||||
shape = ShapeStyle.LINE.getStyle();
|
result = ShapeStyle.LINE.getStyle();
|
||||||
}
|
}
|
||||||
return shape;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
- Node Links
|
- Done: Node Links
|
||||||
- Relationship between nodes
|
- Relationship between nodes
|
||||||
- HTML embedded in nodes.
|
- HTML embedded in nodes.
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><map version="0.9.0"><node TEXT="This is the root node" STYLE="elipse" ID="ID_0"><node TEXT="Child Level 1 Right 1" POSITION="right" ID="ID_1"/><node TEXT="Child Level 1 Left 1" POSITION="left" ID="ID_2"><node TEXT="Child Level 2 Left 11" POSITION="left" ID="ID_3"/><node TEXT="Child Level 2 Left 12" POSITION="left" ID="ID_4"/></node><node TEXT="Child Level 1 Right 2" POSITION="right" ID="ID_5"/><node TEXT="Child Level 1 Left 2" POSITION="left" ID="ID_6"><node TEXT="Child Level 2 Left 21 " POSITION="left" ID="ID_7"/><node TEXT="Child Level 2 Left 22" POSITION="left" ID="ID_8"/></node></node></map>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><map version="0.9.0"><node TEXT="This is the root node" ID="ID_0"><node TEXT="Child Level 1 Right 1" POSITION="right" ID="ID_1"/><node TEXT="Child Level 1 Left 1" POSITION="left" ID="ID_2"><node TEXT="Child Level 2 Left 11" POSITION="left" ID="ID_3"/><node TEXT="Child Level 2 Left 12" POSITION="left" ID="ID_4"/></node><node TEXT="Child Level 1 Right 2" POSITION="right" ID="ID_5"/><node TEXT="Child Level 1 Left 2" POSITION="left" ID="ID_6"><node TEXT="Child Level 2 Left 21 " POSITION="left" ID="ID_7"/><node TEXT="Child Level 2 Left 22" POSITION="left" ID="ID_8"/></node></node></map>
|
@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><map version="0.9.0"><node TEXT="Fonts" STYLE="elipse" ID="ID_0"><node TEXT="Styles" POSITION="right" ID="ID_1"><node TEXT="Bold" POSITION="right" ID="ID_2"><font SIZE="12" NAME="Arial" BOLD="true"/></node><node TEXT="Italic" POSITION="right" ID="ID_3"><font SIZE="12" NAME="Arial" ITALIC="true"/></node></node><node TEXT="Sizes" POSITION="left" ID="ID_4"><node TEXT="Normal----" POSITION="left" ID="ID_5"><font SIZE="8" NAME="Arial"/></node><node TEXT="Normal---" POSITION="left" ID="ID_6"><font SIZE="9" NAME="Arial"/></node><node TEXT="Normal--" POSITION="left" ID="ID_7"><font SIZE="10" NAME="Arial"/></node><node TEXT="Normal-" POSITION="left" ID="ID_8"><font SIZE="11" NAME="Arial"/></node><node TEXT="Normal" POSITION="left" ID="ID_9"/><node TEXT="Nomal+" POSITION="left" ID="ID_10"><font SIZE="13" NAME="Arial"/></node><node TEXT="Normal++" POSITION="left" ID="ID_11"><font SIZE="14" NAME="Arial"/></node><node TEXT="Normal+++" POSITION="left" ID="ID_12"><font SIZE="15" NAME="Arial"/></node><node TEXT="Normal++++" POSITION="left" ID="ID_13"><font SIZE="16" NAME="Arial"/></node></node></node></map>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><map version="0.9.0"><node TEXT="Fonts" ID="ID_0"><node TEXT="Styles" POSITION="right" ID="ID_1"><node TEXT="Bold" POSITION="right" ID="ID_2"><font SIZE="12" NAME="Arial" BOLD="true"/></node><node TEXT="Italic" POSITION="right" ID="ID_3"><font SIZE="12" NAME="Arial" ITALIC="true"/></node></node><node TEXT="Sizes" POSITION="left" ID="ID_4"><node TEXT="Normal----" POSITION="left" ID="ID_5"><font SIZE="8" NAME="Arial"/></node><node TEXT="Normal---" POSITION="left" ID="ID_6"><font SIZE="9" NAME="Arial"/></node><node TEXT="Normal--" POSITION="left" ID="ID_7"><font SIZE="10" NAME="Arial"/></node><node TEXT="Normal-" POSITION="left" ID="ID_8"><font SIZE="11" NAME="Arial"/></node><node TEXT="Normal" POSITION="left" ID="ID_9"/><node TEXT="Nomal+" POSITION="left" ID="ID_10"><font SIZE="13" NAME="Arial"/></node><node TEXT="Normal++" POSITION="left" ID="ID_11"><font SIZE="14" NAME="Arial"/></node><node TEXT="Normal+++" POSITION="left" ID="ID_12"><font SIZE="15" NAME="Arial"/></node><node TEXT="Normal++++" POSITION="left" ID="ID_13"><font SIZE="16" NAME="Arial"/></node></node></node></map>
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><map version="0.9.0"><node TEXT="Node Links" STYLE="elipse" LINK="http://www.google.com" ID="ID_0"><icon BUILTIN="closed"/><node TEXT="Link Topic" POSITION="right" LINK="http://www.bing.com" ID="ID_1" FOLDED="true"><icon BUILTIN="info"/><node TEXT="Link Topic Topic" POSITION="right" LINK="http://bing.com" ID="ID_2"><icon BUILTIN="messagebox_warning"/></node></node></node></map>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><map version="0.9.0"><node TEXT="Node Links" LINK="http://www.google.com" ID="ID_0"><icon BUILTIN="closed"/><node TEXT="Link Topic" POSITION="right" LINK="http://www.bing.com" ID="ID_1" FOLDED="true"><icon BUILTIN="info"/><node TEXT="Link Topic Topic" POSITION="right" LINK="http://bing.com" ID="ID_2"><icon BUILTIN="messagebox_warning"/></node></node></node></map>
|
@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><map version="0.9.0"><node TEXT="Shapes" STYLE="elipse" ID="ID_0"><node TEXT="Node Styles" POSITION="right" ID="ID_1"><node TEXT="Fork" POSITION="right" ID="ID_2"><edge COLOR="#808080"/></node><node TEXT="Bubble" STYLE="bubble" POSITION="right" ID="ID_3"><edge COLOR="#808080"/></node><node TEXT="As parent" POSITION="right" ID="ID_4"><edge COLOR="#808080"/></node><node TEXT="Combined" POSITION="right" ID="ID_5"><edge COLOR="#808080"/></node></node><node TEXT="Node Background Color" POSITION="left" ID="ID_6" BACKGROUND_COLOR="#f20707"><node TEXT="Fork" POSITION="left" ID="ID_7" BACKGROUND_COLOR="#0000cc"><edge COLOR="#808080"/></node><node TEXT="Bubble" STYLE="bubble" POSITION="left" ID="ID_8" BACKGROUND_COLOR="#ccffcc"><edge COLOR="#808080"/></node><node TEXT="As parent" POSITION="left" ID="ID_9" BACKGROUND_COLOR="#00ffff"><edge COLOR="#808080"/></node><node TEXT="Combined" POSITION="left" ID="ID_10" BACKGROUND_COLOR="#990099"><edge COLOR="#808080"/></node></node><node TEXT="Node Text Color" POSITION="left" ID="ID_11" BACKGROUND_COLOR="#f20707"><node TEXT="Fork" POSITION="left" ID="ID_12" COLOR="#ffff00" BACKGROUND_COLOR="#0000cc"><edge COLOR="#808080"/></node><node TEXT="Bubble" STYLE="bubble" POSITION="left" ID="ID_13" COLOR="#ff6666" BACKGROUND_COLOR="#ccffcc"><edge COLOR="#808080"/></node><node TEXT="As parent" POSITION="left" ID="ID_14" COLOR="#009999" BACKGROUND_COLOR="#00ffff"><edge COLOR="#808080"/></node><node TEXT="Combined" POSITION="left" ID="ID_15" COLOR="#009999" BACKGROUND_COLOR="#990099"><edge COLOR="#808080"/></node></node></node></map>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><map version="0.9.0"><node TEXT="Shapes" ID="ID_0"><node TEXT="Node Styles" POSITION="right" ID="ID_1"><node TEXT="Fork" POSITION="right" ID="ID_2"><edge COLOR="#808080"/></node><node TEXT="Bubble" STYLE="bubble" POSITION="right" ID="ID_3"><edge COLOR="#808080"/></node><node TEXT="As parent" POSITION="right" ID="ID_4"><edge COLOR="#808080"/></node><node TEXT="Combined" POSITION="right" ID="ID_5"><edge COLOR="#808080"/></node></node><node TEXT="Node Background Color" POSITION="left" ID="ID_6" BACKGROUND_COLOR="#f20707"><node TEXT="Fork" POSITION="left" ID="ID_7" BACKGROUND_COLOR="#0000cc"><edge COLOR="#808080"/></node><node TEXT="Bubble" STYLE="bubble" POSITION="left" ID="ID_8" BACKGROUND_COLOR="#ccffcc"><edge COLOR="#808080"/></node><node TEXT="As parent" POSITION="left" ID="ID_9" BACKGROUND_COLOR="#00ffff"><edge COLOR="#808080"/></node><node TEXT="Combined" POSITION="left" ID="ID_10" BACKGROUND_COLOR="#990099"><edge COLOR="#808080"/></node></node><node TEXT="Node Text Color" POSITION="left" ID="ID_11" BACKGROUND_COLOR="#f20707"><node TEXT="Fork" POSITION="left" ID="ID_12" COLOR="#ffff00" BACKGROUND_COLOR="#0000cc"><edge COLOR="#808080"/></node><node TEXT="Bubble" STYLE="bubble" POSITION="left" ID="ID_13" COLOR="#ff6666" BACKGROUND_COLOR="#ccffcc"><edge COLOR="#808080"/></node><node TEXT="As parent" POSITION="left" ID="ID_14" COLOR="#009999" BACKGROUND_COLOR="#00ffff"><edge COLOR="#808080"/></node><node TEXT="Combined" POSITION="left" ID="ID_15" COLOR="#009999" BACKGROUND_COLOR="#990099"><edge COLOR="#808080"/></node></node></node></map>
|
Loading…
Reference in New Issue
Block a user