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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
<?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) 2014 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
define('WT_SCRIPT_NAME', 'timeline.php');
require './includes/session.php';
$controller=new WT_Controller_Timeline();
$controller
->pageHeader()
->addExternalJavascript(WT_STATIC_URL . 'js/autocomplete.js')
->addInlineJavascript('autocomplete();');
?>
<script>
var internet_explorer = typeof(document.all) !== 'undefined'; // mouse handling is different in IE
var ob = null;
var Y = 0;
var X = 0;
var oldx = 0;
var oldlinew = 0;
var personnum = 0;
var type = 0;
var boxmean = 0;
function ageCursorMouseDown(divbox, num) {
ob = divbox;
personnum = num;
type = 0;
X = ob.offsetLeft;
Y = ob.offsetTop;
if (internet_explorer) {
oldx = event.clientX + document.documentElement.scrollLeft;
}
}
function factMouseDown(divbox, num, mean) {
ob = divbox;
personnum = num;
boxmean = mean;
type = 1;
oldx = ob.offsetLeft;
if (internet_explorer) {
oldlinew = event.clientX + document.documentElement.scrollLeft;
} else {
oldlinew = 0;
}
}
document.onmousemove = function (e) {
if (ob === null) {
return true;
}
var tldiv = document.getElementById("timeline_chart");
var newx = 0;
var newy = 0;
if (type === 0) {
// age boxes
if (internet_explorer) {
newy = event.clientY + document.documentElement.scrollTop - tldiv.offsetTop;
newx = event.clientX + document.documentElement.scrollLeft - tldiv.offsetLeft;
} else {
newy = e.pageY - tldiv.offsetTop;
newx = e.pageX - tldiv.offsetLeft;
if (oldx === 0) {
oldx = newx;
}
}
if (newy < topy - bheight / 2) {
newy = topy - bheight / 2;
}
if (newy > bottomy) {
newy = bottomy - 1;
}
ob.style.top = newy + "px";
var tyear = (newy + bheight - 4 - topy + scale) / scale + baseyear;
var year = Math.floor(tyear);
var month = Math.floor(tyear * 12 - year * 12);
var day = Math.floor(tyear * 365 - year * 365 - month * 30);
var mstamp = year * 365 + month * 30 + day;
var bdstamp = birthyears[personnum] * 365 + birthmonths[personnum] * 30 + birthdays[personnum];
var daydiff = mstamp - bdstamp;
var ba = 1;
if (daydiff < 0 ) {
ba = -1;
daydiff = (bdstamp - mstamp);
}
var yage = Math.floor(daydiff / 365);
var mage = Math.floor((daydiff - yage * 365) / 30);
var dage = Math.floor(daydiff - yage * 365 - mage * 30);
if (dage < 0) {
mage = mage - 1;
}
if (dage < -30) {
dage = 30 + dage;
}
if (mage < 0) {
yage = yage - 1;
}
if (mage < -11) {
mage = 12 + mage;
}
var yearform = document.getElementById('yearform' + personnum);
var ageform = document.getElementById('ageform' + personnum);
yearform.innerHTML = year + " " + month + " <?php echo mb_substr(WT_I18N::translate('Month:'), 0, 1); ?> " + day + " <?php echo mb_substr(WT_I18N::translate('Day:'), 0, 1); ?>";
if (ba * yage > 1 || ba * yage < -1 || ba * yage === 0) {
ageform.innerHTML = (ba * yage) + " <?php echo mb_substr(WT_I18N::translate('years'), 0, 1); ?> " + (ba * mage) + " <?php echo mb_substr(WT_I18N::translate('Month:'), 0, 1); ?> " + (ba * dage) + " <?php echo mb_substr(WT_I18N::translate('Day:'), 0, 1); ?>";
} else {
ageform.innerHTML = (ba * yage) + " <?php echo mb_substr(WT_I18N::translate('Year:'), 0, 1); ?> " + (ba * mage) + " <?php echo mb_substr(WT_I18N::translate('Month:'), 0, 1); ?> " + (ba * dage) + " <?php echo mb_substr(WT_I18N::translate('Day:'), 0, 1); ?>";
}
var line = document.getElementById('ageline' + personnum);
var temp = newx-oldx;
if (textDirection === 'rtl') {
temp = temp * -1;
}
line.style.width = (line.width + temp) + "px";
oldx = newx;
return false;
} else {
// fact boxes
var linewidth;
if (internet_explorer) {
newy = event.clientY + document.documentElement.scrollTop - tldiv.offsetTop;
newx = event.clientX + document.documentElement.scrollLeft - tldiv.offsetLeft;
linewidth = event.clientX + document.documentElement.scrollLeft;
} else {
newy = e.pageY - tldiv.offsetTop;
newx = e.pageX - tldiv.offsetLeft;
if (oldx === 0) {
oldx = newx;
}
linewidth = e.pageX;
}
// get diagnal line box
var dbox = document.getElementById('dbox' + personnum);
var etopy;
var ebottomy;
// set up limits
if (boxmean - 175 < topy) {
etopy = topy;
} else {
etopy = boxmean - 175;
}
if (boxmean + 175 > bottomy) {
ebottomy = bottomy;
} else {
ebottomy = boxmean + 175;
}
// check if in the bounds of the limits
if (newy < etopy) {
newy = etopy;
}
if (newy > ebottomy) {
newy = ebottomy;
}
// calculate the change in Y position
var dy = newy-ob.offsetTop;
// check if we are above the starting point and switch the background image
if (newy < boxmean) {
if (textDirection === 'ltr') {
dbox.style.backgroundImage = "url('<?php echo $WT_IMAGES["dline"]; ?>')";
dbox.style.backgroundPosition = "0% 100%";
} else {
dbox.style.backgroundImage = "url('<?php echo $WT_IMAGES["dline2"]; ?>')";
dbox.style.backgroundPosition = "0% 0%";
}
dy = -dy;
dbox.style.top = (newy + bheight / 3) + "px";
} else {
if (textDirection === 'ltr') {
dbox.style.backgroundImage = "url('<?php echo $WT_IMAGES["dline2"]; ?>')";
dbox.style.backgroundPosition = "0% 0%";
} else {
dbox.style.backgroundImage = "url('<?php echo $WT_IMAGES["dline"]; ?>')";
dbox.style.backgroundPosition = "0% 100%";
}
dbox.style.top = (boxmean + bheight / 3) + "px";
}
// the new X posistion moves the same as the y position
if (textDirection === 'ltr') {
newx = dbox.offsetLeft + Math.abs(newy - boxmean);
} else {
newx = dbox.offsetRight + Math.abs(newy - boxmean);
}
// set the X position of the box
if (textDirection === 'ltr') {
ob.style.left = newx + "px";
}
else {
ob.style.right = newx + "px";
}
// set new top positions
ob.style.top = newy + "px";
// get the width for the diagnal box
var newwidth = (ob.offsetLeft-dbox.offsetLeft);
// set the width
dbox.style.width = newwidth + "px";
if (textDirection === 'rtl') {
dbox.style.right = (dbox.offsetRight - newwidth) + 'px';
}
dbox.style.height = newwidth + "px";
// change the line width to the change in the mouse X position
line = document.getElementById('boxline' + personnum);
if (oldlinew !== 0) {
line.width = line.width + (linewidth - oldlinew);
}
oldlinew = linewidth;
oldx = newx;
return false;
}
};
document.onmouseup = function () {
ob = null;
oldx = 0;
}
</script>
<h2><?php echo WT_I18N::translate('Timeline'); ?></h2>
<form name="people" action="?">
<input type="hidden" name="ged" value="<?php echo WT_Filter::escapeHtml(WT_GEDCOM); ?>">
<?php
$controller->checkPrivacy();
?>
<table>
<tr>
<?php
$i=0;
$count = count($controller->people);
$half = $count;
if ($count>5) {
$half = ceil($count/2);
}
$half++;
foreach ($controller->people as $p=>$indi) {
$pid = $indi->getXref();
$col = $p % 6;
if ($i == $half) {
echo "</tr><tr>";
}
$i++;
?>
<td class="person<?php echo $col; ?>" style="padding: 5px;">
<?php
if ($indi && $indi->canShow()) {
if ($indi->getSex()=="M") {
echo $indi->getSexImage('large', '', WT_I18N::translate('Male'));
} elseif ($indi->getSex()=="F") {
echo $indi->getSexImage('large', '', WT_I18N::translate('Female'));
} else {
echo $indi->getSexImage('large', '', WT_I18N::translate_c('unknown gender', 'Unknown'));
}
?>
<a href="<?php echo $indi->getHtmlUrl(); ?>"> <?php echo $indi->getFullName(); ?><br>
<?php echo $indi->getAddName(); ?><br>
</a>
<input type="hidden" name="pids[<?php echo $p; ?>]" value="<?php echo WT_Filter::escapeHtml($pid); ?>">
<a href="timeline.php?<?php echo $controller->pidlinks; ?>&scale=<?php echo $controller->scale; ?>&remove=<?php echo $pid; ?>&ged=<?php echo WT_GEDURL; ?>" >
<span class="details1"><?php echo WT_I18N::translate('Remove person'); ?></span></a>
<?php if (!empty($controller->birthyears[$pid])) { ?>
<span class="details1"><br>
<?php echo /* I18N: an age indicator, which can be dragged around the screen */ WT_I18N::translate('Show an age cursor?'); ?>
<input type="checkbox" name="agebar<?php echo $p; ?>" value="ON" onclick="jQuery('#agebox<?php echo $p; ?>').toggle();">
</span>
<?php }
?>
<br>
<?php
} else {
echo '<div class="error">', WT_I18N::translate('This information is private and cannot be shown.'), '</div>';
?>
<input type="hidden" name="pids[<?php echo $p; ?>]" value="<?php echo WT_Filter::escapeHtml($pid); ?>">
<br>
<a href="timeline.php?<?php echo $controller->pidlinks; ?>&scale=<?php echo $controller->scale; ?>&remove=<?php echo $pid; ?>&ged=<?php echo WT_GEDURL; ?>" >
<span class="details1"><?php echo WT_I18N::translate('Remove person'); ?></span></a>
<br>
<?php } ?>
</td>
<?php }
if (!isset($col)) $col = 0;
?>
<td class="person<?php echo $col; ?>" style="padding: 5px;" valign="top">
<?php echo WT_I18N::translate('Add another individual to the chart'), '<br>'; ?>
<input class="pedigree_form" data-autocomplete-type="INDI" type="text" size="5" id="newpid" name="newpid">
<?php echo print_findindi_link('newpid'); ?>
<br>
<br>
<div style="text-align: center;"><input type="submit" value="<?php echo WT_I18N::translate('Add'); ?>"></div>
</td>
<?php
if (count($controller->people)>0) {
$scalemod = round($controller->scale*.2) + 1;
?>
<td class="list_value" style="padding: 5px;">
<a href="<?php echo WT_SCRIPT_NAME."?".$controller->pidlinks."scale=".($controller->scale + $scalemod); ?>&ged=<?php echo WT_GEDURL; ?>" class="icon-zoomin" title="<?php echo WT_I18N::translate('Zoom in'); ?>"></a><br>
<a href="<?php echo WT_SCRIPT_NAME."?".$controller->pidlinks."scale=".($controller->scale - $scalemod); ?>&ged=<?php echo WT_GEDURL; ?>" class="icon-zoomout" title="<?php echo WT_I18N::translate('Zoom out'); ?>"></a><br>
<input type="button" value="<?php echo WT_I18N::translate('Clear chart'); ?>" onclick="window.location = 'timeline.php?ged=<?php echo WT_GEDURL; ?>';">
</td>
<?php } ?>
</tr>
</table>
<br><a href="lifespan.php?ged=<?php echo WT_GEDURL; ?>"><b><?php echo WT_I18N::translate('Show lifespans'); ?></b></a>
</form>
<?php
if (count($controller->people)>0) {
?>
<div id="timeline_chart">
<!-- print the timeline line image -->
<div id="line" style="position:absolute; <?php echo $TEXT_DIRECTION =="ltr"?"left: ".($basexoffset + 22):"right: ".($basexoffset + 22); ?>px; top: <?php echo $baseyoffset; ?>px;">
<img src="<?php echo $WT_IMAGES["vline"]; ?>" width="3" height="<?php echo ($baseyoffset + (($controller->topyear-$controller->baseyear)*$controller->scale)); ?>" alt="">
</div>
<!-- print divs for the grid -->
<div id="scale<?php echo $controller->baseyear; ?>" style="position:absolute; <?php echo ($TEXT_DIRECTION =="ltr"?"left: $basexoffset":"right: $basexoffset"); ?>px; top: <?php echo ($baseyoffset-5); ?>px; font-size: 7pt; text-align: <?php echo ($TEXT_DIRECTION =="ltr"?"left":"right"); ?>;">
<?php echo $controller->baseyear . '—'; ?>
</div>
<?php
// at a scale of 25 or higher, show every year
$mod = 25 / $controller->scale;
if ($mod < 1) {
$mod = 1;
}
for ($i = $controller->baseyear + 1; $i < $controller->topyear; $i++) {
if ($i % $mod == 0) {
echo "<div id=\"scale$i\" style=\"position:absolute; " . ($TEXT_DIRECTION =="ltr"?"left: $basexoffset":"right: $basexoffset") . "px; top:" . ($baseyoffset + (($i - $controller->baseyear) * $controller->scale) - $controller->scale / 2) . "px; font-size: 7pt; text-align:" . ($TEXT_DIRECTION === "ltr" ? "left" : "right") . ";\">";
echo $i . '—';
echo '</div>';
}
}
echo "<div id=\"scale{$controller->topyear}\" style=\"position:absolute; ".($TEXT_DIRECTION =="ltr"?"left: $basexoffset":"right: $basexoffset")."px; top:".($baseyoffset+(($controller->topyear-$controller->baseyear)*$controller->scale))."px; font-size: 7pt; text-align:".($TEXT_DIRECTION =="ltr"?"left":"right").";\">";
echo $controller->topyear . '—';
echo '</div>';
sort_facts($controller->indifacts);
$factcount=0;
foreach ($controller->indifacts as $fact) {
$controller->print_time_fact($fact);
$factcount++;
}
// print the age boxes
foreach ($controller->people as $p=>$indi) {
$pid = $indi->getXref();
$ageyoffset = $baseyoffset + ($controller->bheight*$p);
$col = $p % 6;
?>
<div id="agebox<?php echo $p; ?>" style="cursor:move; position:absolute; <?php echo ($TEXT_DIRECTION =="ltr"?"left: ".($basexoffset+20):"right: ".($basexoffset+20)); ?>px; top:<?php echo $ageyoffset; ?>px; height:<?php echo $controller->bheight; ?>px; display:none;" onmousedown="ageCursorMouseDown(this, <?php echo $p; ?>);">
<table cellspacing="0" cellpadding="0">
<tr>
<td>
<img src="<?php echo $WT_IMAGES["hline"]; ?>" name="ageline<?php echo $p; ?>" id="ageline<?php echo $p; ?>" align="left" width="25" height="3" alt="">
</td>
<td valign="top">
<?php
$tyear = round(($ageyoffset+($controller->bheight/2))/$controller->scale)+$controller->baseyear;
if (!empty($controller->birthyears[$pid])) {
$tage = $tyear-$controller->birthyears[$pid];
?>
<table class="person<?php echo $col; ?>" style="cursor: hand;">
<tr>
<td valign="top" width="120"><?php echo WT_I18N::translate('Year:'); ?>
<span id="yearform<?php echo $p; ?>" class="field">
<?php echo $tyear; ?>
</span>
</td>
<td valign="top" width="130">(<?php echo WT_I18N::translate('Age'); ?>
<span id="ageform<?php echo $p; ?>" class="field"><?php echo $tage; ?></span>)
</td>
</tr>
</table>
<?php } ?>
</td>
</tr>
</table><br><br><br>
</div><br><br><br><br>
<?php } ?>
<script>
var bottomy = <?php echo ($baseyoffset+(($controller->topyear-$controller->baseyear)*$controller->scale)); ?>-5;
var topy = <?php echo $baseyoffset; ?>;
var baseyear = <?php echo $controller->baseyear-(25/$controller->scale); ?>;
var birthyears = [];
var birthmonths = [];
var birthdays = [];
<?php
foreach ($controller->people as $c=>$indi) {
$pid = $indi->getXref();
if (!empty($controller->birthyears[$pid])) echo "birthyears[".$c."]=".$controller->birthyears[$pid].";";
if (!empty($controller->birthmonths[$pid])) echo "birthmonths[".$c."]=".$controller->birthmonths[$pid].";";
if (!empty($controller->birthdays[$pid])) echo "birthdays[".$c."]=".$controller->birthdays[$pid].";";
}
?>
var bheight = <?php echo $controller->bheight; ?>;
var scale = <?php echo $controller->scale; ?>;
</script>
</div>
<?php } ?>
<script>
timeline_chart_div = document.getElementById("timeline_chart");
if (timeline_chart_div) {
timeline_chart_div.style.height = '<?php echo $baseyoffset+(($controller->topyear-$controller->baseyear)*$controller->scale*1.1); ?>px';
}
</script>
|