代码拉取完成,页面将自动刷新
//----------------------------------------
// 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 TImageList struct {
IComponent
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// CN: 创建一个新的对象。
// EN: Create a new object.
func NewImageList(owner IComponent) *TImageList {
i := new(TImageList)
i.instance = ImageList_Create(CheckPtr(owner))
i.ptr = unsafe.Pointer(i.instance)
// 不敢启用,因为不知道会发生什么...
// runtime.SetFinalizer(i, (*TImageList).Free)
return i
}
// CN: 动态转换一个已存在的对象实例。或者使用Obj.As().<目标对象>。
// EN: Dynamically convert an existing object instance. Or use Obj.As().<Target object>.
func AsImageList(obj interface{}) *TImageList {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TImageList{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// CN: 新建一个对象来自已经存在的对象实例指针。
// EN: Create a new object from an existing object instance pointer.
// Deprecated: use AsImageList.
func ImageListFromInst(inst uintptr) *TImageList {
return AsImageList(inst)
}
// CN: 新建一个对象来自已经存在的对象实例。
// EN: Create a new object from an existing object instance.
// Deprecated: use AsImageList.
func ImageListFromObj(obj IObject) *TImageList {
return AsImageList(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 AsImageList.
func ImageListFromUnsafePointer(ptr unsafe.Pointer) *TImageList {
return AsImageList(ptr)
}
// -------------------------- Deprecated end --------------------------
// CN: 释放对象。
// EN: Free object.
func (i *TImageList) Free() {
if i.instance != 0 {
ImageList_Free(i.instance)
i.instance, i.ptr = 0, nullptr
}
}
// CN: 返回对象实例指针。
// EN: Return object instance pointer.
func (i *TImageList) Instance() uintptr {
return i.instance
}
// CN: 获取一个不安全的地址。
// EN: Get an unsafe address.
func (i *TImageList) UnsafeAddr() unsafe.Pointer {
return i.ptr
}
// CN: 检测地址是否为空。
// EN: Check if the address is empty.
func (i *TImageList) IsValid() bool {
return i.instance != 0
}
// CN: 检测当前对象是否继承自目标对象。
// EN: Checks whether the current object is inherited from the target object.
func (i *TImageList) Is() TIs {
return TIs(i.instance)
}
// CN: 动态转换当前对象为目标对象。
// EN: Dynamically convert the current object to the target object.
//func (i *TImageList) As() TAs {
// return TAs(i.instance)
//}
// CN: 获取类信息指针。
// EN: Get class information pointer.
func TImageListClass() TClass {
return ImageList_StaticClassType()
}
func (i *TImageList) GetHotSpot() TPoint {
return ImageList_GetHotSpot(i.instance)
}
func (i *TImageList) HideDragImage() {
ImageList_HideDragImage(i.instance)
}
func (i *TImageList) ShowDragImage() {
ImageList_ShowDragImage(i.instance)
}
// CN: 复制一个对象,如果对象实现了此方法的话。
// EN: Copy an object, if the object implements this method.
func (i *TImageList) Assign(Source IObject) {
ImageList_Assign(i.instance, CheckPtr(Source))
}
func (i *TImageList) Add(Image *TBitmap, Mask *TBitmap) int32 {
return ImageList_Add(i.instance, CheckPtr(Image), CheckPtr(Mask))
}
func (i *TImageList) AddIcon(Image *TIcon) int32 {
return ImageList_AddIcon(i.instance, CheckPtr(Image))
}
func (i *TImageList) AddImages(Value IComponent) {
ImageList_AddImages(i.instance, CheckPtr(Value))
}
func (i *TImageList) AddMasked(Image *TBitmap, MaskColor TColor) int32 {
return ImageList_AddMasked(i.instance, CheckPtr(Image), MaskColor)
}
// CN: 清除。
// EN: .
func (i *TImageList) Clear() {
ImageList_Clear(i.instance)
}
func (i *TImageList) Delete(Index int32) {
ImageList_Delete(i.instance, Index)
}
func (i *TImageList) Insert(Index int32, Image *TBitmap, Mask *TBitmap) {
ImageList_Insert(i.instance, Index , CheckPtr(Image), CheckPtr(Mask))
}
func (i *TImageList) InsertIcon(Index int32, Image *TIcon) {
ImageList_InsertIcon(i.instance, Index , CheckPtr(Image))
}
func (i *TImageList) InsertMasked(Index int32, Image *TBitmap, MaskColor TColor) {
ImageList_InsertMasked(i.instance, Index , CheckPtr(Image), MaskColor)
}
func (i *TImageList) Move(CurIndex int32, NewIndex int32) {
ImageList_Move(i.instance, CurIndex , NewIndex)
}
func (i *TImageList) Replace(Index int32, Image *TBitmap, Mask *TBitmap) {
ImageList_Replace(i.instance, Index , CheckPtr(Image), CheckPtr(Mask))
}
func (i *TImageList) ReplaceMasked(Index int32, NewImage *TBitmap, MaskColor TColor) {
ImageList_ReplaceMasked(i.instance, Index , CheckPtr(NewImage), MaskColor)
}
func (i *TImageList) BeginUpdate() {
ImageList_BeginUpdate(i.instance)
}
func (i *TImageList) EndUpdate() {
ImageList_EndUpdate(i.instance)
}
// CN: 查找指定名称的组件。
// EN: Find the component with the specified name.
func (i *TImageList) FindComponent(AName string) *TComponent {
return AsComponent(ImageList_FindComponent(i.instance, AName))
}
// CN: 获取类名路径。
// EN: Get the class name path.
func (i *TImageList) GetNamePath() string {
return ImageList_GetNamePath(i.instance)
}
// CN: 是否有父容器。
// EN: Is there a parent container.
func (i *TImageList) HasParent() bool {
return ImageList_HasParent(i.instance)
}
// CN: 获取类的类型信息。
// EN: Get class type information.
func (i *TImageList) ClassType() TClass {
return ImageList_ClassType(i.instance)
}
// CN: 获取当前对象类名称。
// EN: Get the current object class name.
func (i *TImageList) ClassName() string {
return ImageList_ClassName(i.instance)
}
// CN: 获取当前对象实例大小。
// EN: Get the current object instance size.
func (i *TImageList) InstanceSize() int32 {
return ImageList_InstanceSize(i.instance)
}
// CN: 判断当前类是否继承自指定类。
// EN: Determine whether the current class inherits from the specified class.
func (i *TImageList) InheritsFrom(AClass TClass) bool {
return ImageList_InheritsFrom(i.instance, AClass)
}
// CN: 与一个对象进行比较。
// EN: Compare with an object.
func (i *TImageList) Equals(Obj IObject) bool {
return ImageList_Equals(i.instance, CheckPtr(Obj))
}
// CN: 获取类的哈希值。
// EN: Get the hash value of the class.
func (i *TImageList) GetHashCode() int32 {
return ImageList_GetHashCode(i.instance)
}
// CN: 文本类信息。
// EN: Text information.
func (i *TImageList) ToString() string {
return ImageList_ToString(i.instance)
}
func (i *TImageList) BlendColor() TColor {
return ImageList_GetBlendColor(i.instance)
}
func (i *TImageList) SetBlendColor(value TColor) {
ImageList_SetBlendColor(i.instance, value)
}
func (i *TImageList) BkColor() TColor {
return ImageList_GetBkColor(i.instance)
}
func (i *TImageList) SetBkColor(value TColor) {
ImageList_SetBkColor(i.instance, value)
}
func (i *TImageList) AllocBy() int32 {
return ImageList_GetAllocBy(i.instance)
}
func (i *TImageList) SetAllocBy(value int32) {
ImageList_SetAllocBy(i.instance, value)
}
func (i *TImageList) DrawingStyle() TDrawingStyle {
return ImageList_GetDrawingStyle(i.instance)
}
func (i *TImageList) SetDrawingStyle(value TDrawingStyle) {
ImageList_SetDrawingStyle(i.instance, value)
}
// CN: 获取高度。
// EN: Get height.
func (i *TImageList) Height() int32 {
return ImageList_GetHeight(i.instance)
}
// CN: 设置高度。
// EN: Set height.
func (i *TImageList) SetHeight(value int32) {
ImageList_SetHeight(i.instance, value)
}
func (i *TImageList) ImageType() TImageType {
return ImageList_GetImageType(i.instance)
}
func (i *TImageList) SetImageType(value TImageType) {
ImageList_SetImageType(i.instance, value)
}
func (i *TImageList) Masked() bool {
return ImageList_GetMasked(i.instance)
}
func (i *TImageList) SetMasked(value bool) {
ImageList_SetMasked(i.instance, value)
}
// CN: 设置改变事件。
// EN: Set changed event.
func (i *TImageList) SetOnChange(fn TNotifyEvent) {
ImageList_SetOnChange(i.instance, fn)
}
func (i *TImageList) ShareImages() bool {
return ImageList_GetShareImages(i.instance)
}
func (i *TImageList) SetShareImages(value bool) {
ImageList_SetShareImages(i.instance, value)
}
// CN: 获取宽度。
// EN: Get width.
func (i *TImageList) Width() int32 {
return ImageList_GetWidth(i.instance)
}
// CN: 设置宽度。
// EN: Set width.
func (i *TImageList) SetWidth(value int32) {
ImageList_SetWidth(i.instance, value)
}
// CN: 获取设置控件拖拽时的光标。
// EN: Get Set the cursor when the control is dragged.
func (i *TImageList) DragCursor() TCursor {
return ImageList_GetDragCursor(i.instance)
}
// CN: 设置设置控件拖拽时的光标。
// EN: Set Set the cursor when the control is dragged.
func (i *TImageList) SetDragCursor(value TCursor) {
ImageList_SetDragCursor(i.instance, value)
}
// CN: 获取是否在拖拽中。
// EN: Get Is it in the middle of dragging.
func (i *TImageList) Dragging() bool {
return ImageList_GetDragging(i.instance)
}
func (i *TImageList) Count() int32 {
return ImageList_GetCount(i.instance)
}
// CN: 获取组件总数。
// EN: Get the total number of components.
func (i *TImageList) ComponentCount() int32 {
return ImageList_GetComponentCount(i.instance)
}
// CN: 获取组件索引。
// EN: Get component index.
func (i *TImageList) ComponentIndex() int32 {
return ImageList_GetComponentIndex(i.instance)
}
// CN: 设置组件索引。
// EN: Set component index.
func (i *TImageList) SetComponentIndex(value int32) {
ImageList_SetComponentIndex(i.instance, value)
}
// CN: 获取组件所有者。
// EN: Get component owner.
func (i *TImageList) Owner() *TComponent {
return AsComponent(ImageList_GetOwner(i.instance))
}
// CN: 获取组件名称。
// EN: Get the component name.
func (i *TImageList) Name() string {
return ImageList_GetName(i.instance)
}
// CN: 设置组件名称。
// EN: Set the component name.
func (i *TImageList) SetName(value string) {
ImageList_SetName(i.instance, value)
}
// CN: 获取对象标记。
// EN: Get the control tag.
func (i *TImageList) Tag() int {
return ImageList_GetTag(i.instance)
}
// CN: 设置对象标记。
// EN: Set the control tag.
func (i *TImageList) SetTag(value int) {
ImageList_SetTag(i.instance, value)
}
// CN: 获取指定索引组件。
// EN: Get the specified index component.
func (i *TImageList) Components(AIndex int32) *TComponent {
return AsComponent(ImageList_GetComponents(i.instance, AIndex))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。