windowavailable.pro
5.38 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
;+
; NAME:
; WindowAvailable
;
; PURPOSE:
;
; This function returns a 1 if the specified window index number is
; currently open or available. It returns a 0 if the window is currently
; closed or unavailable.
;
; 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:
;
; Utilities
;
; CALLING SEQUENCE:
;
; available = WindowAvaiable(windowIndexNumber)
;
; INPUTS:
;
; windowIndexNumber: The window index number of the window you wish to
; know is available or not.
;
; KEYWORDS:
;
; None.
;
; NOTES:
;
; The window vector obtained from the DEVICE command is not always the same length. It
; is normally (on my machine) 65 elements long, but can be much longer if you have lots
; of IDL windows open (by calling cgPickColorName, for example). But if no windows with
; index numbers greater than 65 are open, IDL shinks the larger vector to the smaller one
; as part of its housekeeping operations, which means it happens on their timetable, not yours.
; This can result in the user having "stale" index numbers greater than 65, but no larger vector
; to check them against. I have modified the code to return a 0 in this case, assuming that
; whatever window your index number points to is long gone. I have not experience any ill effects
; by doing this, but I STRONGLY advice you to ALWAYS know what window you are drawing into
; when you issue a graphics command.
;
; MODIFICATION HISTORY:
;
; Written by David W. Fanning, June 2005.
; Modified to return 0 if the window index number is larger than the number of elements
; in the WINDOW_STATE array. 25 June 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. ;
;******************************************************************************************;
FUNCTION WindowAvailable, windowID
; Error handling.
Catch, theError
IF theError NE 0 THEN BEGIN
Catch, /Cancel
ok = cgErrorMsg(Traceback=1)
Print, 'Window ID: ', windowID
RETURN, 0
ENDIF
; Get current window if window index number is unspecified.
IF N_Elements(windowID) EQ 0 THEN RETURN, 0
IF windowID LT 0 THEN RETURN, 0
; Default is window closed.
result = 0
CASE !D.Name OF
'WIN': BEGIN
Device, Window_State=theState
IF N_Elements(theState) GT windowID THEN result = theState[windowID] ELSE result = 0
END
'X': BEGIN
Device, Window_State=theState
IF N_Elements(theState) GT windowID THEN result = theState[windowID] ELSE result = 0
END
'MAC': BEGIN
Device, Window_State=theState
IF N_Elements(theState) GT windowID THEN result = theState[windowID] ELSE result = 0
END
ELSE:
ENDCASE
RETURN, result
END