zoombox.pro
22.3 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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
;+
; NAME:
; ZOOMBOX
;
; PURPOSE:
;
; The purpose of this program is to display an image which
; can be zoomed by drawing a rubberband box on top of it. The
; "zoomed" image appears in its own window. The program is written
; in object graphics. Either 8-bit or 24-bit images may be used.
;
; AUTHOR:
;
; FANNING SOFTWARE CONSULTING
; David Fanning, Ph.D.
; 1645 Sheely Drive
; Fort Collins, CO 80526 USA
; Phone: 970-221-0438
; E-mail: david@idlcoyote.com
; Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
;
; CATEGORY:
;
; Image Processing, Widgets.
;
; CALLING SEQUENCE:
;
; ZOOMBOX, image
;
; INPUTS:
;
; image: An 8-bit or 24-bit image.
;
; GROUP_LEADER: This keyword is used to assign a group leader to this
; program. This program will be destroyed when the group
; leader is destroyed. Use this keyword if you are calling
; ZOOMBOX from another widget program.
;
; HARDWARE_RENDERING: Set this keyword if you want to render the scene using
; the hardware renderer. This is NOT recommended, since this makes
; rendering exceedingly slow on most machines.
;
; INSTANCE: Set this keyword to use instancing to draw the rubberband zoom box.
; The default is not to use instancing.
;
; INTERPOLATE: Set this keyword to use bilinear interpolation on the sub-image
; defined by the box when zooming. The default is to use nearest neighbor
; interpolation.
;
; OUTPUTS:
; None.
;
; COMMON BLOCKS:
; None.
;
; SIDE EFFECTS:
;
; DEPENDENCIES:
;
; Uses XCOLORS and PICKCOLOR from the Coyote Library:
;
; http://www.idlcoyote.com/programs/xcolors.pro
; http://www.idlcoyote.com/programs/pickcolor.pro
;
; PROCEDURE:
;
; Clicking the left mouse button allows you to drag a rubberband box
; over the portion of the window you want to zoom into.
;
; EXAMPLE:
;
; IDL> ZOOMBOX
;
; RESTRICTIONS:
;
; Object graphics programs are really meant to be used on 24-bit displays.
; Colors are decidedly ugly in 256 color environments.
; Requires FSC_NORMALIZE from the Coyote Library.
;
; http://www.idlcoyote.com/programs/fsc_normalize.pro
;
; MODIFICATION HISTORY:
;
; Written by: David W. Fanning, 24 April 2000.
; Modified draw widget event handling. 22 October 2001. DWF.
; Added INSTANCE keyword to demonstrate instancing in object. 14 February 2002. Mark Hadfield.
; Removed NORMALIZE from source code. 29 Nov 2005. DWF.
; Renamed NORMALIZE to FSC_NORMALIZE to avoid numerous naming conflicts. 17 October 2008. DWF.
;-
;******************************************************************************************;
; Copyright (c) 2008, by Fanning Software Consulting, Inc. ;
; All rights reserved. ;
; ;
; Redistribution and use in source and binary forms, with or without ;
; modification, are permitted provided that the following conditions are met: ;
; ;
; * Redistributions of source code must retain the above copyright ;
; notice, this list of conditions and the following disclaimer. ;
; * Redistributions in binary form must reproduce the above copyright ;
; notice, this list of conditions and the following disclaimer in the ;
; documentation and/or other materials provided with the distribution. ;
; * Neither the name of Fanning Software Consulting, Inc. nor the names of its ;
; contributors may be used to endorse or promote products derived from this ;
; software without specific prior written permission. ;
; ;
; THIS SOFTWARE IS PROVIDED BY FANNING SOFTWARE CONSULTING, INC. ''AS IS'' AND ANY ;
; EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ;
; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT ;
; SHALL FANNING SOFTWARE CONSULTING, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, ;
; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED ;
; TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; ;
; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ;
; ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ;
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;
;******************************************************************************************;
PRO ZOOMBOX_BOX_COLOR, event
Widget_Control, event.top, Get_UValue=info, /No_Copy
; Get the new box color.
newColor = PickColor(Group_Leader=event.top, Cancel=cancelled)
; Store it.
IF NOT cancelled THEN info.boxColor = Reform(newColor, 3)
Widget_Control, event.top, Set_UValue=info, /No_Copy
END ;-------------------------------------------------------------------------
PRO ZOOMBOX_COLORS, event
Widget_Control, event.top, Get_UValue=info, /No_Copy
; What kind of event is this?
thisEvent = Tag_Names(event, /Structure)
CASE thisEvent OF
'WIDGET_BUTTON': BEGIN
; Load colors so XCOLORS starts up with the correct colors.
TVLCT, info.r, info.g, info.b
XColors, Group=event.top, NotifyID=[event.id, event.top], $
Title='ZoomBox Colors (' + StrTrim(info.drawID,2) + ')'
ENDCASE
'XCOLORS_LOAD':BEGIN
; Store the new color table vectors from XCOLORS.
info.r = event.r
info.g = event.g
info.b = event.b
IF Obj_Valid(info.thePalette) THEN $
info.thePalette->SetProperty, Red=event.r, Green=event.g, Blue=event.b
info.theWindow->Draw, info.theView
; Is a zoom window open? If so, redisplay it as well.
IF Obj_Valid(info.zoomWindow) THEN info.zoomWindow->Draw, info.zoomView
ENDCASE
ENDCASE
Widget_Control, event.top, Set_UValue=info, /No_Copy
END ;-------------------------------------------------------------------------
PRO ZOOMBOX_QUITTER, event
Widget_Control, event.top, /Destroy
END ;-------------------------------------------------------------------------
PRO ZOOMBOX_CLEANUP, tlb
; The purpose of this program is to clean up the objects created for the
; main image window.
Widget_Control, tlb, Get_UValue=info, /No_Copy
IF N_Elements(info) NE 0 THEN BEGIN
Obj_Destroy, info.theContainer
ENDIF
END ;-------------------------------------------------------------------------
PRO ZOOMBOX_ZOOM_CLEANUP, tlb
; The purpose of this program is to is to clean up the objects created for the
; zoom window.
Widget_Control, tlb, Get_UValue=zoomContainer
Obj_Destroy, zoomContainer
END ;-------------------------------------------------------------------------
PRO ZOOMBOX_FACTOR, event
; The purpose of this event handler is to set the zoom factor.
Widget_Control, event.top, Get_UValue=info, /No_Copy
Widget_Control, event.id, Get_UValue=factor
info.zoomfactor = factor
Widget_Control, event.top, Set_UValue=info, /No_Copy
END ;-------------------------------------------------------------------------
PRO ZOOMBOX_DRAW_EVENTS, event
; This event handler responds to events generated by the draw widget.
; Get the info structure out of the top-level base.
Widget_Control, event.top, Get_UValue=info, /No_Copy
; What type of an event is this?
possibleEventTypes = [ 'DOWN', 'UP', 'MOTION', 'SCROLL', 'EXPOSE' ]
thisEvent = possibleEventTypes(event.type)
CASE thisEvent OF
'EXPOSE': BEGIN ; Redraw the view.
info.theWindow->Draw, info.theView
ENDCASE
'DOWN': BEGIN
; Set the static corners of the box to current
; cursor location.
info.xs = event.x
info.ys = event.y
; Change the event handler for the draw widget and turn MOTION
; events ON.
Widget_Control, event.id, Draw_Motion_Events=1
; Initialize the polygon object.
info.theBox = Obj_New('IDLgrPolyline', Replicate(info.xs, 5) / info.xsize, $
Replicate(info.ys, 5) / info.ysize, Color=info.boxColor)
CASE info.instance OF
0: BEGIN
; Add the box to the image model so it can be displayed.
info.theModel->Add, info.theBox
END
1: BEGIN
; Make an instance of the view
info.theWindow->Draw, info.theView, CREATE_INSTANCE=2
; Create a graphics tree containing the box.
info.theView->GetProperty, ALL=props
props.transparent = 1
info.boxView = obj_new('IDLgrView', _EXTRA=props)
info.theModel->GetProperty, ALL=props
info.boxModel = obj_new('IDLgrModel', _EXTRA=props)
info.boxView->Add, info.boxModel
info.boxModel->Add, info.theBox
END
ENDCASE
ENDCASE
'UP': BEGIN
; If this is an UP event, you need to erase the zoombox, turn motion events
; OFF, and draw the "zoomed" plot.
; Turn motion events off..
Widget_Control, event.id, Draw_Motion_Events=0
; Draw the "zoomed" image. Start by getting the LAST zoom
; box outline. These are indices into image array.
event.x = 0 > event.x < (info.xsize-1)
event.y = 0 > event.y < (info.ysize-1)
x = [info.xs, event.x]
y = [info.ys, event.y]
; Make sure the user didn't just click in the window.
IF info.xs EQ event.x OR info.ys EQ event.y THEN BEGIN
Widget_Control, event.top, Set_UValue=info, /No_Copy
RETURN
ENDIF
; Make sure the x and y values are ordered as [min, max].
IF info.xs GT event.x THEN x = [event.x, info.xs]
IF info.ys GT event.y THEN y = [event.y, info.ys]
; Set the zoom factor and determine the new X and Y
; sizes of the Zoom Window.
zoomXSize = (x[1] - x[0] + 1) * info.zoomFactor
zoomYSize = (y[1] - y[0] + 1) * info.zoomFactor
; Subset the image, and apply the zoom factor to it.
info.theImage->GetProperty, Data=image
CASE info.true OF
0: BEGIN
imageSubset = image(x[0]:x[1], y[0]:y[1])
zoomedImage = Congrid(imageSubset, zoomXSize, zoomYSize, Interp=info.interp)
ENDCASE
1: BEGIN
zoomedImage = BytArr(3, zoomXsize, zoomYSize)
FOR j = 0,2 DO BEGIN
slice = image[j,*,*]
slice = Reform(slice, info.xsize, info.ysize)
subimage = slice[x[0]:x[1], y[0]:y[1]]
zoomedImage[j,*,*] = Congrid(subimage, zoomXSize, zoomYSize, Interp=info.interp)
ENDFOR
ENDCASE
2: BEGIN
zoomedImage = BytArr(zoomXsize, 3, zoomYSize)
FOR j = 0,2 DO BEGIN
slice = image[*,j,*]
slice = Reform(slice, info.xsize, info.ysize)
subimage = slice[x[0]:x[1], y[0]:y[1]]
zoomedImage[*,j,*] = Congrid(subimage, zoomXSize, zoomYSize, Interp=info.interp)
ENDFOR
ENDCASE
3: BEGIN
zoomedImage = BytArr(zoomXsize, zoomYSize, 3)
FOR j = 0,2 DO BEGIN
slice = image[*,*,j]
slice = Reform(slice, info.xsize, info.ysize)
subimage = slice[x[0]:x[1], y[0]:y[1]]
zoomedImage[*,*,j] = Congrid(subimage, zoomXSize, zoomYSize, Interp=info.interp)
ENDFOR
ENDCASE
ENDCASE
; Create or re-populate (if it already exists) the zoomed image object.
IF Obj_Valid(info.zoomImage) THEN info.zoomImage->SetProperty, Data=zoomedImage ELSE $
info.zoomImage = Obj_New('IDLgrImage', zoomedImage, Palette=info.thePalette)
; Scale the image into the view.
info.zoomImage->SetProperty, XCoord_Conv=FSC_Normalize([0,zoomXSize]), YCoord_Conv=FSC_Normalize([0,zoomYSize])
; If the Zoom Window exists, make it the proper size and load
; the zoomed image into it. If it does not exists, create it.
IF Obj_Valid(info.zoomWindow) THEN BEGIN
; Zoomed window exists. Make it correct size and load image.
info.zoomWindow->SetProperty, Dimension=[zoomXSize, zoomYSize]
ENDIF ELSE BEGIN
; Get offset positions for the non-existing zoom window.
Widget_Control, event.top, TLB_Get_Size=sizes, TLB_Get_Offset=offsets
xpos = sizes[0] + offsets[0] + 20
ypos = offsets[1] + 40
; Create zoomed window.
zoomtlb = Widget_Base(Title='Zoomed Image', Group=event.top, Kill_Notify='ZOOMBOX_ZOOM_CLEANUP', $
XOffset=xpos, YOffset=ypos)
zoomdraw = Widget_Draw(zoomtlb, XSize=zoomXSize, YSize=zoomYSize, $
Graphics_Level=2, Retain=2, Renderer=1)
Widget_Control, zoomtlb, /Realize
Widget_Control, zoomdraw, Get_Value=zoomWindow
info.zoomWindow = zoomWindow
info.zoomView = Obj_New('IDLgrView', Viewplane_Rect=[0,0,1,1])
info.zoomModel = Obj_New('IDLgrModel')
info.zoomView->Add, info.zoomModel
info.zoomModel->Add, info.zoomImage
; Create container for cleaning up later.
zoomContainer = Obj_New('IDL_Container')
zoomContainer->Add, info.zoomWindow
zoomContainer->Add, info.zoomModel
zoomContainer->Add, info.zoomView
zoomContainer->Add, info.zoomImage
Widget_Control, zoomtlb, Set_UValue=zoomContainer
ENDELSE
; Update the zoomed image data and draw it.
info.zoomImage->SetProperty, Data=zoomedImage
info.zoomWindow->Draw, info.zoomView
CASE info.instance OF
0: BEGIN
; Destroy the box object
Obj_Destroy, info.theBox
END
1: BEGIN
; Destroy the graphics tree holding the box object
Obj_Destroy, info.boxView
END
ENDCASE
; Redraw the image view to erase the box
info.theWindow->Draw, info.theView
; Clear any motion events that may have occurred.
Widget_Control, event.id, /Clear_Events
ENDCASE
'MOTION': BEGIN
; Get the dynamic corner of the box.
info.xd = 0 > event.x < (info.xsize-1)
info.yd = 0 > event.y < (info.ysize-1)
; Re-set the box coordinates
theBoxData = FltArr(2,5)
theBoxData[0,*] = [info.xs, info.xd, info.xd, info.xs, info.xs] / Float(info.xsize)
theBoxData[1,*] = [info.ys, info.ys, info.yd, info.yd, info.ys] / Float(info.ysize)
info.theBox->SetProperty, Data=theBoxData
CASE info.instance OF
0: BEGIN
; Draw the view
info.theWindow->Draw, info.theView
END
1: BEGIN
; Draw the view containg the box
info.theWindow->Draw, info.boxView, /DRAW_INSTANCE
END
ENDCASE
ENDCASE
ELSE:
ENDCASE
; Put the info structure back into its storage location.
Widget_Control, event.top, Set_UValue=info, /No_Copy
END ;-------------------------------------------------------------------------
PRO ZOOMBOX, image, Group_Leader=group, Interpolation=interp, Hardware_Render=hardware, Instance=instance
; This procedure allows the user to "zoom" into an image
; by drawing a box around the part of the image to zoom into.
; This is a companion program to ZIMAGE, however this program
; is written in object graphics.
; On an error condition, return to the main level of IDL.
On_Error, 1
; Was an image passed into the procedure?
; f not, find one in the Examples directory.
IF N_Params() EQ 0 THEN BEGIN
filename = Filepath(SubDirectory=['examples','data'], 'worldelv.dat')
OpenR, lun, filename, /Get_Lun
image = BytArr(360,360)
ReadU, lun, image
Free_Lun, lun
ENDIF
; Make sure you have an image of the proper type. 8-bit or 24-bit images are allowed.
nDims = Size(image, /N_Dimensions)
imageSize = Size(image, /Dimensions)
IF nDims EQ 2 THEN BEGIN
xsize = imageSize[0]
ysize = imageSize[1]
true = 0
ENDIF ELSE BEGIN
IF NDims NE 3 THEN Message, 'Image argument does not appear to be an image. Returning...'
IF imageSize[0] NE 3 AND imageSize[1] NE 3 AND imageSize[2] NE 3 THEN BEGIN
Message, 'Image does not appear to be a 24-bit image. Returning...'
ENDIF
IF imageSize[0] EQ 3 THEN BEGIN
xsize = imageSize[1]
ysize = imageSize[2]
true = 1
ENDIF
IF imageSize[1] EQ 3 THEN BEGIN
xsize = imageSize[0]
ysize = imageSize[2]
true = 2
ENDIF
IF imageSize[2] EQ 3 THEN BEGIN
xsize = imageSize[0]
ysize = imageSize[1]
true = 3
ENDIF
ENDELSE
; Do you need a color palette? If so, load gray-scale colortable.
IF true EQ 0 THEN BEGIN
thePalette = Obj_New('IDLgrPalette')
thePalette->LoadCT, 0
ENDIF ELSE thePalette = Obj_New()
; Create the necessary objects.
theImage = Obj_New('IDLgrImage', image, Palette=thePalette)
theModel = Obj_New('IDLgrModel')
theModel->Add, theImage
theView = Obj_New('IDLgrView', Viewplane_Rect=[0,0,1,1])
theView->Add, theModel
theImage->SetProperty, XCoord_Conv=FSC_Normalize([0,xsize]), YCoord_Conv=FSC_Normalize([0,ysize])
; Store objects in container for later cleaning up.
theContainer = Obj_New('IDL_Container')
theContainer->Add, theModel
theContainer->Add, theView
theContainer->Add, thePalette
theContainer->Add, theImage
; Create a top-level base for this program. No resizing of this base.
tlb = Widget_Base(TLB_Frame_Attr=1, MBar=menuID)
; Menu items.
controlID = Widget_Button(menuID, Value='Controls')
IF true EQ 0 THEN colors = Widget_Button(controlID, Value='Image Colors...', $
Event_Pro='ZOOMBOX_COLORS')
boxColorID = Widget_Button(controlID, Value='Zoom Box Color...', $
Event_Pro='ZOOMBOX_BOX_COLOR')
zoomfactorID = Widget_Button(controlID, Value='Zoom Factor', /Menu, $
Event_Pro='ZOOMBOX_FACTOR')
button = Widget_Button(zoomfactorID, Value='2X', UValue=2.0)
button = Widget_Button(zoomfactorID, Value='3X', UValue=3.0)
button = Widget_Button(zoomfactorID, Value='5X', UValue=5.0)
button = Widget_Button(zoomfactorID, Value='8X', UValue=8.0)
quitter = Widget_Button(controlID, Value='Quit', $
Event_Pro='ZOOMBOX_QUITTER', /Separator)
; Draw widget. Make sure you use software rendering or rubberband box
; drawing can be V-E-R-Y slow.
drawbase = Widget_Base(tlb, Map=1)
drawID = Widget_Draw(drawbase, XSize=xsize, YSize=ysize, Retain=0, $
Button_Events=1, Event_Pro='ZOOMBOX_DRAW_EVENTS', Graphics_Level=2, $
Expose_Events=1, Renderer=1-Keyword_Set(hardware))
; Realize the program.
Widget_Control, tlb, /Realize
; Get the window object.
Widget_Control, drawID, Get_Value=theWindow
; Set the title of the window.
Widget_Control, tlb, TLB_Set_Title='Full Size Image (' + StrTrim(drawID,2) + ')'
; Get color vectors for this application.
TVLCT, r, g, b, /Get
; Select an ARROW cursor.
theWindow->SetCurrentCursor, 'Arrow'
; Create an info structure to hold information required by the program.
info = { $
theImage:theImage, $ ; The original image.
zoomImage:Obj_New(), $ ; The scaled and resized subimage.
theView:theView, $ ; The view that will be rendered.
theModel:theModel, $ ; The image model.
theContainer:theContainer, $ ; The main container object.
theWindow:theWindow, $ ; The main image window object.
thePalette:thePalette, $ ; The palette object.
theBox:Obj_New(), $ ; The rubberband box object.
boxColor:[0,255,0], $ ; The box color. Green to start.
boxModel:Obj_New(), $ ; The box model
boxView:Obj_New(), $ ; The box view
xsize:xsize, $ ; The x size of the image window and of the image.
ysize:ysize, $ ; The y size of the image window and of the image.
xs:0, $ ; X static corner of the zoom box.
ys:0, $ ; Y static corner of the zoom box.
xd:0, $ ; X dynamic corner of the zoom box.
yd:0, $ ; Y dynamic corner of the zoom box.
r:r, $ ; The red vector of the color table.
g:g, $ ; The green vector of the color table.
b:b, $ ; The blue vector of the color table.
true:true, $ ; A flag that indicates 24-bit image interleaving.
drawID:drawID, $ ; The draw widget identifier.
zoomWindow:Obj_New(), $ ; The zoom window object.
zoomView:Obj_New(), $ ; The zoom window view object.
zoomModel:Obj_New(), $ ; The zoom model.
zoomfactor:2, $ ; The initial zoom factor.
interp:Keyword_Set(interp), $ ; A flag that indicates interpolation of the subimage.
instance:Keyword_Set(instance) $ ; A flag that controls whether instancing is used to draw the zoom box
}
; Store the info structure in the user value of the top-level base.
Widget_Control, tlb, Set_UValue=info, /No_Copy
; Register this program and set up the event loop.
XManager, 'zoombox', tlb, Cleanup='ZOOMBOX_CLEANUP', Group_Leader=group, /No_Block
END ;-------------------------------------------------------------------------