window title="calcVoronoi"

grid 1 4
  label text=View: font=bold
  button text=Docs func=openFile action=CalcVorDoc.txt
  button text="R Code" func=openFile action=CalcVor.r
  button text=Window func=openFile action=CalcVorWin.txt

grid 1 2 toptitle="Input Controls" topfont="bold 12 italic"
	entry name=n label=n value=100 width=7 pady=6 sticky=S
	matrix nrow=2 ncol=2 names="a1x a1y a2x a2y" rowlabels="arg1 arg2" \
		collabels="X Y" values="1 1 2 2" width=4

grid 1 2 toptitle="Distributions" topfont="bold 12 italic"
	grid 7 1
		label text="X-axis" font="bold 10" sticky=W fg=blue
		radio name=xdis value=1 sticky=W text="Uniform"
		radio name=xdis value=2 sticky=W text="Normal"
		radio name=xdis value=3 sticky=W text="Gamma"
		radio name=xdis value=4 sticky=W text="Log Normal"
		radio name=xdis value=5 sticky=W text="Logistic"
		radio name=xdis value=6 sticky=W text="Poisson"
	grid 7 1 sticky=W
		label text="Y-axis" font="bold 10" sticky=W fg=blue
		radio name=ydis value=1 sticky=W text="Uniform"
		radio name=ydis value=2 sticky=W text="Normal"
		radio name=ydis value=3 sticky=W text="Gamma"
		radio name=ydis value=4 sticky=W text="Log Normal"
		radio name=ydis value=5 sticky=W text="Logistic"
		radio name=ydis value=6 sticky=W text="Poisson"

button text="GO" function=cVor bg="#C1FFC1"
