forked from ying32/govcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.go
245 lines (205 loc) · 5.53 KB
/
list.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
//----------------------------------------
// 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 TList struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 创建一个新的对象。
//
// Create a new object.
func NewList() *TList {
l := new(TList)
l.instance = List_Create()
l.ptr = unsafe.Pointer(l.instance)
setFinalizer(l, (*TList).Free)
return l
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsList(obj interface{}) *TList {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TList{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsList.
func ListFromInst(inst uintptr) *TList {
return AsList(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsList.
func ListFromObj(obj IObject) *TList {
return AsList(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 AsList.
func ListFromUnsafePointer(ptr unsafe.Pointer) *TList {
return AsList(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (l *TList) Free() {
if l.instance != 0 {
List_Free(l.instance)
l.instance, l.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (l *TList) Instance() uintptr {
return l.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (l *TList) UnsafeAddr() unsafe.Pointer {
return l.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (l *TList) IsValid() bool {
return l.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (l *TList) Is() TIs {
return TIs(l.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (l *TList) As() TAs {
// return TAs(l.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TListClass() TClass {
return List_StaticClassType()
}
func (l *TList) Add(Item uintptr) int32 {
return List_Add(l.instance, Item)
}
// 清除。
func (l *TList) Clear() {
List_Clear(l.instance)
}
func (l *TList) Delete(Index int32) {
List_Delete(l.instance, Index)
}
func (l *TList) Expand() *TList {
return AsList(List_Expand(l.instance))
}
func (l *TList) IndexOf(Item uintptr) int32 {
return List_IndexOf(l.instance, Item)
}
func (l *TList) Insert(Index int32, Item uintptr) {
List_Insert(l.instance, Index , Item)
}
func (l *TList) Move(CurIndex int32, NewIndex int32) {
List_Move(l.instance, CurIndex , NewIndex)
}
// 获取类的类型信息。
//
// Get class type information.
func (l *TList) ClassType() TClass {
return List_ClassType(l.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (l *TList) ClassName() string {
return List_ClassName(l.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (l *TList) InstanceSize() int32 {
return List_InstanceSize(l.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (l *TList) InheritsFrom(AClass TClass) bool {
return List_InheritsFrom(l.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (l *TList) Equals(Obj IObject) bool {
return List_Equals(l.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (l *TList) GetHashCode() int32 {
return List_GetHashCode(l.instance)
}
// 文本类信息。
//
// Text information.
func (l *TList) ToString() string {
return List_ToString(l.instance)
}
func (l *TList) Capacity() int32 {
return List_GetCapacity(l.instance)
}
func (l *TList) SetCapacity(value int32) {
List_SetCapacity(l.instance, value)
}
// 获取项目总数。
//
// Get Total number of projects.
func (l *TList) Count() int32 {
return List_GetCount(l.instance)
}
// 设置项目总数。
//
// Set Total number of projects.
func (l *TList) SetCount(value int32) {
List_SetCount(l.instance, value)
}
// 获取获取列表指针。
//
// Get Get list pointer.
func (l *TList) List() uintptr {
return List_GetList(l.instance)
}
// 获取获取指定索引项目。
//
// Get Get the specified index item.
func (l *TList) Items(Index int32) uintptr {
return List_GetItems(l.instance, Index)
}
// 设置获取指定索引项目。
//
// Set Get the specified index item.
func (l *TList) SetItems(Index int32, value uintptr) {
List_SetItems(l.instance, Index, value)
}