1 Star 0 Fork 0

简约/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
finddialog.go 8.09 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 TFindDialog struct {
IComponent
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 创建一个新的对象。
//
// Create a new object.
func NewFindDialog(owner IComponent) *TFindDialog {
f := new(TFindDialog)
f.instance = FindDialog_Create(CheckPtr(owner))
f.ptr = unsafe.Pointer(f.instance)
return f
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsFindDialog(obj interface{}) *TFindDialog {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TFindDialog{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsFindDialog.
func FindDialogFromInst(inst uintptr) *TFindDialog {
return AsFindDialog(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsFindDialog.
func FindDialogFromObj(obj IObject) *TFindDialog {
return AsFindDialog(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 AsFindDialog.
func FindDialogFromUnsafePointer(ptr unsafe.Pointer) *TFindDialog {
return AsFindDialog(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (f *TFindDialog) Free() {
if f.instance != 0 {
FindDialog_Free(f.instance)
f.instance, f.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (f *TFindDialog) Instance() uintptr {
return f.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (f *TFindDialog) UnsafeAddr() unsafe.Pointer {
return f.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (f *TFindDialog) IsValid() bool {
return f.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (f *TFindDialog) Is() TIs {
return TIs(f.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (f *TFindDialog) As() TAs {
// return TAs(f.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TFindDialogClass() TClass {
return FindDialog_StaticClassType()
}
func (f *TFindDialog) CloseDialog() {
FindDialog_CloseDialog(f.instance)
}
// 执行。
func (f *TFindDialog) Execute() bool {
return FindDialog_Execute(f.instance)
}
// 查找指定名称的组件。
//
// Find the component with the specified name.
func (f *TFindDialog) FindComponent(AName string) *TComponent {
return AsComponent(FindDialog_FindComponent(f.instance, AName))
}
// 获取类名路径。
//
// Get the class name path.
func (f *TFindDialog) GetNamePath() string {
return FindDialog_GetNamePath(f.instance)
}
// 是否有父容器。
//
// Is there a parent container.
func (f *TFindDialog) HasParent() bool {
return FindDialog_HasParent(f.instance)
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (f *TFindDialog) Assign(Source IObject) {
FindDialog_Assign(f.instance, CheckPtr(Source))
}
// 获取类的类型信息。
//
// Get class type information.
func (f *TFindDialog) ClassType() TClass {
return FindDialog_ClassType(f.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (f *TFindDialog) ClassName() string {
return FindDialog_ClassName(f.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (f *TFindDialog) InstanceSize() int32 {
return FindDialog_InstanceSize(f.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (f *TFindDialog) InheritsFrom(AClass TClass) bool {
return FindDialog_InheritsFrom(f.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (f *TFindDialog) Equals(Obj IObject) bool {
return FindDialog_Equals(f.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (f *TFindDialog) GetHashCode() int32 {
return FindDialog_GetHashCode(f.instance)
}
// 文本类信息。
//
// Text information.
func (f *TFindDialog) ToString() string {
return FindDialog_ToString(f.instance)
}
// 获取左边位置。
//
// Get Left position.
func (f *TFindDialog) Left() int32 {
return FindDialog_GetLeft(f.instance)
}
// 设置左边位置。
//
// Set Left position.
func (f *TFindDialog) SetLeft(value int32) {
FindDialog_SetLeft(f.instance, value)
}
func (f *TFindDialog) Position() TPoint {
return FindDialog_GetPosition(f.instance)
}
func (f *TFindDialog) SetPosition(value TPoint) {
FindDialog_SetPosition(f.instance, value)
}
// 获取顶边位置。
//
// Get Top position.
func (f *TFindDialog) Top() int32 {
return FindDialog_GetTop(f.instance)
}
// 设置顶边位置。
//
// Set Top position.
func (f *TFindDialog) SetTop(value int32) {
FindDialog_SetTop(f.instance, value)
}
func (f *TFindDialog) FindText() string {
return FindDialog_GetFindText(f.instance)
}
func (f *TFindDialog) SetFindText(value string) {
FindDialog_SetFindText(f.instance, value)
}
func (f *TFindDialog) Options() TFindOptions {
return FindDialog_GetOptions(f.instance)
}
func (f *TFindDialog) SetOptions(value TFindOptions) {
FindDialog_SetOptions(f.instance, value)
}
func (f *TFindDialog) SetOnFind(fn TNotifyEvent) {
FindDialog_SetOnFind(f.instance, fn)
}
// 获取控件句柄。
//
// Get Control handle.
func (f *TFindDialog) Handle() HWND {
return FindDialog_GetHandle(f.instance)
}
func (f *TFindDialog) SetOnClose(fn TNotifyEvent) {
FindDialog_SetOnClose(f.instance, fn)
}
// 设置显示事件。
func (f *TFindDialog) SetOnShow(fn TNotifyEvent) {
FindDialog_SetOnShow(f.instance, fn)
}
// 获取组件总数。
//
// Get the total number of components.
func (f *TFindDialog) ComponentCount() int32 {
return FindDialog_GetComponentCount(f.instance)
}
// 获取组件索引。
//
// Get component index.
func (f *TFindDialog) ComponentIndex() int32 {
return FindDialog_GetComponentIndex(f.instance)
}
// 设置组件索引。
//
// Set component index.
func (f *TFindDialog) SetComponentIndex(value int32) {
FindDialog_SetComponentIndex(f.instance, value)
}
// 获取组件所有者。
//
// Get component owner.
func (f *TFindDialog) Owner() *TComponent {
return AsComponent(FindDialog_GetOwner(f.instance))
}
// 获取组件名称。
//
// Get the component name.
func (f *TFindDialog) Name() string {
return FindDialog_GetName(f.instance)
}
// 设置组件名称。
//
// Set the component name.
func (f *TFindDialog) SetName(value string) {
FindDialog_SetName(f.instance, value)
}
// 获取对象标记。
//
// Get the control tag.
func (f *TFindDialog) Tag() int {
return FindDialog_GetTag(f.instance)
}
// 设置对象标记。
//
// Set the control tag.
func (f *TFindDialog) SetTag(value int) {
FindDialog_SetTag(f.instance, value)
}
// 获取指定索引组件。
//
// Get the specified index component.
func (f *TFindDialog) Components(AIndex int32) *TComponent {
return AsComponent(FindDialog_GetComponents(f.instance, AIndex))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jianyue/govcl.git
git@gitee.com:jianyue/govcl.git
jianyue
govcl
govcl
v2.0.7

搜索帮助