From 6ee8d96a6e8c1e95b8ca2ab19fcc6a3a856d50c8 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 12 Mar 2014 17:31:13 -0400 Subject: Added GTK+ indeterminate ProgressBars. --- gtkcalls_unix.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gtkcalls_unix.go') diff --git a/gtkcalls_unix.go b/gtkcalls_unix.go index bde6b74..5a1a1ae 100644 --- a/gtkcalls_unix.go +++ b/gtkcalls_unix.go @@ -216,3 +216,7 @@ func gtk_progress_bar_set_fraction(w *gtkWidget, percent int) { p := C.gdouble(percent) / 100 C.gtk_progress_bar_set_fraction(togtkprogressbar(w), p) } + +func gtk_progress_bar_pulse(w *gtkWidget) { + C.gtk_progress_bar_pulse(togtkprogressbar(w)) +} -- cgit v1.2.3