forked from fisharebest/webtrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lifespan.php
239 lines (230 loc) · 8.9 KB
/
lifespan.php
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<?php
// Display a timeline chart for a group of individuals
//
// Use the $pids array to set which individuals to show on the chart
//
// webtrees: Web based Family History software
// Copyright (C) 2013 webtrees development team.
//
// Derived from PhpGedView
// Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
define('WT_SCRIPT_NAME', 'lifespan.php');
require './includes/session.php';
$controller=new WT_Controller_Lifespan();
$controller
->pageHeader()
->addExternalJavascript(WT_STATIC_URL.'js/autocomplete.js')
->addInlineJavascript('
var pastefield; function paste_id(value) { pastefield.value=value; } // For the "find indi" link
var timer;
var offSetNum = 20; // amount timeline moves with each mouse click
var speed;
// method for scrolling timeline around in portal. takes in a string for the direction the timeline is moving "Left" "Right" "Top" "Down"
function startScroll(move) {
speed = parseInt(document.buttons.speedMenu.options[document.buttons.speedMenu.selectedIndex].value) * 25; //Sets the speed of the scroll feature
timer = 1;
scroll(move);
}
function scroll(move) {
if (timer==null) return; // If timer is not set timeline doesn\'t scroll
timer = setTimeout("scroll(\'"+move+"\')",speed); // Keeps the timeline moving as long as the user holds down the mouse button on one of the direction arrows
topInnerDiv = document.getElementById("topInner");
innerDiv = document.getElementById("inner");
myouterDiv = document.getElementById("lifespan_chart");
//compares the direction the timeline is moving and how far it can move in each direction.
if (move == "left" && ((maxX+topInnerDiv.offsetLeft+350) > (myouterDiv.offsetLeft+myouterDiv.offsetWidth))) {
left = (innerDiv.offsetLeft - offSetNum)+"px";
innerDiv.style.left = left;
topInnerDiv.style.left = left;
}
else if (move == "right" && topInnerDiv.offsetLeft < (-10)) {
right = (innerDiv.offsetLeft + offSetNum)+"px";
innerDiv.style.left = right;
topInnerDiv.style.left = right;
}
else if (move == "up" && innerDiv.offsetTop > maxY) {
up = (innerDiv.offsetTop - offSetNum)+"px";
innerDiv.style.top = up;
}
else if (move == "down" && innerDiv.offsetTop < -60) {
down = (innerDiv.offsetTop + offSetNum)+"px";
innerDiv.style.top = down;
}
}
//method used to stop scrolling
function stopScroll() {
if (timer) clearTimeout(timer);
timer=null;
}
var oldMx = 0;
var oldMy = 0;
var movei1 = "";
var movei2 = "";
function pandiv() {
if (movei1=="") {
oldMx = msX;
oldMy = msY;
}
i = document.getElementById("topInner");
//alert(i.style.top);
movei1 = i;
i = document.getElementById("inner");
movei2 = i;
return false;
}
function releaseimage() {
movei1 = "";
movei2 = "";
return true;
}
// Main function to retrieve mouse x-y pos.s
function getMouseXY(e) {
if (IE) { // grab the x-y pos.s if browser is IE
msX = event.clientX + document.documentElement.scrollLeft;
msY = event.clientY + document.documentElement.scrollTop;
} else { // grab the x-y pos.s if browser is NS
msX = e.pageX;
msY = e.pageY;
}
// catch possible negative values in NS4
if (msX < 0) {msX = 0;}
if (msY < 0) {msY = 0;}
if (movei1!="") {
//ileft = parseInt(movei1.style.left);
//itop = parseInt(movei2.style.top);
var ileft = movei2.offsetLeft+1;
var itop = movei2.offsetTop+1;
ileft = ileft - (oldMx-msX);
itop = itop - (oldMy-msY);
movei1.style.left = ileft+"px";
movei2.style.left = ileft+"px";
movei2.style.top = itop+"px";
oldMx = msX;
oldMy = msY;
return false;
}
}
var IE = document.all?true:false;
if (!IE) document.captureEvents(Event.MOUSEMOVE | Event.MOUSEUP)
document.onmousemove = getMouseXY;
document.onmouseup = releaseimage;
');
$people = count($controller->people);
?>
<div id="lifespan-page">
<h2><?php echo WT_I18N::translate('Lifespans'), help_link('lifespan_chart'); ?></h2>
<table>
<tr>
<td>
<form name="people" action="?">
<input type="hidden" name="ged" value="<?php echo WT_Filter::escapeHtml(WT_GEDCOM); ?>">
<table>
<tr>
<td class="person0" style="padding: 5px" valign="top">
<?php echo WT_I18N::translate('Add another individual to the chart'); ?>
<br>
<input class="pedigree_form" type="text" size="5" id="newpid" name="newpid">
<?php print_findindi_link('newpid'); ?>
<br>
<div style="text-align: center">
<?php echo WT_I18N::translate('Include the individual’s immediate family?'); ?>
<input type="checkbox" checked="checked" value="yes" name="addFamily">
</div>
<div style="text-align: center">
<input type="submit" value="<?php echo WT_I18N::translate('Add'); ?>">
</div>
</td>
</tr>
</table>
</form>
</td>
<td>
<form name="buttons" action="lifespan.php" method="get">
<input type="hidden" name="ged" value="<?php echo WT_Filter::escapeHtml(WT_GEDCOM); ?>">
<table>
<tr>
<td align="center"><?php echo WT_I18N::translate('Speed'); ?></td>
<td align="center"><?php echo WT_I18N::translate('Begin year'); ?></td>
<td align="center"><?php echo WT_I18N::translate('End year'); ?></td>
<td align="center"><?php echo WT_Gedcom_Tag::getLabel('PLAC'); ?></td>
</tr>
<tr>
<td>
<select name="speedMenu" size="1">
<option value="4">1</option>
<option value="3">2</option>
<option value="2">3</option>
<option value="1">4</option>
</select>
</td>
<td>
<input type="text" name="beginYear" size="5" value="<?php echo $controller->beginYear==0?'':$controller->beginYear; ?>">
</td>
<td>
<input type="text" name="endYear" size="5" value="<?php echo $controller->endYear==0?'':$controller->endYear; ?>">
</td>
<td>
<input type="text" name="place" size="15" value="<?php echo $controller->place; ?>">
</td>
<td>
<input type="submit" name="search" value="<?php echo WT_I18N::translate('Search'); ?>">
</td>
<td>
<input type="button" value="<?php echo WT_I18N::translate('Clear chart'); ?>" onclick="window.location='lifespan.php?clear=1';">
</td>
</tr>
</table>
<b><?php echo WT_I18N::plural('%d Individual', '%d Individuals', $people, $people); ?></b>
</form>
</td>
</tr>
</table>
<div dir="ltr" id="lifespan_chart" class="lifespan_outer">
<div dir="ltr" id="topInner" class="lifespan_timeline" onmousedown="pandiv(); return false;">';
<?php $controller->PrintTimeline($controller->timelineMinYear,$controller->timelineMaxYear); ?>
</div>
<div id="inner" class="lifespan_people" onmousedown="pandiv(); return false;">
<?php $maxY = $controller->fillTL($controller->people,$controller->minYear,$controller->YrowLoc); ?>
</div>
<!-- Floating div controls START -->
<div dir="ltr" style="position:relative; z-index: 100; filter: alpha(opacity=67); -moz-opacity: 0.67; opacity: 0.67; width:180px; top: 80px;">
<table style="margin-left: 20px" dir="ltr" border="0" cellpadding="0">
<tr>
<td></td>
<td align="center"><a href="#" onclick="return false;" onmousedown="startScroll('down')" onmouseup="stopScroll()" class="icon-lsuparrow"></a></td>
<td></td>
</tr>
<tr>
<td><a href="#" onclick="return false;" onmousedown="startScroll('right')" onmouseup="stopScroll()" class="icon-lsltarrow"></a></td>
<td align="center"></td>
<td><a href="#" onclick="return false;" onmousedown="startScroll('left')" onmouseup="stopScroll()" class="icon-lsrtarrow"></a></td>
</tr>
<tr>
<td> </td>
<td align="center"><a href="#" onclick="return false;" onmousedown="startScroll('up')" onmouseup="stopScroll()" class="icon-lsdnarrow"></a></td>
<td> </td>
</tr>
</table>
</div>
<!-- Floating div controls END-->
</div>
</div>
<?php
// Sets the boundaries for how far the timeline can move in the up direction
$controller->addInlineJavascript('var maxY = 80-' . $maxY . ';');
// Sets the boundaries for how far the timeline can move in the left direction
$controller->addInlineJavascript('var maxX = ' . (isset($maxX)?$maxX:0) . ';');