79 Star 313 Fork 53

不在乎y/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
textattributes.go 6.20 KB
一键复制 编辑 原始数据 按行查看 历史
不在乎y 提交于 2020-05-13 23:37 . Update vcl
//----------------------------------------
// The code is automatically generated by the GenlibLcl tool.
// Copyright © ying32. All Rights Reserved.
//
// Licensed under Apache License 2.0
//
//----------------------------------------
package vcl
import (
. "github.com/ying32/govcl/vcl/api"
. "github.com/ying32/govcl/vcl/types"
"unsafe"
)
type TTextAttributes struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// CN: 动态转换一个已存在的对象实例。或者使用Obj.As().<目标对象>。
// EN: Dynamically convert an existing object instance. Or use Obj.As().<Target object>.
func AsTextAttributes(obj interface{}) *TTextAttributes {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TTextAttributes{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// CN: 新建一个对象来自已经存在的对象实例指针。
// EN: Create a new object from an existing object instance pointer.
// Deprecated: use AsTextAttributes.
func TextAttributesFromInst(inst uintptr) *TTextAttributes {
return AsTextAttributes(inst)
}
// CN: 新建一个对象来自已经存在的对象实例。
// EN: Create a new object from an existing object instance.
// Deprecated: use AsTextAttributes.
func TextAttributesFromObj(obj IObject) *TTextAttributes {
return AsTextAttributes(obj)
}
// CN: 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
// EN: Create a new object from an unsecured address. Note: Using this function may cause some unclear situations and be used with caution..
// Deprecated: use AsTextAttributes.
func TextAttributesFromUnsafePointer(ptr unsafe.Pointer) *TTextAttributes {
return AsTextAttributes(ptr)
}
// -------------------------- Deprecated end --------------------------
// CN: 返回对象实例指针。
// EN: Return object instance pointer.
func (t *TTextAttributes) Instance() uintptr {
return t.instance
}
// CN: 获取一个不安全的地址。
// EN: Get an unsafe address.
func (t *TTextAttributes) UnsafeAddr() unsafe.Pointer {
return t.ptr
}
// CN: 检测地址是否为空。
// EN: Check if the address is empty.
func (t *TTextAttributes) IsValid() bool {
return t.instance != 0
}
// CN: 检测当前对象是否继承自目标对象。
// EN: Checks whether the current object is inherited from the target object.
func (t *TTextAttributes) Is() TIs {
return TIs(t.instance)
}
// CN: 动态转换当前对象为目标对象。
// EN: Dynamically convert the current object to the target object.
//func (t *TTextAttributes) As() TAs {
// return TAs(t.instance)
//}
// CN: 获取类信息指针。
// EN: Get class information pointer.
func TTextAttributesClass() TClass {
return TextAttributes_StaticClassType()
}
// CN: 复制一个对象,如果对象实现了此方法的话。
// EN: Copy an object, if the object implements this method.
func (t *TTextAttributes) Assign(Source IObject) {
TextAttributes_Assign(t.instance, CheckPtr(Source))
}
// CN: 获取类名路径。
// EN: Get the class name path.
func (t *TTextAttributes) GetNamePath() string {
return TextAttributes_GetNamePath(t.instance)
}
// CN: 获取类的类型信息。
// EN: Get class type information.
func (t *TTextAttributes) ClassType() TClass {
return TextAttributes_ClassType(t.instance)
}
// CN: 获取当前对象类名称。
// EN: Get the current object class name.
func (t *TTextAttributes) ClassName() string {
return TextAttributes_ClassName(t.instance)
}
// CN: 获取当前对象实例大小。
// EN: Get the current object instance size.
func (t *TTextAttributes) InstanceSize() int32 {
return TextAttributes_InstanceSize(t.instance)
}
// CN: 判断当前类是否继承自指定类。
// EN: Determine whether the current class inherits from the specified class.
func (t *TTextAttributes) InheritsFrom(AClass TClass) bool {
return TextAttributes_InheritsFrom(t.instance, AClass)
}
// CN: 与一个对象进行比较。
// EN: Compare with an object.
func (t *TTextAttributes) Equals(Obj IObject) bool {
return TextAttributes_Equals(t.instance, CheckPtr(Obj))
}
// CN: 获取类的哈希值。
// EN: Get the hash value of the class.
func (t *TTextAttributes) GetHashCode() int32 {
return TextAttributes_GetHashCode(t.instance)
}
// CN: 文本类信息。
// EN: Text information.
func (t *TTextAttributes) ToString() string {
return TextAttributes_ToString(t.instance)
}
func (t *TTextAttributes) Charset() TFontCharset {
return TextAttributes_GetCharset(t.instance)
}
func (t *TTextAttributes) SetCharset(value TFontCharset) {
TextAttributes_SetCharset(t.instance, value)
}
// CN: 获取颜色。
// EN: Get color.
func (t *TTextAttributes) Color() TColor {
return TextAttributes_GetColor(t.instance)
}
// CN: 设置颜色。
// EN: Set color.
func (t *TTextAttributes) SetColor(value TColor) {
TextAttributes_SetColor(t.instance, value)
}
// CN: 获取组件名称。
// EN: Get the component name.
func (t *TTextAttributes) Name() string {
return TextAttributes_GetName(t.instance)
}
// CN: 设置组件名称。
// EN: Set the component name.
func (t *TTextAttributes) SetName(value string) {
TextAttributes_SetName(t.instance, value)
}
func (t *TTextAttributes) Pitch() TFontPitch {
return TextAttributes_GetPitch(t.instance)
}
func (t *TTextAttributes) SetPitch(value TFontPitch) {
TextAttributes_SetPitch(t.instance, value)
}
func (t *TTextAttributes) Size() int32 {
return TextAttributes_GetSize(t.instance)
}
func (t *TTextAttributes) SetSize(value int32) {
TextAttributes_SetSize(t.instance, value)
}
func (t *TTextAttributes) Style() TFontStyles {
return TextAttributes_GetStyle(t.instance)
}
func (t *TTextAttributes) SetStyle(value TFontStyles) {
TextAttributes_SetStyle(t.instance, value)
}
// CN: 获取高度。
// EN: Get height.
func (t *TTextAttributes) Height() int32 {
return TextAttributes_GetHeight(t.instance)
}
// CN: 设置高度。
// EN: Set height.
func (t *TTextAttributes) SetHeight(value int32) {
TextAttributes_SetHeight(t.instance, value)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ying32/govcl.git
git@gitee.com:ying32/govcl.git
ying32
govcl
govcl
v2.0.3

搜索帮助