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
|
<?xml version="1.0"?>
<!DOCTYPE gsmarkup>
<gsmarkup>
<objects>
<window title="Finger.app" delegate="#NSOwner">
<vbox>
<hbox>
<form width="240" id="form">
<formItem title="User:" />
<formItem title="Host:" />
</form>
<hbox type="proportional" halign="center">
<button imagePosition="above" font="small"
image="whois32" title="whois"
target="#NSOwner" action="startWhois:"
halign="wexpand" />
<button imagePosition="above" font="small"
image="finger32" title="finger"
target="#NSOwner" action="startFinger:"
halign="wexpand" />
<button imagePosition="above" font="small"
image="ping32" title="ping"
target="#NSOwner" action="startPing:"
halign="wexpand" />
<button imagePosition="above" font="small"
image="traceroute32" title="traceroute"
target="#NSOwner" action="startTraceroute:"
halign="wexpand" />
<button imagePosition="above" font="small" id="stopButton"
image="stop32" title="stop"
target="#NSOwner" action="stopTask:"
halign="wexpand" />
</hbox>
</hbox>
<scrollView width="300" height="300">
<textView id="text" editable="no" />
</scrollView>
</vbox>
</window>
</objects>
<connectors>
<outlet source="#NSOwner" target="#stopButton" key="stopButton" />
<outlet source="#NSOwner" target="#form" key="form" />
<outlet source="#NSOwner" target="#text" key="text" />
</connectors>
</gsmarkup>
|