ce47d49e69
Thanks to Alexis Deveria. (Though I did fix one small bug.) My patch-file is now down to a mere 178 lines (a big chunk of which is Revision 569). Also, the font-size for foreignObjects defaults to 16pt, which will be more useful in Instiki.
77 lines
1.8 KiB
JavaScript
77 lines
1.8 KiB
JavaScript
/*
|
|
* ext-closepath.js
|
|
*
|
|
* Licensed under the Apache License, Version 2
|
|
*
|
|
* Copyright(c) 2010 Jeff Schiller
|
|
*
|
|
*/
|
|
|
|
// This extension adds a simple button to the contextual panel for paths
|
|
// The button toggles whether the path is open or closed
|
|
$(function() {
|
|
svgCanvas.addExtension("ClosePath", function(S) {
|
|
var selElems,
|
|
updateButton = function(path) {
|
|
var seglist = path.pathSegList,
|
|
button = $('#closepath_panel > div.tool_button')[0];
|
|
$(button).html(seglist.getItem(seglist.numberOfItems - 1).pathSegType==1 ? "open":"close");
|
|
},
|
|
showPanel = function(on) {
|
|
$('#closepath_panel').toggle(on);
|
|
if (on) {
|
|
var path = selElems[0];
|
|
if (path) updateButton(path);
|
|
}
|
|
},
|
|
|
|
toggleClosed = function() {
|
|
var path = selElems[0];
|
|
if (path) {
|
|
var seglist = path.pathSegList,
|
|
last = seglist.numberOfItems - 1;
|
|
// is closed
|
|
if(seglist.getItem(last).pathSegType == 1) {
|
|
seglist.removeItem(last);
|
|
}
|
|
else {
|
|
seglist.appendItem(path.createSVGPathSegClosePath());
|
|
}
|
|
updateButton(path);
|
|
}
|
|
};
|
|
|
|
return {
|
|
name: "ClosePath",
|
|
svgicons: "extensions/closepath_icons.svg",
|
|
context_tools: [{
|
|
type: "tool_button",
|
|
panel: "closepath_panel",
|
|
title: "Open or Close path",
|
|
id: "close",
|
|
events: { click: toggleClosed }
|
|
}],
|
|
callback: function() {
|
|
$('#closepath_panel').hide();
|
|
},
|
|
selectedChanged: function(opts) {
|
|
selElems = opts.elems;
|
|
var i = selElems.length;
|
|
|
|
while(i--) {
|
|
var elem = selElems[i];
|
|
if(elem && elem.tagName == 'path') {
|
|
if(opts.selectedElement && !opts.multiselected) {
|
|
showPanel(true);
|
|
} else {
|
|
showPanel(false);
|
|
}
|
|
} else {
|
|
showPanel(false);
|
|
}
|
|
}
|
|
},
|
|
};
|
|
});
|
|
});
|