Added a thumbnail overview as described in Issue 208 part 6.
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2533 eee81c28-f429-11dd-99c0-75d572ba1dddmaster
parent
02adda7a98
commit
3887d822b2
|
@ -0,0 +1,140 @@
|
||||||
|
/*
|
||||||
|
* ext-overview_window.js
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License
|
||||||
|
*
|
||||||
|
* Copyright(c) 2013 James Sacksteder
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
var overviewWindowGlobals={};
|
||||||
|
svgEditor.addExtension("overview_window", function() {
|
||||||
|
//define and insert the base html element
|
||||||
|
var propsWindowHtml= "\
|
||||||
|
<div id=\"overview_window_content_pane\" style=\" width:100%; word-wrap:break-word; display:inline-block; margin-top:20px;\">\
|
||||||
|
<div id=\"overview_window_content\" style=\"position:relative; left:12px; top:0px;\">\
|
||||||
|
<div style=\"background-color:#A0A0A0; display:inline-block; overflow:visible;\">\
|
||||||
|
<svg id=\"overviewMiniView\" width=\"150\" height=\"100\" x=\"0\" y=\"0\" viewBox=\"0 0 4800 3600\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\
|
||||||
|
<use x=\"0\" y=\"0\" xlink:href=\"#svgroot\"> <\/use>\
|
||||||
|
</svg>\
|
||||||
|
<div id=\"overview_window_view_box\" style=\"min-width:50px; min-height:50px; position:absolute; top:30px; left:30px; z-index:5; background-color:rgba(255,0,102,0.3);\">\
|
||||||
|
<\/div>\
|
||||||
|
<\/div>\
|
||||||
|
<\/div>\
|
||||||
|
<\/div>";
|
||||||
|
$("#sidepanels").append(propsWindowHtml);
|
||||||
|
|
||||||
|
//define dynamic animation of the view box.
|
||||||
|
var updateViewBox = function(){
|
||||||
|
var portHeight=parseFloat($("#workarea").css("height"));
|
||||||
|
var portWidth=parseFloat($("#workarea").css("width"));
|
||||||
|
var portX=$("#workarea").scrollLeft();
|
||||||
|
var portY=$("#workarea").scrollTop();
|
||||||
|
var windowWidth=parseFloat($("#svgcanvas").css("width"));
|
||||||
|
var windowHeight=parseFloat($("#svgcanvas").css("height"));
|
||||||
|
var overviewWidth=$("#overviewMiniView").attr("width");
|
||||||
|
var overviewHeight=$("#overviewMiniView").attr("height");
|
||||||
|
|
||||||
|
var viewBoxX=portX/windowWidth*overviewWidth;
|
||||||
|
var viewBoxY=portY/windowHeight*overviewHeight;
|
||||||
|
var viewBoxWidth=portWidth/windowWidth*overviewWidth;
|
||||||
|
var viewBoxHeight=portHeight/windowHeight*overviewHeight;
|
||||||
|
|
||||||
|
$("#overview_window_view_box").css("min-width",viewBoxWidth+"px");
|
||||||
|
$("#overview_window_view_box").css("min-height",viewBoxHeight+"px");
|
||||||
|
$("#overview_window_view_box").css("top",viewBoxY+"px");
|
||||||
|
$("#overview_window_view_box").css("left",viewBoxX+"px");
|
||||||
|
};
|
||||||
|
$("#workarea").scroll(function(){
|
||||||
|
if(!(overviewWindowGlobals.viewBoxDragging)){
|
||||||
|
updateViewBox()
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#workarea").resize(updateViewBox);
|
||||||
|
updateViewBox();
|
||||||
|
|
||||||
|
//comphensate for changes in zoom and canvas size
|
||||||
|
var updateViewDimensions= function(){
|
||||||
|
var viewWidth=$("#svgroot").attr("width");
|
||||||
|
var viewHeight=$("#svgroot").attr("height");
|
||||||
|
var viewX=640;
|
||||||
|
var viewY=480;
|
||||||
|
|
||||||
|
if(svgedit.browser.isIE())
|
||||||
|
{
|
||||||
|
//This has only been tested with Firefox 10 and IE 9 (without chrome frame).
|
||||||
|
//I am not sure if if is Firefox or IE that is being non compliant here.
|
||||||
|
//Either way the one that is noncompliant may become more compliant later.
|
||||||
|
//TAG:HACK
|
||||||
|
//TAG:VERSION_DEPENDENT
|
||||||
|
//TAG:BROWSER_SNIFFING
|
||||||
|
viewX=0;
|
||||||
|
viewY=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
var svgWidth_old=$("#overviewMiniView").attr("width");
|
||||||
|
var svgHeight_new=viewHeight/viewWidth*svgWidth_old;
|
||||||
|
$("#overviewMiniView").attr("viewBox",viewX+" "+viewY+" "+viewWidth+" "+viewHeight);
|
||||||
|
$("#overviewMiniView").attr("height",svgHeight_new);
|
||||||
|
updateViewBox();
|
||||||
|
};
|
||||||
|
updateViewDimensions();
|
||||||
|
|
||||||
|
//set up the overview window as a controller for the view port.
|
||||||
|
overviewWindowGlobals.viewBoxDragging=false;
|
||||||
|
var updateViewPortFromViewBox = function(){
|
||||||
|
|
||||||
|
var windowWidth =parseFloat($("#svgcanvas").css("width" ));
|
||||||
|
var windowHeight=parseFloat($("#svgcanvas").css("height"));
|
||||||
|
var overviewWidth =$("#overviewMiniView").attr("width" );
|
||||||
|
var overviewHeight=$("#overviewMiniView").attr("height");
|
||||||
|
var viewBoxX=parseFloat($("#overview_window_view_box").css("left"));
|
||||||
|
var viewBoxY=parseFloat($("#overview_window_view_box").css("top" ));
|
||||||
|
|
||||||
|
var portX=viewBoxX/overviewWidth *windowWidth;
|
||||||
|
var portY=viewBoxY/overviewHeight*windowHeight;
|
||||||
|
|
||||||
|
$("#workarea").scrollLeft(portX);
|
||||||
|
$("#workarea").scrollTop(portY);
|
||||||
|
};
|
||||||
|
$( "#overview_window_view_box" ).draggable({ containment: "parent"
|
||||||
|
,drag: updateViewPortFromViewBox
|
||||||
|
,start:function(){overviewWindowGlobals.viewBoxDragging=true; }
|
||||||
|
,stop :function(){overviewWindowGlobals.viewBoxDragging=false;}
|
||||||
|
});
|
||||||
|
$("#overviewMiniView").click(function(evt){
|
||||||
|
//Firefox doesn't support evt.offsetX and evt.offsetY
|
||||||
|
var mouseX=(evt.offsetX || evt.originalEvent.layerX);
|
||||||
|
var mouseY=(evt.offsetY || evt.originalEvent.layerY);
|
||||||
|
var overviewWidth =$("#overviewMiniView").attr("width" );
|
||||||
|
var overviewHeight=$("#overviewMiniView").attr("height");
|
||||||
|
var viewBoxWidth =parseFloat($("#overview_window_view_box").css("min-width" ));
|
||||||
|
var viewBoxHeight=parseFloat($("#overview_window_view_box").css("min-height"));
|
||||||
|
|
||||||
|
var viewBoxX=mouseX-.5*viewBoxWidth;
|
||||||
|
var viewBoxY=mouseY-.5*viewBoxHeight;
|
||||||
|
//deal with constraints
|
||||||
|
if(viewBoxX<0){
|
||||||
|
viewBoxX=0;
|
||||||
|
}
|
||||||
|
if(viewBoxY<0){
|
||||||
|
viewBoxY=0;
|
||||||
|
}
|
||||||
|
if(viewBoxX+viewBoxWidth>overviewWidth){
|
||||||
|
viewBoxX=overviewWidth-viewBoxWidth;
|
||||||
|
}
|
||||||
|
if(viewBoxY+viewBoxHeight>overviewHeight){
|
||||||
|
viewBoxY=overviewHeight-viewBoxHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#overview_window_view_box").css("top",viewBoxY+"px");
|
||||||
|
$("#overview_window_view_box").css("left",viewBoxX+"px");
|
||||||
|
updateViewPortFromViewBox();
|
||||||
|
});
|
||||||
|
|
||||||
|
return{
|
||||||
|
name: "overview window",
|
||||||
|
canvasUpdated:updateViewDimensions,
|
||||||
|
workareaResized:updateViewBox
|
||||||
|
};
|
||||||
|
});
|
|
@ -183,16 +183,18 @@ select {
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
|
overflow-x:hidden;
|
||||||
|
overflow-y:visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
#layerpanel {
|
#layerpanel {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position:absolute;
|
position:relative;
|
||||||
top: 1px;
|
top: 0px;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
right: 0;
|
left: 12px;
|
||||||
width: 0;
|
width: 0;
|
||||||
overflow: auto;
|
overflow: hidden;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
<html>
|
<html>
|
||||||
<!-- removed for now, causes problems in Firefox: manifest="svg-editor.manifest" -->
|
<!-- removed for now, causes problems in Firefox: manifest="svg-editor.manifest" -->
|
||||||
<head>
|
<head>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge, chrome=1"/>
|
||||||
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
||||||
<link rel="icon" type="image/png" href="images/logo.png"/>
|
<link rel="icon" type="image/png" href="images/logo.png"/>
|
||||||
|
@ -56,6 +56,7 @@
|
||||||
<!-- always minified scripts -->
|
<!-- always minified scripts -->
|
||||||
<script type="text/javascript" src="jquery-ui/jquery-ui-1.8.17.custom.min.js"></script>
|
<script type="text/javascript" src="jquery-ui/jquery-ui-1.8.17.custom.min.js"></script>
|
||||||
<script type="text/javascript" src="jgraduate/jpicker.js"></script>
|
<script type="text/javascript" src="jgraduate/jpicker.js"></script>
|
||||||
|
<script type="text/javascript" src="extensions/ext-overview_window.js"></script>
|
||||||
|
|
||||||
<!-- feeds -->
|
<!-- feeds -->
|
||||||
<link rel="alternate" type="application/atom+xml" title="SVG-edit General Discussion" href="http://groups.google.com/group/svg-edit/feed/atom_v1_0_msgs.xml" />
|
<link rel="alternate" type="application/atom+xml" title="SVG-edit General Discussion" href="http://groups.google.com/group/svg-edit/feed/atom_v1_0_msgs.xml" />
|
||||||
|
|
|
@ -3603,6 +3603,7 @@
|
||||||
$('#layerpanel').width('+=' + delta);
|
$('#layerpanel').width('+=' + delta);
|
||||||
rulerX.css('right', parseInt(rulerX.css('right'), 10) + delta);
|
rulerX.css('right', parseInt(rulerX.css('right'), 10) + delta);
|
||||||
workarea.css('right', parseInt(workarea.css('right'), 10) + delta);
|
workarea.css('right', parseInt(workarea.css('right'), 10) + delta);
|
||||||
|
svgCanvas.runExtensions("workareaResized");
|
||||||
};
|
};
|
||||||
|
|
||||||
var resizeSidePanel = function(evt) {
|
var resizeSidePanel = function(evt) {
|
||||||
|
|
|
@ -7561,7 +7561,7 @@ this.updateCanvas = function(w, h) {
|
||||||
}
|
}
|
||||||
|
|
||||||
selectorManager.selectorParentGroup.setAttribute("transform", "translate(" + x + "," + y + ")");
|
selectorManager.selectorParentGroup.setAttribute("transform", "translate(" + x + "," + y + ")");
|
||||||
|
runExtensions("canvasUpdated",{new_x:x, new_y:y, old_x:old_x, old_y:old_y, d_x:x - old_x, d_y:y - old_y});
|
||||||
return {x:x, y:y, old_x:old_x, old_y:old_y, d_x:x - old_x, d_y:y - old_y};
|
return {x:x, y:y, old_x:old_x, old_y:old_y, d_x:x - old_x, d_y:y - old_y};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue