代码拉取完成,页面将自动刷新
//----------------------------------------
// 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 TPicture struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 创建一个新的对象。
//
// Create a new object.
func NewPicture() *TPicture {
p := new(TPicture)
p.instance = Picture_Create()
p.ptr = unsafe.Pointer(p.instance)
setFinalizer(p, (*TPicture).Free)
return p
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsPicture(obj interface{}) *TPicture {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TPicture{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsPicture.
func PictureFromInst(inst uintptr) *TPicture {
return AsPicture(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsPicture.
func PictureFromObj(obj IObject) *TPicture {
return AsPicture(obj)
}
// 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
//
// Create a new object from an unsecured address. Note: Using this function may cause some unclear situations and be used with caution..
// Deprecated: use AsPicture.
func PictureFromUnsafePointer(ptr unsafe.Pointer) *TPicture {
return AsPicture(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (p *TPicture) Free() {
if p.instance != 0 {
Picture_Free(p.instance)
p.instance, p.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (p *TPicture) Instance() uintptr {
return p.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (p *TPicture) UnsafeAddr() unsafe.Pointer {
return p.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (p *TPicture) IsValid() bool {
return p.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (p *TPicture) Is() TIs {
return TIs(p.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (p *TPicture) As() TAs {
// return TAs(p.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TPictureClass() TClass {
return Picture_StaticClassType()
}
// 从文件加载。
func (p *TPicture) LoadFromFile(Filename string) {
Picture_LoadFromFile(p.instance, Filename)
}
// 保存至文件。
func (p *TPicture) SaveToFile(Filename string) {
Picture_SaveToFile(p.instance, Filename)
}
// 文件流加载。
func (p *TPicture) LoadFromStream(Stream IStream) {
Picture_LoadFromStream(p.instance, CheckPtr(Stream))
}
// 保存至流。
func (p *TPicture) SaveToStream(Stream IStream) {
Picture_SaveToStream(p.instance, CheckPtr(Stream))
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (p *TPicture) Assign(Source IObject) {
Picture_Assign(p.instance, CheckPtr(Source))
}
// 获取类名路径。
//
// Get the class name path.
func (p *TPicture) GetNamePath() string {
return Picture_GetNamePath(p.instance)
}
// 获取类的类型信息。
//
// Get class type information.
func (p *TPicture) ClassType() TClass {
return Picture_ClassType(p.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (p *TPicture) ClassName() string {
return Picture_ClassName(p.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (p *TPicture) InstanceSize() int32 {
return Picture_InstanceSize(p.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (p *TPicture) InheritsFrom(AClass TClass) bool {
return Picture_InheritsFrom(p.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (p *TPicture) Equals(Obj IObject) bool {
return Picture_Equals(p.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (p *TPicture) GetHashCode() int32 {
return Picture_GetHashCode(p.instance)
}
// 文本类信息。
//
// Text information.
func (p *TPicture) ToString() string {
return Picture_ToString(p.instance)
}
func (p *TPicture) Bitmap() *TBitmap {
return AsBitmap(Picture_GetBitmap(p.instance))
}
func (p *TPicture) SetBitmap(value *TBitmap) {
Picture_SetBitmap(p.instance, CheckPtr(value))
}
func (p *TPicture) Graphic() *TGraphic {
return AsGraphic(Picture_GetGraphic(p.instance))
}
func (p *TPicture) SetGraphic(value IGraphic) {
Picture_SetGraphic(p.instance, CheckPtr(value))
}
// 获取高度。
//
// Get height.
func (p *TPicture) Height() int32 {
return Picture_GetHeight(p.instance)
}
// 获取图标。
//
// Get icon.
func (p *TPicture) Icon() *TIcon {
return AsIcon(Picture_GetIcon(p.instance))
}
// 设置图标。
//
// Set icon.
func (p *TPicture) SetIcon(value *TIcon) {
Picture_SetIcon(p.instance, CheckPtr(value))
}
// 获取宽度。
//
// Get width.
func (p *TPicture) Width() int32 {
return Picture_GetWidth(p.instance)
}
// 设置改变事件。
//
// Set changed event.
func (p *TPicture) SetOnChange(fn TNotifyEvent) {
Picture_SetOnChange(p.instance, fn)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。