79 Star 313 Fork 53

不在乎y/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
headersections.go 6.54 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 THeaderSections struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// CN: 创建一个新的对象。
// EN: Create a new object.
func NewHeaderSections(AOwner *THeaderControl) *THeaderSections {
h := new(THeaderSections)
h.instance = HeaderSections_Create(CheckPtr(AOwner))
h.ptr = unsafe.Pointer(h.instance)
// 不敢启用,因为不知道会发生什么...
// runtime.SetFinalizer(h, (*THeaderSections).Free)
return h
}
// CN: 动态转换一个已存在的对象实例。或者使用Obj.As().<目标对象>。
// EN: Dynamically convert an existing object instance. Or use Obj.As().<Target object>.
func AsHeaderSections(obj interface{}) *THeaderSections {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &THeaderSections{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// CN: 新建一个对象来自已经存在的对象实例指针。
// EN: Create a new object from an existing object instance pointer.
// Deprecated: use AsHeaderSections.
func HeaderSectionsFromInst(inst uintptr) *THeaderSections {
return AsHeaderSections(inst)
}
// CN: 新建一个对象来自已经存在的对象实例。
// EN: Create a new object from an existing object instance.
// Deprecated: use AsHeaderSections.
func HeaderSectionsFromObj(obj IObject) *THeaderSections {
return AsHeaderSections(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 AsHeaderSections.
func HeaderSectionsFromUnsafePointer(ptr unsafe.Pointer) *THeaderSections {
return AsHeaderSections(ptr)
}
// -------------------------- Deprecated end --------------------------
// CN: 释放对象。
// EN: Free object.
func (h *THeaderSections) Free() {
if h.instance != 0 {
HeaderSections_Free(h.instance)
h.instance, h.ptr = 0, nullptr
}
}
// CN: 返回对象实例指针。
// EN: Return object instance pointer.
func (h *THeaderSections) Instance() uintptr {
return h.instance
}
// CN: 获取一个不安全的地址。
// EN: Get an unsafe address.
func (h *THeaderSections) UnsafeAddr() unsafe.Pointer {
return h.ptr
}
// CN: 检测地址是否为空。
// EN: Check if the address is empty.
func (h *THeaderSections) IsValid() bool {
return h.instance != 0
}
// CN: 检测当前对象是否继承自目标对象。
// EN: Checks whether the current object is inherited from the target object.
func (h *THeaderSections) Is() TIs {
return TIs(h.instance)
}
// CN: 动态转换当前对象为目标对象。
// EN: Dynamically convert the current object to the target object.
//func (h *THeaderSections) As() TAs {
// return TAs(h.instance)
//}
// CN: 获取类信息指针。
// EN: Get class information pointer.
func THeaderSectionsClass() TClass {
return HeaderSections_StaticClassType()
}
func (h *THeaderSections) Add() *THeaderSection {
return AsHeaderSection(HeaderSections_Add(h.instance))
}
func (h *THeaderSections) AddItem(Item *THeaderSection, Index int32) *THeaderSection {
return AsHeaderSection(HeaderSections_AddItem(h.instance, CheckPtr(Item), Index))
}
func (h *THeaderSections) Insert(Index int32) *THeaderSection {
return AsHeaderSection(HeaderSections_Insert(h.instance, Index))
}
// CN: 组件所有者。
// EN: component owner.
func (h *THeaderSections) Owner() *TObject {
return AsObject(HeaderSections_Owner(h.instance))
}
// CN: 复制一个对象,如果对象实现了此方法的话。
// EN: Copy an object, if the object implements this method.
func (h *THeaderSections) Assign(Source IObject) {
HeaderSections_Assign(h.instance, CheckPtr(Source))
}
func (h *THeaderSections) BeginUpdate() {
HeaderSections_BeginUpdate(h.instance)
}
// CN: 清除。
// EN: .
func (h *THeaderSections) Clear() {
HeaderSections_Clear(h.instance)
}
func (h *THeaderSections) Delete(Index int32) {
HeaderSections_Delete(h.instance, Index)
}
func (h *THeaderSections) EndUpdate() {
HeaderSections_EndUpdate(h.instance)
}
func (h *THeaderSections) FindItemID(ID int32) *TCollectionItem {
return AsCollectionItem(HeaderSections_FindItemID(h.instance, ID))
}
// CN: 获取类名路径。
// EN: Get the class name path.
func (h *THeaderSections) GetNamePath() string {
return HeaderSections_GetNamePath(h.instance)
}
// CN: 获取类的类型信息。
// EN: Get class type information.
func (h *THeaderSections) ClassType() TClass {
return HeaderSections_ClassType(h.instance)
}
// CN: 获取当前对象类名称。
// EN: Get the current object class name.
func (h *THeaderSections) ClassName() string {
return HeaderSections_ClassName(h.instance)
}
// CN: 获取当前对象实例大小。
// EN: Get the current object instance size.
func (h *THeaderSections) InstanceSize() int32 {
return HeaderSections_InstanceSize(h.instance)
}
// CN: 判断当前类是否继承自指定类。
// EN: Determine whether the current class inherits from the specified class.
func (h *THeaderSections) InheritsFrom(AClass TClass) bool {
return HeaderSections_InheritsFrom(h.instance, AClass)
}
// CN: 与一个对象进行比较。
// EN: Compare with an object.
func (h *THeaderSections) Equals(Obj IObject) bool {
return HeaderSections_Equals(h.instance, CheckPtr(Obj))
}
// CN: 获取类的哈希值。
// EN: Get the hash value of the class.
func (h *THeaderSections) GetHashCode() int32 {
return HeaderSections_GetHashCode(h.instance)
}
// CN: 文本类信息。
// EN: Text information.
func (h *THeaderSections) ToString() string {
return HeaderSections_ToString(h.instance)
}
func (h *THeaderSections) Count() int32 {
return HeaderSections_GetCount(h.instance)
}
func (h *THeaderSections) Items(Index int32) *THeaderSection {
return AsHeaderSection(HeaderSections_GetItems(h.instance, Index))
}
func (h *THeaderSections) SetItems(Index int32, value *THeaderSection) {
HeaderSections_SetItems(h.instance, Index, CheckPtr(value))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ying32/govcl.git
git@gitee.com:ying32/govcl.git
ying32
govcl
govcl
v2.0.3

搜索帮助