1 Star 0 Fork 0

简约/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gifimage.go 6.81 KB
一键复制 编辑 原始数据 按行查看 历史
//----------------------------------------
// 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 TGIFImage struct {
IGraphic
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 创建一个新的对象。
//
// Create a new object.
func NewGIFImage() *TGIFImage {
g := new(TGIFImage)
g.instance = GIFImage_Create()
g.ptr = unsafe.Pointer(g.instance)
setFinalizer(g, (*TGIFImage).Free)
return g
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsGIFImage(obj interface{}) *TGIFImage {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TGIFImage{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsGIFImage.
func GIFImageFromInst(inst uintptr) *TGIFImage {
return AsGIFImage(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsGIFImage.
func GIFImageFromObj(obj IObject) *TGIFImage {
return AsGIFImage(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 AsGIFImage.
func GIFImageFromUnsafePointer(ptr unsafe.Pointer) *TGIFImage {
return AsGIFImage(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (g *TGIFImage) Free() {
if g.instance != 0 {
GIFImage_Free(g.instance)
g.instance, g.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (g *TGIFImage) Instance() uintptr {
return g.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (g *TGIFImage) UnsafeAddr() unsafe.Pointer {
return g.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (g *TGIFImage) IsValid() bool {
return g.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (g *TGIFImage) Is() TIs {
return TIs(g.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (g *TGIFImage) As() TAs {
// return TAs(g.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TGIFImageClass() TClass {
return GIFImage_StaticClassType()
}
// 保存至流。
func (g *TGIFImage) SaveToStream(Stream IStream) {
GIFImage_SaveToStream(g.instance, CheckPtr(Stream))
}
// 文件流加载。
func (g *TGIFImage) LoadFromStream(Stream IStream) {
GIFImage_LoadFromStream(g.instance, CheckPtr(Stream))
}
// 清除。
func (g *TGIFImage) Clear() {
GIFImage_Clear(g.instance)
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (g *TGIFImage) Assign(Source IObject) {
GIFImage_Assign(g.instance, CheckPtr(Source))
}
// 与一个对象进行比较。
//
// Compare with an object.
func (g *TGIFImage) Equals(Obj IObject) bool {
return GIFImage_Equals(g.instance, CheckPtr(Obj))
}
// 从文件加载。
func (g *TGIFImage) LoadFromFile(Filename string) {
GIFImage_LoadFromFile(g.instance, Filename)
}
// 保存至文件。
func (g *TGIFImage) SaveToFile(Filename string) {
GIFImage_SaveToFile(g.instance, Filename)
}
func (g *TGIFImage) SetSize(AWidth int32, AHeight int32) {
GIFImage_SetSize(g.instance, AWidth , AHeight)
}
// 获取类名路径。
//
// Get the class name path.
func (g *TGIFImage) GetNamePath() string {
return GIFImage_GetNamePath(g.instance)
}
// 获取类的类型信息。
//
// Get class type information.
func (g *TGIFImage) ClassType() TClass {
return GIFImage_ClassType(g.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (g *TGIFImage) ClassName() string {
return GIFImage_ClassName(g.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (g *TGIFImage) InstanceSize() int32 {
return GIFImage_InstanceSize(g.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (g *TGIFImage) InheritsFrom(AClass TClass) bool {
return GIFImage_InheritsFrom(g.instance, AClass)
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (g *TGIFImage) GetHashCode() int32 {
return GIFImage_GetHashCode(g.instance)
}
// 文本类信息。
//
// Text information.
func (g *TGIFImage) ToString() string {
return GIFImage_ToString(g.instance)
}
func (g *TGIFImage) BitsPerPixel() int32 {
return GIFImage_GetBitsPerPixel(g.instance)
}
func (g *TGIFImage) Empty() bool {
return GIFImage_GetEmpty(g.instance)
}
// 获取高度。
//
// Get height.
func (g *TGIFImage) Height() int32 {
return GIFImage_GetHeight(g.instance)
}
// 设置高度。
//
// Set height.
func (g *TGIFImage) SetHeight(value int32) {
GIFImage_SetHeight(g.instance, value)
}
// 获取修改。
//
// Get modified.
func (g *TGIFImage) Modified() bool {
return GIFImage_GetModified(g.instance)
}
// 设置修改。
//
// Set modified.
func (g *TGIFImage) SetModified(value bool) {
GIFImage_SetModified(g.instance, value)
}
func (g *TGIFImage) Palette() HPALETTE {
return GIFImage_GetPalette(g.instance)
}
func (g *TGIFImage) SetPalette(value HPALETTE) {
GIFImage_SetPalette(g.instance, value)
}
func (g *TGIFImage) PaletteModified() bool {
return GIFImage_GetPaletteModified(g.instance)
}
func (g *TGIFImage) SetPaletteModified(value bool) {
GIFImage_SetPaletteModified(g.instance, value)
}
// 获取透明。
//
// Get transparent.
func (g *TGIFImage) Transparent() bool {
return GIFImage_GetTransparent(g.instance)
}
// 获取宽度。
//
// Get width.
func (g *TGIFImage) Width() int32 {
return GIFImage_GetWidth(g.instance)
}
// 设置宽度。
//
// Set width.
func (g *TGIFImage) SetWidth(value int32) {
GIFImage_SetWidth(g.instance, value)
}
// 设置改变事件。
//
// Set changed event.
func (g *TGIFImage) SetOnChange(fn TNotifyEvent) {
GIFImage_SetOnChange(g.instance, fn)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jianyue/govcl.git
git@gitee.com:jianyue/govcl.git
jianyue
govcl
govcl
v2.0.7

搜索帮助