forked from ying32/govcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjumpcategoryitem.go
227 lines (191 loc) · 6.07 KB
/
jumpcategoryitem.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
//----------------------------------------
// 代码由GenlibVcl工具自动生成。
// Copyright © ying32. All Rights Reserved.
//
//----------------------------------------
package vcl
import (
. "github.com/ying32/govcl/vcl/api"
. "github.com/ying32/govcl/vcl/types"
"unsafe"
)
type TJumpCategoryItem struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与VCL没有太多关系。
ptr unsafe.Pointer
}
// NewJumpCategoryItem
// CN: 创建一个新的对象。
// EN: Create a new object.
func NewJumpCategoryItem() *TJumpCategoryItem {
j := new(TJumpCategoryItem)
j.instance = JumpCategoryItem_Create()
j.ptr = unsafe.Pointer(j.instance)
return j
}
// JumpCategoryItemFromInst
// CN: 新建一个对象来自已经存在的对象实例指针。
// EN: Create a new object from an existing object instance pointer.
func JumpCategoryItemFromInst(inst uintptr) *TJumpCategoryItem {
j := new(TJumpCategoryItem)
j.instance = inst
j.ptr = unsafe.Pointer(inst)
return j
}
// JumpCategoryItemFromObj
// CN: 新建一个对象来自已经存在的对象实例。
// EN: Create a new object from an existing object instance.
func JumpCategoryItemFromObj(obj IObject) *TJumpCategoryItem {
j := new(TJumpCategoryItem)
j.instance = CheckPtr(obj)
j.ptr = unsafe.Pointer(j.instance)
return j
}
// JumpCategoryItemFromUnsafePointer
// CN: 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
// EN: Create a new object from an unsecure address. Note: Using this function may cause some unclear situations and be used with caution..
func JumpCategoryItemFromUnsafePointer(ptr unsafe.Pointer) *TJumpCategoryItem {
j := new(TJumpCategoryItem)
j.instance = uintptr(ptr)
j.ptr = ptr
return j
}
// Free
// CN: 释放对象。
// EN: Free object.
func (j *TJumpCategoryItem) Free() {
if j.instance != 0 {
JumpCategoryItem_Free(j.instance)
j.instance = 0
j.ptr = unsafe.Pointer(uintptr(0))
}
}
// Instance
// CN: 返回对象实例指针。
// EN: Return object instance pointer.
func (j *TJumpCategoryItem) Instance() uintptr {
return j.instance
}
// UnsafeAddr
// CN: 获取一个不安全的地址。
// EN: Get an unsafe address.
func (j *TJumpCategoryItem) UnsafeAddr() unsafe.Pointer {
return j.ptr
}
// IsValid
// CN: 检测地址是否为空。
// EN: Check if the address is empty.
func (j *TJumpCategoryItem) IsValid() bool {
return j.instance != 0
}
// TJumpCategoryItemClass
// CN: 获取类信息指针。
// EN: Get class information pointer.
func TJumpCategoryItemClass() TClass {
return JumpCategoryItem_StaticClassType()
}
// GetNamePath
// CN: 获取类名路径。
// EN: Get the class name path.
func (j *TJumpCategoryItem) GetNamePath() string {
return JumpCategoryItem_GetNamePath(j.instance)
}
// Assign
// CN: 复制一个对象,如果对象实现了此方法的话。
// EN: Copy an object, if the object implements this method.
func (j *TJumpCategoryItem) Assign(Source IObject) {
JumpCategoryItem_Assign(j.instance, CheckPtr(Source))
}
// DisposeOf
// CN: 丢弃当前对象。
// EN: Discard the current object.
func (j *TJumpCategoryItem) DisposeOf() {
JumpCategoryItem_DisposeOf(j.instance)
}
// ClassType
// CN: 获取类的类型信息。
// EN: Get class type information.
func (j *TJumpCategoryItem) ClassType() TClass {
return JumpCategoryItem_ClassType(j.instance)
}
// ClassName
// CN: 获取当前对象类名称。
// EN: Get the current object class name.
func (j *TJumpCategoryItem) ClassName() string {
return JumpCategoryItem_ClassName(j.instance)
}
// InstanceSize
// CN: 获取当前对象实例大小。
// EN: Get the current object instance size.
func (j *TJumpCategoryItem) InstanceSize() int32 {
return JumpCategoryItem_InstanceSize(j.instance)
}
// InheritsFrom
// CN: 判断当前类是否继承自指定类。
// EN: Determine whether the current class inherits from the specified class.
func (j *TJumpCategoryItem) InheritsFrom(AClass TClass) bool {
return JumpCategoryItem_InheritsFrom(j.instance, AClass)
}
// Equals
// CN: 与一个对象进行比较。
// EN: Compare with an object.
func (j *TJumpCategoryItem) Equals(Obj IObject) bool {
return JumpCategoryItem_Equals(j.instance, CheckPtr(Obj))
}
// GetHashCode
// CN: 获取类的哈希值。
// EN: Get the hash value of the class.
func (j *TJumpCategoryItem) GetHashCode() int32 {
return JumpCategoryItem_GetHashCode(j.instance)
}
// ToString
// CN: 文本类信息。
// EN: Text information.
func (j *TJumpCategoryItem) ToString() string {
return JumpCategoryItem_ToString(j.instance)
}
// Visible
// CN: 获取控件可视。
// EN: Get the control visible.
func (j *TJumpCategoryItem) Visible() bool {
return JumpCategoryItem_GetVisible(j.instance)
}
// SetVisible
// CN: 设置控件可视。
// EN: Set the control visible.
func (j *TJumpCategoryItem) SetVisible(value bool) {
JumpCategoryItem_SetVisible(j.instance, value)
}
// CategoryName
func (j *TJumpCategoryItem) CategoryName() string {
return JumpCategoryItem_GetCategoryName(j.instance)
}
// SetCategoryName
func (j *TJumpCategoryItem) SetCategoryName(value string) {
JumpCategoryItem_SetCategoryName(j.instance, value)
}
// Items
func (j *TJumpCategoryItem) Items() *TJumpListCollection {
return JumpListCollectionFromInst(JumpCategoryItem_GetItems(j.instance))
}
// SetItems
func (j *TJumpCategoryItem) SetItems(value *TJumpListCollection) {
JumpCategoryItem_SetItems(j.instance, CheckPtr(value))
}
// Collection
func (j *TJumpCategoryItem) Collection() *TCollection {
return CollectionFromInst(JumpCategoryItem_GetCollection(j.instance))
}
// SetCollection
func (j *TJumpCategoryItem) SetCollection(value *TCollection) {
JumpCategoryItem_SetCollection(j.instance, CheckPtr(value))
}
// Index
func (j *TJumpCategoryItem) Index() int32 {
return JumpCategoryItem_GetIndex(j.instance)
}
// SetIndex
func (j *TJumpCategoryItem) SetIndex(value int32) {
JumpCategoryItem_SetIndex(j.instance, value)
}