1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/*
overviewSelect.js -- a DHTML library for drag/rubber-band selection in gbrowse
This class handles overview-specific configuration.
Sheldon McKay <mckays@cshl.edu>
$Id$
*/
var overviewObject;
var overviewBalloon;
// Constructor
var Overview = function () {
this.imageId = 'Overview Scale_image';
this.autoSubmit = true;
this.marginTop = '5px';
this.background = 'yellow';
this.opacity = 0.7;
this.fontColor = 'blue';
this.border = '1px solid black';
this.menuWidth = '160px';
return this;
}
// Inherit from base class SelectArea
Overview.prototype = new SelectArea();
// Overview-specific config.
Overview.prototype.initialize = function() {
var self = new Overview;
// not ready for non drag and drop implementation
//var dnd = document.mainform.drag_and_drop;
//if (!dnd || !dnd.checked) return false;
var i = $(self.imageId);
if (!i) return false;
var img = document.getElementsByName('overview');
for (var n = 0;n < img.length; n++) {
if (img[n].getAttribute('src')) {
var nullFunc = function(){return false};
img[n].onclick = nullFunc;
}
}
var p = i.parentNode.parentNode;
i = self.replaceImage(i);
self.selectLayer = p.parentNode.parentNode;
// try {
// overviewBalloon = new Balloon();
// overviewBalloon.vOffset = 1;
// overviewBalloon.showOnly = 2; // just show twice
// var helpFunction = function(event) {
// if (!event) {
// event = window.event;
// }
// var help = '<b>Overview:</b> Click here to recenter or click and drag left or right to select a region';
// overviewBalloon.showTooltip(event,help,0,250);
// }
// i.onmouseover = helpFunction;
// }
// catch(e) {
// i.setAttribute('title','click and drag to select a region');
// }
self.scalebar = i;
self.addSelectMenu('overview');
self.addSelectBox('overview');
overviewObject = self;
}
Overview.prototype.startSelection = function(event) {
var self = overviewObject;
var evt = event || window.event;
SelectArea.prototype.startRubber(self,event);
}
Overview.prototype.getSegment = function(i) {
this.ref = document.mainform.ref.value;
this.segmentStart = parseInt(document.mainform.overview_start.value);
this.segmentEnd = parseInt(document.mainform.overview_stop.value);
this.detailStart = parseInt(document.mainform.detail_start.value);
this.detailEnd = parseInt(document.mainform.detail_stop.value);
this.padLeft = parseInt(document.mainform.image_padding.value);
this.pixelToDNA = parseFloat(document.mainform.overview_pixel_ratio.value);
this.flip = 0;
var actualWidth = this.elementLocation(i,'width');
var expectedWidth = parseInt(document.mainform.overview_width.value);
if (actualWidth > expectedWidth) {
this.padLeft += actualWidth - expectedWidth;
}
this.pixelStart = this.padLeft;
}
Overview.prototype.loadSegmentInfo = function() {
// get the segment info from gbrowse CGI parameters
var self = overviewObject;
var i = $(self.imageId);
// Uh oh! We must be in GBrowse_syn!
if (Controller.gbrowse_syn) {
this.getSegment(i);
return true;
}
var segment_info = Controller.segment_info;
this.ref = segment_info.ref;
this.segmentStart = parseInt(segment_info.overview_start);
this.segmentEnd = parseInt(segment_info.overview_stop);
this.flip = 0;
this.padLeft = parseInt(segment_info.image_padding);
this.pixelToDNA = parseFloat(segment_info.overview_pixel_ratio);
this.detailStart = parseInt(segment_info.detail_start);
this.detailEnd = parseInt(segment_info.detail_stop);
this.max_segment = parseInt(segment_info.max_segment);
// If the keystyle is left, there may be extra padding
var actualWidth = this.elementLocation(i,'width');
var expectedWidth = parseInt(segment_info.overview_width);
if (actualWidth > expectedWidth) {
this.padLeft += actualWidth - expectedWidth;
}
this.pixelStart = this.padLeft;
}
Overview.prototype.formatMenu = function() {
this.menuHTML = this.selectMenu.innerHTML || '\
<div style="padding:5px;text-align:center">\
<b>SELECTION</b><hr>\
<a href="javascript:SelectArea.prototype.clearAndSubmit()">' + Controller.translate('ZOOM') + '</a>\
| \
<a href="javascript:SelectArea.prototype.cancelRubber()">' + Controller.translate('CANCEL') + '</a>\
</div>';
}
|