From f8e3f12ab02b528f2a05a4f713d7af7ea8e44b42 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 11 Dec 2015 20:37:59 -0500 Subject: LET'S GET THIS FINAL REWRITE EVER STARTED --- progressbar_darwin.go | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 progressbar_darwin.go (limited to 'progressbar_darwin.go') diff --git a/progressbar_darwin.go b/progressbar_darwin.go deleted file mode 100644 index 51fd41a..0000000 --- a/progressbar_darwin.go +++ /dev/null @@ -1,31 +0,0 @@ -// 4 november 2014 - -package ui - -import ( - "fmt" -) - -// #include "objc_darwin.h" -import "C" - -type progressbar struct { - *controlSingleObject -} - -func newProgressBar() ProgressBar { - return &progressbar{ - controlSingleObject: newControlSingleObject(C.newProgressBar()), - } -} - -func (p *progressbar) Percent() int { - return int(C.progressbarPercent(p.id)) -} - -func (p *progressbar) SetPercent(percent int) { - if percent < 0 || percent > 100 { - panic(fmt.Errorf("given ProgressBar percentage %d out of range", percent)) - } - C.progressbarSetPercent(p.id, C.intmax_t(percent)) -} -- cgit v1.2.3