forked from ying32/govcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brush.go
238 lines (201 loc) · 5.4 KB
/
brush.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
//----------------------------------------
// 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 TBrush struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 创建一个新的对象。
//
// Create a new object.
func NewBrush() *TBrush {
b := new(TBrush)
b.instance = Brush_Create()
b.ptr = unsafe.Pointer(b.instance)
setFinalizer(b, (*TBrush).Free)
return b
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsBrush(obj interface{}) *TBrush {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &TBrush{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsBrush.
func BrushFromInst(inst uintptr) *TBrush {
return AsBrush(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsBrush.
func BrushFromObj(obj IObject) *TBrush {
return AsBrush(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 AsBrush.
func BrushFromUnsafePointer(ptr unsafe.Pointer) *TBrush {
return AsBrush(ptr)
}
// -------------------------- Deprecated end --------------------------
// 释放对象。
//
// Free object.
func (b *TBrush) Free() {
if b.instance != 0 {
Brush_Free(b.instance)
b.instance, b.ptr = 0, nullptr
}
}
// 返回对象实例指针。
//
// Return object instance pointer.
func (b *TBrush) Instance() uintptr {
return b.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (b *TBrush) UnsafeAddr() unsafe.Pointer {
return b.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (b *TBrush) IsValid() bool {
return b.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (b *TBrush) Is() TIs {
return TIs(b.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (b *TBrush) As() TAs {
// return TAs(b.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func TBrushClass() TClass {
return Brush_StaticClassType()
}
// 复制一个对象,如果对象实现了此方法的话。
//
// Copy an object, if the object implements this method.
func (b *TBrush) Assign(Source IObject) {
Brush_Assign(b.instance, CheckPtr(Source))
}
// 获取类名路径。
//
// Get the class name path.
func (b *TBrush) GetNamePath() string {
return Brush_GetNamePath(b.instance)
}
// 获取类的类型信息。
//
// Get class type information.
func (b *TBrush) ClassType() TClass {
return Brush_ClassType(b.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (b *TBrush) ClassName() string {
return Brush_ClassName(b.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (b *TBrush) InstanceSize() int32 {
return Brush_InstanceSize(b.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (b *TBrush) InheritsFrom(AClass TClass) bool {
return Brush_InheritsFrom(b.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (b *TBrush) Equals(Obj IObject) bool {
return Brush_Equals(b.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (b *TBrush) GetHashCode() int32 {
return Brush_GetHashCode(b.instance)
}
// 文本类信息。
//
// Text information.
func (b *TBrush) ToString() string {
return Brush_ToString(b.instance)
}
func (b *TBrush) Bitmap() *TBitmap {
return AsBitmap(Brush_GetBitmap(b.instance))
}
func (b *TBrush) SetBitmap(value *TBitmap) {
Brush_SetBitmap(b.instance, CheckPtr(value))
}
// 获取控件句柄。
//
// Get Control handle.
func (b *TBrush) Handle() HBRUSH {
return Brush_GetHandle(b.instance)
}
// 设置控件句柄。
//
// Set Control handle.
func (b *TBrush) SetHandle(value HBRUSH) {
Brush_SetHandle(b.instance, value)
}
// 获取颜色。
//
// Get color.
func (b *TBrush) Color() TColor {
return Brush_GetColor(b.instance)
}
// 设置颜色。
//
// Set color.
func (b *TBrush) SetColor(value TColor) {
Brush_SetColor(b.instance, value)
}
func (b *TBrush) Style() TBrushStyle {
return Brush_GetStyle(b.instance)
}
func (b *TBrush) SetStyle(value TBrushStyle) {
Brush_SetStyle(b.instance, value)
}
// 设置改变事件。
//
// Set changed event.
func (b *TBrush) SetOnChange(fn TNotifyEvent) {
Brush_SetOnChange(b.instance, fn)
}