forked from ying32/govcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphic.go
293 lines (247 loc) · 6.64 KB
/
graphic.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
//----------------------------------------
// 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 TGraphic struct {
IGraphic
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 创建一个新的对象。
//
// Create a new object.
func NewGraphic() *TGraphic {
g := new(TGraphic)
g.instance = Graphic_Create()
g.ptr = unsafe.Pointer(g.instance)
setFinalizer(g, (*TGraphic).Free)
return g
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsGraphic(obj interface{}) *TGraphic {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TGraphic{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsGraphic.
func GraphicFromInst(inst uintptr) *TGraphic {
return AsGraphic(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsGraphic.
func GraphicFromObj(obj IObject) *TGraphic {
return AsGraphic(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 AsGraphic.
func GraphicFromUnsafePointer(ptr unsafe.Pointer) *TGraphic {
return AsGraphic(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (g *TGraphic) Free() {
if g.instance != 0 {
Graphic_Free(g.instance)
g.instance, g.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (g *TGraphic) Instance() uintptr {
return g.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (g *TGraphic) UnsafeAddr() unsafe.Pointer {
return g.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (g *TGraphic) IsValid() bool {
return g.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (g *TGraphic) Is() TIs {
return TIs(g.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (g *TGraphic) As() TAs {
// return TAs(g.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TGraphicClass() TClass {
return Graphic_StaticClassType()
}
// 与一个对象进行比较。
//
// Compare with an object.
func (g *TGraphic) Equals(Obj IObject) bool {
return Graphic_Equals(g.instance, CheckPtr(Obj))
}
// 从文件加载。
func (g *TGraphic) LoadFromFile(Filename string) {
Graphic_LoadFromFile(g.instance, Filename)
}
// 保存至文件。
func (g *TGraphic) SaveToFile(Filename string) {
Graphic_SaveToFile(g.instance, Filename)
}
// 文件流加载。
func (g *TGraphic) LoadFromStream(Stream IStream) {
Graphic_LoadFromStream(g.instance, CheckPtr(Stream))
}
// 保存至流。
func (g *TGraphic) SaveToStream(Stream IStream) {
Graphic_SaveToStream(g.instance, CheckPtr(Stream))
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (g *TGraphic) Assign(Source IObject) {
Graphic_Assign(g.instance, CheckPtr(Source))
}
// 获取类名路径。
//
// Get the class name path.
func (g *TGraphic) GetNamePath() string {
return Graphic_GetNamePath(g.instance)
}
// 获取类的类型信息。
//
// Get class type information.
func (g *TGraphic) ClassType() TClass {
return Graphic_ClassType(g.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (g *TGraphic) ClassName() string {
return Graphic_ClassName(g.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (g *TGraphic) InstanceSize() int32 {
return Graphic_InstanceSize(g.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (g *TGraphic) InheritsFrom(AClass TClass) bool {
return Graphic_InheritsFrom(g.instance, AClass)
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (g *TGraphic) GetHashCode() int32 {
return Graphic_GetHashCode(g.instance)
}
// 文本类信息。
//
// Text information.
func (g *TGraphic) ToString() string {
return Graphic_ToString(g.instance)
}
// 获取对象是否为空。
//
// Get object is empty.
func (g *TGraphic) Empty() bool {
return Graphic_GetEmpty(g.instance)
}
// 获取高度。
//
// Get height.
func (g *TGraphic) Height() int32 {
return Graphic_GetHeight(g.instance)
}
// 设置高度。
//
// Set height.
func (g *TGraphic) SetHeight(value int32) {
Graphic_SetHeight(g.instance, value)
}
// 获取修改。
//
// Get modified.
func (g *TGraphic) Modified() bool {
return Graphic_GetModified(g.instance)
}
// 设置修改。
//
// Set modified.
func (g *TGraphic) SetModified(value bool) {
Graphic_SetModified(g.instance, value)
}
func (g *TGraphic) Palette() HPALETTE {
return Graphic_GetPalette(g.instance)
}
func (g *TGraphic) SetPalette(value HPALETTE) {
Graphic_SetPalette(g.instance, value)
}
func (g *TGraphic) PaletteModified() bool {
return Graphic_GetPaletteModified(g.instance)
}
func (g *TGraphic) SetPaletteModified(value bool) {
Graphic_SetPaletteModified(g.instance, value)
}
// 获取透明。
//
// Get transparent.
func (g *TGraphic) Transparent() bool {
return Graphic_GetTransparent(g.instance)
}
// 设置透明。
//
// Set transparent.
func (g *TGraphic) SetTransparent(value bool) {
Graphic_SetTransparent(g.instance, value)
}
// 获取宽度。
//
// Get width.
func (g *TGraphic) Width() int32 {
return Graphic_GetWidth(g.instance)
}
// 设置宽度。
//
// Set width.
func (g *TGraphic) SetWidth(value int32) {
Graphic_SetWidth(g.instance, value)
}
// 设置改变事件。
//
// Set changed event.
func (g *TGraphic) SetOnChange(fn TNotifyEvent) {
Graphic_SetOnChange(g.instance, fn)
}