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
|
<!--Copyright (C) 1988-2005 by the Institute of Global Environment and Society (IGES). See file COPYRIGHT for more information.-->
<html>
<head>
<title>GrADS Command: draw dropmenu</title>
</head>
<body bgcolor="e0f0ff" text="#000000">
<h2><b>draw dropmenu</b></h2>
<p>
<code>draw dropmenu <i>number xpos ypos width height text_list</i></code>
<p>
<p>
Draws a drop menu with the following attributes:
<p>
<ul>
<code><i>number </i></code>
menu number, 0 - 64<br>
<code><i>xpos </i></code>
x center of the menu base in page coordinates (inches)<br>
<code><i>ypos </i></code>
y center of the menu base in page coordinates (inches)<br>
<code><i>width </i></code>
width (x) of the menu base (inches)<br>
<code><i>height </i></code>
height (y) of the menu base (inches)<br>
<code><i>text_list </i></code>
the contents of the menu, seperated by vertical bars (|)<br>
</ul>
<p>
<h3>Usage Notes</h3>
<ol>
<li>The first item in the text list is the string to put in the 'base' of the
dropmenu (the base being the part that always appears); the rest of the
text are the menu items. Empty spaces are allowed in the strings.
<p>
<li>When the user clicks on the 'base', the rest of the menu appears.
<p>
<li>The menu colors are controlled by the <a
href="gradcomdsetdropmenu.html"><code>set dropmenu</code></a>
command.
<p>
<li>Dropmenus can be nested or "cascading". The syntax for creating a
"spawned" dropmenu is similar to that for the main dropmenu. First, any
item in the <code><i>text_list</i></code> that will spawn a new
dropmenu should have <code>"><i>num</i>>"</code> appended, where
<code><i>num</i></code> will be the number assigned to the spawned
dropmenu. This new dropmenu is then defined with the following syntax:
<p>
<code>draw dropmenu <i>num</i> cascade <i>new_text_list</i></code>
<p>
There can be up to three levels of nested cascading dropmenus
launched from the main dropmenu. The 2nd example below illustrates how
to implement cascading dropmenus.
<p>
<li>The section of the User's Guide on <a
href="script.html#widgets">widgets</a> and the <a
href="gradcomdqpos.html"><code>q pos</code></a> reference page have
more information on using dropmenus.
</ol>
<p>
<h3>Examples</h3>
<p>
<ol>
<li>Here is a script that illustrates how to use a simple dropmenu:
<p>
<pre>
'clear'
'reset events'
'set rgb 90 100 100 100'
'set rgb 91 150 150 150'
'set rgb 92 200 200 200'
'set dropmenu 1 91 90 92 0 91 92 90 1 91 90 92 92 90 6'
'draw dropmenu 1 1 8 1.5 0.5 Select a Variable | Wind | Temperature | Height | SLP '
noselect = 1
while (noselect)
'q pos'
menunum = subwrd(result,7)
menuitem = subwrd(result,8)
if (menunum = 1)
if menuitem = 1 ; newbase = 'Variable = Wind' ; endif
if menuitem = 2 ; newbase = 'Variable = Temp' ; endif
if menuitem = 3 ; newbase = 'Variable = Height' ; endif
if menuitem = 4 ; newbase = 'Variable = SLP' ; endif
'draw dropmenu 1 1 8 1.5 0.5 'newbase' | Wind | Temperature | Height | SLP '
noselect = 0
endif
endwhile
</pre>
<p>
<li>Here is a script that illustrates how to use cascading dropmenus:
<p>
<pre>
'clear'
'reset events'
'set rgb 90 100 100 100'
'set rgb 91 150 150 150'
'set rgb 92 200 200 200'
'set button 1 91 -1 -1 1 91 90 92 12'
'draw button 1 1 8 1 0.5 quit'
'set dropmenu 1 91 -1 -1 1 91 90 92 1 91 90 92 90 92 6'
'draw dropmenu 1 1.5 7.5 2 0.5 Menu Base | Space | Earth >05> | Sun | Moon'
'draw dropmenu 5 cascade Ocean | Land | Atmosphere >11> | Biosphere'
'draw dropmenu 11 cascade Snow | Rain | Mist | Tornado '
while (1)
'q pos'
say result
ev = subwrd(result,6)
if (ev!=3); break; endif;
endwhile
</pre>
</ol>
</body>
</html>
|