diff options
Diffstat (limited to 'progressbar_darwin.go')
| -rw-r--r-- | progressbar_darwin.go | 31 |
1 files changed, 0 insertions, 31 deletions
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)) -} |
