forked from ying32/govcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphic.go
332 lines (288 loc) · 6.22 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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
//----------------------------------------
// 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 unsafe.Pointer
}
// NewGraphic
//
// 创建一个新的对象。
//
// Create a new object.
func NewGraphic() *TGraphic {
g := new(TGraphic)
g.instance = unsafe.Pointer(Graphic_Create())
setFinalizer(g, (*TGraphic).Free)
return g
}
// AsGraphic
//
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsGraphic(obj interface{}) *TGraphic {
instance := getInstance(obj)
if instance == nullptr { return nil }
return &TGraphic{instance: instance}
}
// Free
//
// 释放对象。
//
// Free object.
func (g *TGraphic) Free() {
if g.instance != nullptr {
Graphic_Free(g._instance())
g.instance = nullptr
}
}
func (g *TGraphic) _instance() uintptr {
return uintptr(g.instance)
}
// Instance
//
// 返回对象实例指针。
//
// Return object instance pointer.
func (g *TGraphic) Instance() uintptr {
return g._instance()
}
// UnsafeAddr
//
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (g *TGraphic) UnsafeAddr() unsafe.Pointer {
return g.instance
}
// IsValid
//
// 检测地址是否为空。
//
// Check if the address is empty.
func (g *TGraphic) IsValid() bool {
return g.instance != nullptr
}
// Is
//
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (g *TGraphic) Is() TIs {
return TIs(g._instance())
}
// As
//
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (g *TGraphic) As() TAs {
// return TAs(g._instance())
//}
// TGraphicClass
//
// 获取类信息指针。
//
// Get class information pointer.
func TGraphicClass() TClass {
return Graphic_StaticClassType()
}
// Equals
//
// 与一个对象进行比较。
//
// Compare with an object.
func (g *TGraphic) Equals(Obj IObject) bool {
return Graphic_Equals(g._instance(), CheckPtr(Obj))
}
// LoadFromFile
//
// 从文件加载。
func (g *TGraphic) LoadFromFile(Filename string) {
Graphic_LoadFromFile(g._instance(), Filename)
}
// SaveToFile
//
// 保存至文件。
func (g *TGraphic) SaveToFile(Filename string) {
Graphic_SaveToFile(g._instance(), Filename)
}
// LoadFromStream
//
// 文件流加载。
func (g *TGraphic) LoadFromStream(Stream IStream) {
Graphic_LoadFromStream(g._instance(), CheckPtr(Stream))
}
// SaveToStream
//
// 保存至流。
func (g *TGraphic) SaveToStream(Stream IStream) {
Graphic_SaveToStream(g._instance(), CheckPtr(Stream))
}
// Assign
//
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (g *TGraphic) Assign(Source IObject) {
Graphic_Assign(g._instance(), CheckPtr(Source))
}
// GetNamePath
//
// 获取类名路径。
//
// Get the class name path.
func (g *TGraphic) GetNamePath() string {
return Graphic_GetNamePath(g._instance())
}
// ClassType
//
// 获取类的类型信息。
//
// Get class type information.
func (g *TGraphic) ClassType() TClass {
return Graphic_ClassType(g._instance())
}
// ClassName
//
// 获取当前对象类名称。
//
// Get the current object class name.
func (g *TGraphic) ClassName() string {
return Graphic_ClassName(g._instance())
}
// InstanceSize
//
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (g *TGraphic) InstanceSize() int32 {
return Graphic_InstanceSize(g._instance())
}
// InheritsFrom
//
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (g *TGraphic) InheritsFrom(AClass TClass) bool {
return Graphic_InheritsFrom(g._instance(), AClass)
}
// GetHashCode
//
// 获取类的哈希值。
//
// Get the hash value of the class.
func (g *TGraphic) GetHashCode() int32 {
return Graphic_GetHashCode(g._instance())
}
// ToString
//
// 文本类信息。
//
// Text information.
func (g *TGraphic) ToString() string {
return Graphic_ToString(g._instance())
}
// Empty
//
// 获取对象是否为空。
//
// Get object is empty.
func (g *TGraphic) Empty() bool {
return Graphic_GetEmpty(g._instance())
}
// Height
//
// 获取高度。
//
// Get height.
func (g *TGraphic) Height() int32 {
return Graphic_GetHeight(g._instance())
}
// SetHeight
//
// 设置高度。
//
// Set height.
func (g *TGraphic) SetHeight(value int32) {
Graphic_SetHeight(g._instance(), value)
}
// Modified
//
// 获取修改。
//
// Get modified.
func (g *TGraphic) Modified() bool {
return Graphic_GetModified(g._instance())
}
// SetModified
//
// 设置修改。
//
// 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)
}
// Transparent
//
// 获取透明。
//
// Get transparent.
func (g *TGraphic) Transparent() bool {
return Graphic_GetTransparent(g._instance())
}
// SetTransparent
//
// 设置透明。
//
// Set transparent.
func (g *TGraphic) SetTransparent(value bool) {
Graphic_SetTransparent(g._instance(), value)
}
// Width
//
// 获取宽度。
//
// Get width.
func (g *TGraphic) Width() int32 {
return Graphic_GetWidth(g._instance())
}
// SetWidth
//
// 设置宽度。
//
// Set width.
func (g *TGraphic) SetWidth(value int32) {
Graphic_SetWidth(g._instance(), value)
}
// SetOnChange
//
// 设置改变事件。
//
// Set changed event.
func (g *TGraphic) SetOnChange(fn TNotifyEvent) {
Graphic_SetOnChange(g._instance(), fn)
}