summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source/class/Smokeping/ui/Zoomer.js
blob: 8d20d88cbd7263fd741997be504801a6add6dffd (plain)
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
/* ************************************************************************
#module(Smokeping)
************************************************************************ */

/**
 * Lets you selcet an Area. Depending on the angel of your selection you get
 * a time, a range or both.
 *
 */

qx.Class.define('Smokeping.ui.Zoomer',
{
    extend: qx.ui.layout.CanvasLayout,        

	include: Smokeping.ui.MPosition,
    /*
    *****************************************************************************
       CONSTRUCTOR
    *****************************************************************************
    */

    /**
     * @param target  {Widget}    What surface should we base our selection on
     *
     * @param width   {Integer}   Width of the 'interesting' area of the target
     *
     * @param height  {Integer}   Height ot the 'interesting' area of the target
     *
     * @param right   {Integer}   Distance from the right edge
     *
     * @param top     {Integer}   Distance from the top
     *
	 * The zoomer will not activate if the ctrl key is pressed. This allows
     * for the Mover to act on these events
     *
     */

    construct: function (target,width,height,top,right) {
        this._target = target;
		this._width = width;
		this._height = height+1; // some where the calc is 1 off. this fixes it
		this._top = top;
		this._right = right;
		with(this){
			base(arguments);
			set({
				width:		  '100%',
				height:		  '100%',
                visibility:   false
			});
		}
        var zoomer_defaults = {
            backgroundColor: 'black',
            opacity: 0.1,
            overflow: 'hidden' // important to make box go to 'zero height' on ie6
        };
	    var dir = ['left','right','top','bottom' ];
        var z = [];
        this._zoomer = z;
	    for(var i=0;i<dir.length;i++){
			z[dir[i]] = new qx.ui.basic.Terminator();    
	        z[dir[i]].set(zoomer_defaults);
	        this.add(z[dir[i]]);
		}
        
        z['frame'] = new qx.ui.basic.Terminator();    
        z['frame'].set(zoomer_defaults);
        z['frame'].set({
			opacity: 1,
            backgroundColor: 'transparent',
            border: new qx.ui.core.Border(1,'dotted','#808080')			
        });
        
		this.add(z['frame']);
		this._zooming = false; // we are not curently in zoom mode
  		this._target.addEventListener("mousedown", this._zoom_start,this);
        this._target.addEventListener("mousemove", this._zoom_move,this);
        this._target.addEventListener("mouseup",   this._zoom_end,this);
    },

	members: {
    	_zoom_start: function(e){
			if (e.isCtrlPressed()) return;
			this._zooming = true;
			var z = this._zoomer;
			this._init_cache();	

            this._selector_start_x = this._get_mouse_x(e); 
            this._selector_start_y = this._get_mouse_y(e);
 
            this._target.setCapture(true);                                    
            this._zoom_move(e);
            this.setVisibility(true);
    	},

		_zoom_move: function(e){
			var z = this._zoomer;
            if (this._target.getCapture() && this._zooming ){        

       			var mouse_x = this._get_mouse_x(e);

                var mouse_left_x;
                var mouse_right_x;
	            if (mouse_x > this._selector_start_x){
                    mouse_left_x = this._selector_start_x;
                    mouse_right_x = mouse_x;
                }
                else {
                    mouse_right_x = this._selector_start_x;
                    mouse_left_x = mouse_x;
                }        

       			var mouse_y = this._get_mouse_y(e);
                var mouse_top_y;
                var mouse_bottom_y;
	            if (mouse_y > this._selector_start_y){
                    mouse_top_y = this._selector_start_y;
                    mouse_bottom_y = mouse_y;
                }
                else {
                    mouse_bottom_y = this._selector_start_y;
                    mouse_top_y = mouse_y;
                }        

                var time_sel = 1;
                var range_sel = 1;
                var pi = 3.14159265;
                var angle = Math.atan ((mouse_right_x - mouse_left_x) / (mouse_bottom_y - mouse_top_y));
                if ( angle > Math.PI/2 * 0.85){
                    range_sel = 0;
                }
                if ( angle < Math.PI/2 * 0.15){
                    time_sel = 0;
                }
                
                z['top'].set({
	    			left: time_sel ? mouse_left_x : this._canvas_left,
		            width: time_sel ? mouse_right_x - mouse_left_x : this._width,
                    top: 0,
                    height: range_sel ? mouse_top_y : this._canvas_top
    			});
                           
                z['bottom'].set({
	    			left: time_sel ? mouse_left_x : this._canvas_left,
		            width: time_sel ? mouse_right_x - mouse_left_x : this._width,
                    top: range_sel ? mouse_bottom_y : this._canvas_top + this._height,
                    height: range_sel ? this._image_height - mouse_bottom_y : this._canvas_bottom
		    	});

    			z['left'].set({
		            width: time_sel ? mouse_left_x: this._canvas_left,
                    height: this._image_height
                });

                z['right'].set({
	    			left: time_sel ? mouse_right_x : this._image_width - this._canvas_right,
		            width: time_sel ? this._image_width - mouse_right_x :  this._canvas_right,
                    height: this._image_height
    			});
                z['frame'].set({
		    		left: time_sel ? mouse_left_x : this._canvas_left,        
			        width: time_sel ? mouse_right_x - mouse_left_x : this._width,
                    top: range_sel ? mouse_top_y : this._canvas_top,
                    height: range_sel ? mouse_bottom_y - mouse_top_y : this._height
    			});			
			}
		},
		_zoom_end: function(e){
			if (!this._zooming) return;
			var z = this._zoomer;
			this._target.setCapture(false);
            this.setVisibility(false);
			this._zooming = false;

            if (z['bottom'].getTop() == z['top'].getTop()+z['top'].getHeight()){
                this._zoom_factor_top = 0;
                this._zoom_factor_bottom = 0;
            }
            else {
                var prev_factor = 1 - this._zoom_factor_top - this._zoom_factor_bottom; 
                this._zoom_factor_top = 
					(z['top'].getHeight()-this._canvas_top)/this._height * prev_factor
                        + this._zoom_factor_top;
                this.zoom_factor_bottom =
                    (z['bottom'].getHeight()-this._canvas_bottom)/this._height * prev_factor
                        + this._zoom_factor_bottom;
             }
		}
	}


});