-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathevent.js
More file actions
534 lines (429 loc) · 10.9 KB
/
Copy pathevent.js
File metadata and controls
534 lines (429 loc) · 10.9 KB
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
/*
*
* xxxxxxx xxxxxxx
* x:::::x x:::::x
* x:::::x x:::::x
* x:::::xx:::::x
* x::::::::::x
* x::::::::x
* x::::::::x
* x::::::::::x
* x:::::xx:::::x
* x:::::x x:::::x
* x:::::x x:::::x
* THE xxxxxxx xxxxxxx TOOLKIT
*
* http://www.goXTK.com
*
* Copyright (c) 2012 The X Toolkit Developers <dev@goXTK.com>
*
* The X Toolkit (XTK) is licensed under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* "Free software" is a matter of liberty, not price.
* "Free" as in "free speech", not as in "free beer".
* - Richard M. Stallman
*
*
*/
// provides
goog.provide('X.event');
goog.provide('X.event.events');
// events provided
goog.provide('X.event.ComputingEvent');
goog.provide('X.event.ComputingProgressEvent');
goog.provide('X.event.ComputingEndEvent');
goog.provide('X.event.HoverEvent');
goog.provide('X.event.HoverEndEvent');
goog.provide('X.event.ModifiedEvent');
goog.provide('X.event.PanEvent');
goog.provide('X.event.ProgressEvent');
goog.provide('X.event.RenderEvent');
goog.provide('X.event.ResetViewEvent');
goog.provide('X.event.RotateEvent');
goog.provide('X.event.ScrollEvent');
goog.provide('X.event.WindowLevelEvent');
goog.provide('X.event.ZoomEvent');
// requires
goog.require('X');
goog.require('X.object');
goog.require('X.vector');
goog.require('goog.events');
goog.require('goog.events.Event');
/**
* The super class for all events in XTK.
*
* @constructor
* @param {string} type A type identifier for this event.
* @extends goog.events.Event
*/
X.event = function(type) {
//
// call the default event constructor
goog.base(this, type);
//
// class attributes
/**
* The className of this class.
*
* @type {string}
* @protected
*/
this._classname = 'event';
};
// inherit from goog.events.Event
goog.inherits(X.event, goog.events.Event);
/**
* Creates a unique event id.
*
* @param {string} id The id.
* @return {string} A unique id.
*/
//X.event.uniqueId = function(id) {
//
// return goog.events.getUniqueId(id);
//
//};
/**
* The events of this class.
*
* @enum {string}
*/
X.event.events = {
// the pan event, where the event and focus get moved accordingly
PAN: goog.events.getUniqueId('pan'),
// the rotate event, where only the event gets moved
ROTATE: goog.events.getUniqueId('rotate'),
// the zoom event, where the event Z coordinate changes
ZOOM: goog.events.getUniqueId('zoom'),
// the scroll event
SCROLL: goog.events.getUniqueId('scroll'),
// the render event
RENDER: goog.events.getUniqueId('render'),
// the reset view event
RESETVIEW: goog.events.getUniqueId('resetview'),
// window_level modification event
WINDOWLEVEL: goog.events.getUniqueId('windowlevel'),
// the object modified event
MODIFIED: goog.events.getUniqueId('modified'),
// the object remove event
REMOVE: goog.events.getUniqueId('remove'),
// the loading progress event
PROGRESS: goog.events.getUniqueId('progress'),
// the hover event
HOVER: goog.events.getUniqueId('hover'),
// the hover end event
HOVER_END: goog.events.getUniqueId('hover_end'),
// the computing event
COMPUTING: goog.events.getUniqueId('computing'),
// the computing end event
COMPUTING_END: goog.events.getUniqueId('computing_end'),
// the computing progress event
COMPUTING_PROGRESS: goog.events.getUniqueId('computing_progress')
};
/**
* The window/level event to initiate updating a volume's window/level settings.
*
* @constructor
* @extends X.event
*/
X.event.WindowLevelEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.WINDOWLEVEL);
/**
* The flag to increase or decrease the window. + to increase, - to decrease.
*
* @type {!number}
* @protected
*/
this._window = 0;
/**
* The flag to increase or decrease the level. + to increase, - to decrease.
*
* @type {!number}
* @protected
*/
this._level = 0;
};
// inherit from goog.events.Event
goog.inherits(X.event.WindowLevelEvent, X.event);
/**
* The pan event to initiate moving the event and the focus.
*
* @constructor
* @extends X.event
*/
X.event.PanEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.PAN);
/**
* The distance to pan in screen space.
*
* @type {!X.vector}
* @protected
*/
this._distance = new X.vector(0, 0, 0);
};
// inherit from goog.events.Event
goog.inherits(X.event.PanEvent, X.event);
/**
* The rotate event to initiate moving the event around the focus.
*
* @constructor
* @extends X.event
*/
X.event.RotateEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.ROTATE);
/**
* The distance to pan in screen space.
*
* @type {!X.vector}
* @protected
*/
this._distance = new X.vector(0, 0, 0);
};
// inherit from goog.events.Event
goog.inherits(X.event.RotateEvent, X.event);
/**
* The zoom event to initiate zoom in or zoom out.
*
* @constructor
* @extends X.event
*/
X.event.ZoomEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.ZOOM);
/**
* The flag for the zooming direction. If TRUE, the zoom operation will move
* the objects closer to the event. If FALSE, further away from the event.
*
* @type {!boolean}
* @protected
*/
this._in = false;
/**
* The flag for the zooming speed. If TRUE, the zoom operation will happen
* fast. If FALSE, there will be a fine zoom operation.
*
* @type {!boolean}
* @protected
*/
this._fast = false;
};
// inherit from goog.events.Event
goog.inherits(X.event.ZoomEvent, X.event);
/**
* The scroll event to initiate scrolling.
*
* @constructor
* @extends X.event
*/
X.event.ScrollEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.SCROLL);
/**
* The flag for the scrolling direction. If TRUE, the scroll operation is up.
* If FALSE, it is down.
*
* @type {!boolean}
* @protected
*/
this._up = false;
};
// inherit from goog.events.Event
goog.inherits(X.event.ScrollEvent, X.event);
/**
* The render event to update renderer.
*
* @constructor
* @extends X.event
*/
X.event.RenderEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.RENDER);
};
// inherit from goog.events.Event
goog.inherits(X.event.RenderEvent, X.event);
/**
* The hover event, indicating mouse-over on an X.object.
*
* @constructor
* @extends X.event
*/
X.event.HoverEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.HOVER);
/**
* The x coordinate.
*
* @type {!number}
* @protected
*/
this._x = 0;
/**
* The y coordinate.
*
* @type {!number}
* @protected
*/
this._y = 0;
};
// inherit from goog.events.Event
goog.inherits(X.event.HoverEvent, X.event);
/**
* The hover end event, indicating the end of the hovering state.
*
* @constructor
* @extends X.event
*/
X.event.HoverEndEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.HOVER_END);
};
// inherit from goog.events.Event
goog.inherits(X.event.HoverEndEvent, X.event);
/**
* The render event to update renderer.
*
* @constructor
* @extends X.event
*/
X.event.ResetViewEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.RESETVIEW);
};
// inherit from goog.events.Event
goog.inherits(X.event.ResetViewEvent, X.event);
/**
* The modified event to flag an object as 'dirty'.
*
* @constructor
* @extends X.event
*/
X.event.ModifiedEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.MODIFIED);
/**
* The object which was modified.
*
* @type {?X.object}
* @protected
*/
this._object = null;
/**
* A container for an X.base derived instance.
*
* @type{?X.base}
* @protected
*/
this._container = null;
};
// inherit from goog.events.Event
goog.inherits(X.event.ModifiedEvent, X.event);
/**
* The remove event to flag an object as 'dirty'.
*
* @constructor
* @extends X.event
*/
X.event.RemoveEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.REMOVE);
/**
* The object which will bele deleted.
*
* @type {?X.object}
* @protected
*/
this._object = null;
/**
* A container for an X.base derived instance.
*
* @type{?X.base}
* @protected
*/
this._container = null;
};
// inherit from goog.events.Event
goog.inherits(X.event.RemoveEvent, X.event);
/**
* This event indicates progress during loading.
*
* @constructor
* @extends X.event
*/
X.event.ProgressEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.PROGRESS);
/**
* The progress value.
*
* @type {!number}
* @protected
*/
this._value = 0;
};
// inherit from goog.events.Event
goog.inherits(X.event.ProgressEvent, X.event);
/**
* This event indicates computing for volume rendering.
*
* @constructor
* @extends X.event
*/
X.event.ComputingEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.COMPUTING);
/**
* The object which is computed.
*
* @type {?X.object}
* @protected
*/
this._object = null;
};
// inherit from goog.events.Event
goog.inherits(X.event.ComputingEvent, X.event);
/**
* This event indicates computing progress for volume rendering.
*
* @constructor
* @extends X.event
*/
X.event.ComputingProgressEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.COMPUTING_PROGRESS);
/**
* The progress in percent
*
* @type {!number}
* @protected
*/
this._value = 0;
};
// inherit from goog.events.Event
goog.inherits(X.event.ComputingProgressEvent, X.event);
/**
* This event indicates the end of computing for volume rendering.
*
* @constructor
* @extends X.event
*/
X.event.ComputingEndEvent = function() {
// call the default event constructor
goog.base(this, X.event.events.COMPUTING_END);
/**
* The object which is computed.
*
* @type {?X.object}
* @protected
*/
this._object = null;
};
// inherit from goog.events.Event
goog.inherits(X.event.ComputingEndEvent, X.event);
goog.exportSymbol('X.event.events.PAN', X.event.events.PAN);
goog.exportSymbol('X.event.events.ROTATE', X.event.events.ROTATE);
goog.exportSymbol('X.event.events.ZOOM', X.event.events.ZOOM);
goog.exportSymbol('X.event.events.SCROLL', X.event.events.SCROLL);