1 Star 0 Fork 0

橙子/lxnWalk

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
textlabel.go 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
橙子 提交于 2020-08-13 10:03 +08:00 . .
// Copyright 2018 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
type TextLabel struct {
static
textChangedPublisher EventPublisher
}
func NewTextLabel(parent Container) (*TextLabel, error) {
return NewTextLabelWithStyle(parent, 0)
}
func NewTextLabelWithStyle(parent Container, style uint32) (*TextLabel, error) {
tl := new(TextLabel)
if err := tl.init(tl, parent); err != nil {
return nil, err
}
tl.textAlignment = AlignHNearVNear
tl.MustRegisterProperty("Text", NewProperty(
func() interface{} {
return tl.Text()
},
func(v interface{}) error {
return tl.SetText(assertStringOr(v, ""))
},
tl.textChangedPublisher.Event()))
return tl, nil
}
func (tl *TextLabel) asStatic() *static {
return &tl.static
}
func (*TextLabel) LayoutFlags() LayoutFlags {
return GrowableHorz | GrowableVert
}
func (tl *TextLabel) MinSizeHint() Size {
if tl.minSize.Width > 0 {
return tl.calculateTextSizeForWidth(tl.minSize.Width)
}
return tl.calculateTextSizeForWidth(0)
}
func (tl *TextLabel) SizeHint() Size {
return tl.calculateTextSizeForWidth(tl.WidthPixels())
}
func (tl *TextLabel) HeightForWidth(width int) int {
return tl.calculateTextSizeForWidth(width).Height
}
func (tl *TextLabel) TextAlignment() Alignment2D {
return tl.textAlignment
}
func (tl *TextLabel) SetTextAlignment(alignment Alignment2D) error {
if alignment == AlignHVDefault {
alignment = AlignHNearVNear
}
return tl.setTextAlignment(alignment)
}
func (tl *TextLabel) Text() string {
return tl.text()
}
func (tl *TextLabel) SetText(text string) error {
if changed, err := tl.setText(text); err != nil {
return err
} else if !changed {
return nil
}
tl.textChangedPublisher.Publish()
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xuchengzhi/lxnWalk.git
git@gitee.com:xuchengzhi/lxnWalk.git
xuchengzhi
lxnWalk
lxnWalk
6b3f71bcaf88

搜索帮助