forked from lxn/walk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolbutton.go
51 lines (39 loc) · 945 Bytes
/
toolbutton.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
// Copyright 2012 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.
package walk
import (
"github.com/lxn/win"
)
type ToolButton struct {
Button
}
func NewToolButton(parent Container) (*ToolButton, error) {
tb := new(ToolButton)
if err := InitWidget(
tb,
parent,
"BUTTON",
win.WS_TABSTOP|win.WS_VISIBLE|win.BS_PUSHBUTTON,
0); err != nil {
return nil, err
}
tb.Button.init()
return tb, nil
}
func (*ToolButton) LayoutFlags() LayoutFlags {
return 0
}
func (tb *ToolButton) MinSizeHint() Size {
return tb.SizeHint()
}
func (tb *ToolButton) SizeHint() Size {
return tb.dialogBaseUnitsToPixels(Size{16, 12})
}
func (tb *ToolButton) WndProc(hwnd win.HWND, msg uint32, wParam, lParam uintptr) uintptr {
switch msg {
case win.WM_GETDLGCODE:
return win.DLGC_BUTTON
}
return tb.Button.WndProc(hwnd, msg, wParam, lParam)
}