390 lines
13 KiB
JavaScript
Raw Normal View History

2011-08-07 18:59:20 -03:00
/*
* 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.
*/
mindplot.widget.Menu = new Class({
2011-10-02 14:47:54 -03:00
initialize : function(designer, containerId, readOnly) {
2011-08-08 20:48:59 -03:00
$assert(designer, "designer can not be null");
$assert(containerId, "containerId can not be null");
2011-10-02 19:16:13 -03:00
var baseUrl = "../css/widget";
2011-08-08 20:48:59 -03:00
// Init variables ...
2011-08-07 18:59:20 -03:00
this._designer = designer;
this._toolbarElems = [];
2011-08-08 20:48:59 -03:00
this._containerId = containerId;
2011-10-04 01:16:29 -03:00
this._toolbarDisabled = false;
2011-08-08 20:48:59 -03:00
// Stop event propagation ...
$(this._containerId).addEvent('click', function(event) {
event.stopPropagation();
2011-08-09 01:45:24 -03:00
return false;
2011-08-08 20:48:59 -03:00
});
$(this._containerId).addEvent('dblclick', function(event) {
event.stopPropagation();
2011-08-09 01:45:24 -03:00
return false;
2011-08-08 20:48:59 -03:00
});
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Create panels ...
var designerModel = designer.getModel();
2011-08-07 18:59:20 -03:00
var fontFamilyModel = {
getValue: function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var fontFamily = nodes[i].getFontFamily();
if (result != null && result != fontFamily) {
result = null;
break;
}
result = fontFamily;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
setValue: function(value) {
2011-08-21 12:42:00 -03:00
designer.changeFontFamily(value);
2011-08-07 18:59:20 -03:00
}
};
2011-08-08 20:48:59 -03:00
this._toolbarElems.push(new mindplot.widget.FontFamilyPanel("fontFamily", fontFamilyModel));
2011-08-07 18:59:20 -03:00
var fontSizeModel = {
getValue: function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var fontSize = nodes[i].getFontSize();
if (result != null && result != fontSize) {
result = null;
break;
}
result = fontSize;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
setValue: function(value) {
2011-08-21 12:42:00 -03:00
designer.changeFontSize(value);
2011-08-07 18:59:20 -03:00
}
};
2011-08-08 20:48:59 -03:00
this._toolbarElems.push(new mindplot.widget.FontSizePanel("fontSize", fontSizeModel));
2011-08-07 18:59:20 -03:00
var topicShapeModel = {
getValue: function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var shapeType = nodes[i].getShapeType();
if (result != null && result != shapeType) {
result = null;
break;
}
result = shapeType;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
setValue: function(value) {
2011-08-21 12:42:00 -03:00
designer.changeTopicShape(value);
2011-08-07 18:59:20 -03:00
}
};
2011-08-08 20:48:59 -03:00
this._toolbarElems.push(new mindplot.widget.TopicShapePanel("topicShape", topicShapeModel));
2011-08-07 18:59:20 -03:00
// Create icon panel dialog ...
var topicIconModel = {
getValue: function() {
return null;
},
setValue: function(value) {
2011-08-21 12:42:00 -03:00
designer.addIconType(value);
2011-08-07 18:59:20 -03:00
}
};
2011-08-08 20:48:59 -03:00
this._toolbarElems.push(new mindplot.widget.IconPanel('topicIcon', topicIconModel));
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Topic color item ...
var topicColorModel =
{
getValue : function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var color = nodes[i].getBackgroundColor();
if (result != null && result != color) {
result = null;
break;
}
result = color;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
2011-08-08 20:48:59 -03:00
setValue : function (hex) {
2011-08-21 12:42:00 -03:00
designer.changeBackgroundColor(hex);
2011-08-08 20:48:59 -03:00
}
2011-08-08 09:20:32 -03:00
};
2011-08-09 01:45:24 -03:00
this._toolbarElems.push(new mindplot.widget.ColorPalettePanel('topicColor', topicColorModel, baseUrl));
2011-08-08 20:48:59 -03:00
// Border color item ...
var borderColorModel =
{
getValue : function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var color = nodes[i].getBorderColor();
if (result != null && result != color) {
result = null;
break;
}
result = color;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
2011-08-08 20:48:59 -03:00
setValue : function (hex) {
2011-08-21 12:42:00 -03:00
designer.changeBorderColor(hex);
2011-08-08 20:48:59 -03:00
}
};
2011-08-09 01:45:24 -03:00
this._toolbarElems.push(new mindplot.widget.ColorPalettePanel('topicBorder', borderColorModel, baseUrl));
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Font color item ...
var fontColorModel =
{
getValue : function() {
2011-08-09 09:03:46 -03:00
var result = null;
var nodes = designerModel.filterSelectedTopics();
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var color = nodes[i].getFontColor();
if (result != null && result != color) {
result = null;
break;
}
result = color;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
2011-08-08 20:48:59 -03:00
setValue : function (hex) {
2011-08-21 12:42:00 -03:00
designer.changeFontColor(hex);
2011-08-08 20:48:59 -03:00
}
};
2011-08-09 01:45:24 -03:00
this._toolbarElems.push(new mindplot.widget.ColorPalettePanel('fontColor', fontColorModel, baseUrl));
2011-08-08 20:48:59 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('zoomIn', false, false, function() {
designer.zoomIn()
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('zoomOut', false, false, function() {
designer.zoomOut()
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('undoEdition', false, false, function() {
designer.undo()
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('redoEdition', false, false, function() {
2011-08-08 09:20:32 -03:00
designer.redo();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('addTopic', true, false, function() {
2011-09-14 08:51:38 -03:00
designer.createChildForSelectedNode();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('deleteTopic', true, true, function() {
2011-08-08 09:20:32 -03:00
designer.deleteCurrentNode();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('topicLink', true, false, function() {
2011-08-21 12:42:00 -03:00
designer.addLink();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('topicRelation', true, false, function() {
designer.addLink();
2011-08-08 09:20:32 -03:00
});
2011-10-04 01:16:29 -03:00
this.addButton('topicNote', true, false, function() {
2011-08-21 12:42:00 -03:00
designer.addNote();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('fontBold', true, false, function() {
2011-08-20 11:08:18 -03:00
designer.changeFontWeight();
2011-08-08 09:20:32 -03:00
});
2011-10-04 01:16:29 -03:00
this.addButton('fontItalic', true, false, function() {
2011-08-20 11:08:18 -03:00
designer.changeFontStyle();
2011-08-08 09:20:32 -03:00
});
2011-10-02 14:47:54 -03:00
var saveElem = $('saveButton');
if (saveElem) {
saveElem.addEvent('click', function() {
if (!readOnly) {
$('saveButton').setStyle('cursor', 'wait');
(function() {
designer.save(function() {
// var monitor = core.Monitor.getInstance();
// monitor.logMessage('Save completed successfully');
saveElem.setStyle('cursor', 'pointer');
}, true);
}).delay(1);
} else {
new Windoo.Confirm('This option is not enabled in try mode. You must by signed in order to execute this action.<br/> to create an account click <a href="userRegistration.htm">here</a>',
{
'window': {theme:Windoo.Themes.wise,
title:''
}
});
}
});
}
var discartElem = $('discartElem');
if (discartElem) {
discartElem.addEvent('click', function() {
if (!readOnly) {
displayLoading();
window.document.location = "mymaps.htm";
} else {
displayLoading();
window.document.location = "home.htm";
}
});
}
if (readOnly) {
$('tagIt').addEvent('click', function(event) {
new Windoo.Confirm('This option is not enabled in try mode. You must by signed in order to execute this action.',
{
'window': {theme:Windoo.Themes.wise,
title:''
}
});
});
$('shareIt').addEvent('click', function(event) {
new Windoo.Confirm('This option is not enabled in try mode. You must by signed in order to execute this action.',
{
'window': {theme:Windoo.Themes.wise,
title:''
}
});
});
$('publishIt').addEvent('click', function(event) {
new Windoo.Confirm('This option is not enabled in try mode. You must by signed in order to execute this action.',
{
'window': {theme:Windoo.Themes.wise,
title:''
}
});
});
$('history').addEvent('click', function(event) {
new Windoo.Confirm('This option is not enabled in try mode. You must by signed in order to execute this action.',
{
'window': {theme:Windoo.Themes.wise,
title:''
}
});
});
}
2011-10-04 01:16:29 -03:00
this._registerEvents(designer);
},
_registerEvents : function(designer) {
// Register on close events ...
this._toolbarElems.forEach(function(elem) {
elem.addEvent('show', function() {
this.clear()
}.bind(this));
}.bind(this));
designer.addEvent('onblur', function() {
var topics = designer.getModel().filterSelectedTopics();
var rels = designer.getModel().filterSelectedRelations();
this._toolbarElems.forEach(function(button) {
2011-10-04 23:59:21 -03:00
var disable = false;
if (button.isTopicAction() && button.isRelAction()) {
disable = rels.length == 0 && topics.length == 0;
} else if (button.isTopicAction() && topics.length == 0) {
disable = true;
} else if (button.isRelAction() && rels.length == 0) {
disable = true;
2011-10-04 01:16:29 -03:00
}
2011-10-04 23:59:21 -03:00
if (disable) {
2011-10-04 01:16:29 -03:00
button.disable();
}
2011-10-04 23:59:21 -03:00
2011-10-04 01:16:29 -03:00
})
}.bind(this));
designer.addEvent('onfocus', function() {
var topics = designer.getModel().filterSelectedTopics();
var rels = designer.getModel().filterSelectedRelations();
this._toolbarElems.forEach(function(button) {
if (button.isTopicAction() && topics.length > 0) {
button.enable();
}
if (button.isRelAction() && rels.length > 0) {
button.enable();
}
})
}.bind(this));
designer.addEvent("modelUpdate", function(event) {
if (event.undoSteps > 0) {
$("undoEdition").setStyle("background-image", "url(../images/file_undo.png)");
} else {
$("undoEdition").setStyle("background-image", "url(../images/file_undo_dis.png)");
}
if (event.redoSteps > 0) {
$("redoEdition").setStyle("background-image", "url(../images/file_redo.png)");
} else {
$("redoEdition").setStyle("background-image", "url(../images/file_redo_dis.png)");
}
});
},
addButton:function (buttonId, topic, rel, fn) {
// Register Events ...
var button = new mindplot.widget.ToolbarItem(buttonId, function(event) {
this.clear();
fn(event);
}.bind(this), {topicAction:topic,relAction:rel});
this._toolbarElems.push(button);
2011-08-07 18:59:20 -03:00
},
clear : function() {
this._toolbarElems.forEach(function(elem) {
elem.hide();
});
}
2011-10-04 01:16:29 -03:00
});