File: zoom.c

package info (click to toggle)
irsim 9.7.104-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,964 kB
  • sloc: ansic: 24,763; sh: 7,499; makefile: 418; csh: 269; tcl: 88
file content (62 lines) | stat: -rw-r--r-- 1,785 bytes parent folder | download | duplicates (7)
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
/*
 *     ********************************************************************* 
 *     * Copyright (C) 1988, 1990 Stanford University.                     * 
 *     * Permission to use, copy, modify, and distribute this              * 
 *     * software and its documentation for any purpose and without        * 
 *     * fee is hereby granted, provided that the above copyright          * 
 *     * notice appear in all copies.  Stanford University                 * 
 *     * makes no representations about the suitability of this            * 
 *     * software for any purpose.  It is provided "as is" without         * 
 *     * express or implied warranty.  Export of this software outside     * 
 *     * of the United States of America may require an export license.    * 
 *     *********************************************************************
 */

#include "ana.h"
#include "ana_glob.h"


public void Zoom( what )
  char  *what;
  {
    TimeType  start;
    int       steps;

    switch( *what )
      {
	case 'i' :				/* zoom in */
	    steps = tims.steps / 2;
	    if( steps < 10 )
		steps = 10;
	    start = tims.start + steps / 2;
	    if( start > tims.last )
	      {
		start = tims.last - steps / 2;
		if( start < tims.first )
		    start = tims.first;
	      }
	    break;

	case 'o' :				/* zoom out */
	    steps = tims.steps * 2;
	    if (tims.start < tims.steps / 2)
		start = 0;
	    else
		start = tims.start - tims.steps / 2;
	    if( start < tims.first )
		start = tims.first;
	    if( steps > MAX_TIME or (start + steps) > MAX_TIME )
		return;
	    break;
      }

    if( tims.steps != steps )
      {
	tims.start = start;
	tims.steps = steps;
	tims.end = start + steps;
	RedrawTimes();
	UpdateScrollBar();
 	DrawTraces( start, tims.end );
     }
  }