-
Notifications
You must be signed in to change notification settings - Fork 0
/
progressbar.go
76 lines (57 loc) · 1.58 KB
/
progressbar.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright 2010 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package walk
import (
"github.com/lxn/win"
)
type ProgressBar struct {
WidgetBase
}
func NewProgressBar(parent Container) (*ProgressBar, error) {
pb := new(ProgressBar)
if err := InitWidget(
pb,
parent,
"msctls_progress32",
win.WS_VISIBLE,
0); err != nil {
return nil, err
}
return pb, nil
}
func (*ProgressBar) LayoutFlags() LayoutFlags {
return ShrinkableHorz | GrowableHorz | GreedyHorz
}
func (pb *ProgressBar) MinSizeHint() Size {
return pb.dialogBaseUnitsToPixels(Size{10, 14})
}
func (pb *ProgressBar) SizeHint() Size {
return pb.dialogBaseUnitsToPixels(Size{50, 14})
}
func (pb *ProgressBar) MinValue() int {
return int(pb.SendMessage(win.PBM_GETRANGE, 1, 0))
}
func (pb *ProgressBar) MaxValue() int {
return int(pb.SendMessage(win.PBM_GETRANGE, 0, 0))
}
func (pb *ProgressBar) SetRange(min, max int) {
pb.SendMessage(win.PBM_SETRANGE32, uintptr(min), uintptr(max))
}
func (pb *ProgressBar) Value() int {
return int(pb.SendMessage(win.PBM_GETPOS, 0, 0))
}
func (pb *ProgressBar) SetValue(value int) {
pb.SendMessage(win.PBM_SETPOS, uintptr(value), 0)
}
func (pb *ProgressBar) MarqueeMode() bool {
return pb.hasStyleBits(win.PBS_MARQUEE)
}
func (pb *ProgressBar) SetMarqueeMode(marqueeMode bool) error {
if err := pb.ensureStyleBits(win.PBS_MARQUEE, marqueeMode); err != nil {
return err
}
pb.SendMessage(win.PBM_SETMARQUEE, uintptr(win.BoolToBOOL(marqueeMode)), 0)
return nil
}