Esempio n. 1
0
File: pplot.go Progetto: DaviWei/iup
func main() {
	iup.Open()
	defer iup.Close()

	p := pplot.Open("EXPAND=YES")
	iup.StoreAttribute(p, "TITLE", "Bar Mode")
	iup.StoreAttribute(p, "TITLEFONTSIZE", "16")
	iup.StoreAttribute(p, "MARGINTOP", "40")
	iup.StoreAttribute(p, "MARGINLEFT", "30")
	iup.StoreAttribute(p, "MARGINBOTTOM", "65")

	labels := []string{
		"Jan", "Feb", "Mar", "Apr", "May", "Jun",
		"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}
	values := []float64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}

	pplot.Begin(p, 1)
	for i := 0; i < len(labels); i++ {
		pplot.AddString(p, labels[i], values[i])
	}
	pplot.End(p)
	iup.StoreAttribute(p, "DS_MODE", "BAR")
	iup.StoreAttribute(p, "DS_COLOR", "100 100 200")

	dlg := iup.Dialog(p, "SIZE=200x200,TITLE=\"PPlot Example\"")
	iup.Show(dlg)

	iup.StoreAttribute(p, "REDRAW", "")

	iup.MainLoop()
}
Esempio n. 2
0
File: rot13.go Progetto: DaviWei/iup
func main() {
	iup.Open()
	defer iup.Close()

	menu := iup.Menu(
		iup.Submenu("File",
			iup.Menu(
				iup.Item("Load File", (iup.ActionFunc)(onLoadFile)),
				iup.Item("Rotate", (iup.ActionFunc)(onRotate)),
				iup.Item("Quit", (iup.ActionFunc)(onQuit)))),
		iup.Submenu("Help",
			iup.Menu(
				iup.Item("About Iup", (iup.ActionFunc)(onAboutIup)),
				iup.Item("About go-iup", (iup.ActionFunc)(onAboutIupGo)))))

	text = iup.Text("MULTILINE=YES,EXPAND=YES,WORDWRAP=YES,SIZE=250x100,SCROLLBAR=YES")
	mainBox := iup.SetAttrs(iup.Vbox(
		iup.Label("Text to be rotated:"),
		text,
		iup.SetAttrs(iup.Hbox(
			iup.Button("Load File", "PADDING=3x3", (iup.ActionFunc)(onLoadFile)),
			iup.Button("Rotate", "PADDING=3x3", (iup.ActionFunc)(onRotate)),
			iup.Button("Quit", "PADDING=3x3", (iup.ActionFunc)(onQuit)),
		), "MARGIN", "0x0"),
	), "MARGIN", "5x5", "GAP", "3")

	mainDlg = iup.SetAttrs(iup.Dialog(mainBox), "TITLE", "Rot 13")
	iup.SetAttributeHandle(mainDlg, "MENU", menu)
	iup.Show(mainDlg)

	iup.MainLoop()
}
Esempio n. 3
0
func main() {
	iup.Open()
	defer iup.Close()

	// Line one contains a name entry box and a hello button
	someone = iup.Text((iup.TextActionFunc)(nameKeyEntry))
	helloSomeone := iup.Button("Say Hello",
		(iup.ActionFunc)(sayHelloToSomeone))

	line1 := iup.Hbox(iup.Label("Name:"), someone, helloSomeone)
	iup.SetAttributes(line1, "ALIGNMENT=ACENTER,GAP=5")

	// Line two contains two pre-defined hello buttons
	helloJohn := iup.Button("Hello John",
		(iup.ActionFunc)(sayHello),
		"TO_WHO=\"John Doe\"")

	helloJim := iup.Button("Hello Jim",
		(iup.ActionFunc)(sayHello),
		"TO_WHO=\"Jim Doe\"")

	line2 := iup.Hbox(iup.Label("Predefined greeters:"), helloJohn, helloJim)
	iup.SetAttributes(line2, "ALIGNMENT=ACENTER,GAP=5")

	form := iup.Vbox(line1, line2)
	iup.SetAttributes(form, "GAP=5,MARGIN=3x3")

	dlg := iup.Dialog(form, "TITLE=Greeter")
	iup.Show(dlg)

	iup.MainLoop()
}
Esempio n. 4
0
func main() {
	iup.Open()
	defer iup.Close()

	browserFunc := func(attr, val string) iup.ActionFunc {
		return (iup.ActionFunc)(func(ih *iup.Ihandle) int {
			iup.StoreAttribute(browser, attr, val)
			return iup.DEFAULT
		})
	}

	urlentry = iup.Text("EXPAND=HORIZONTAL", (iup.KAnyFunc)(onUrlEntryKey))
	browser = webbrowser.WebBrowser("EXPAND=YES",
		(webbrowser.NavigateFunc)(updateUrlEntry),
		(webbrowser.CompletedFunc)(updateUrlEntry))
	backbutton := iup.Button("<<", browserFunc("BACKFORWARD", "-1"))
	forbutton := iup.Button(">>", browserFunc("BACKFORWARD", "1"))
	relbutton := iup.Button("Reload", browserFunc("RELOAD", "1"))
	gobutton := iup.Button("Go...", (iup.ActionFunc)(onGo))
	stopbutton := iup.Button("Stop", browserFunc("STOP", "1"))
	toolbar := iup.SetAttrs(iup.Hbox(backbutton, forbutton, relbutton, urlentry, gobutton, stopbutton), "MARGIN", "5x5", "GAP", "3")
	dialog := iup.Dialog(iup.Vbox(toolbar, browser), "SIZE=500x300,TITLE=\"go-iup Web Browser\"")
	iup.Show(dialog)

	iup.StoreAttribute(browser, "VALUE", "http://github.com/jcowgar/go-iup")

	iup.MainLoop()
}