summaryrefslogtreecommitdiff
path: root/gtkcalls_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-03-12 17:31:13 -0400
committerPietro Gagliardi <[email protected]>2014-03-12 17:31:13 -0400
commit6ee8d96a6e8c1e95b8ca2ab19fcc6a3a856d50c8 (patch)
tree110c533c390b09eedeeeb45c370a42d6201b4a60 /gtkcalls_unix.go
parentbf093d534c0bc64fa7da38708c05e5a632964ae7 (diff)
Added GTK+ indeterminate ProgressBars.
Diffstat (limited to 'gtkcalls_unix.go')
-rw-r--r--gtkcalls_unix.go4
1 files changed, 4 insertions, 0 deletions
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))
+}