-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcolorpickerbutton.gen.go
231 lines (183 loc) · 6.91 KB
/
colorpickerbutton.gen.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
package godot
import (
"github.com/shadowapex/godot-go/gdnative"
)
/*------------------------------------------------------------------------------
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. Any updates should be done in
// "class.go.tmpl" so they can be included in the generated
// code.
//----------------------------------------------------------------------------*/
//func NewColorPickerButtonFromPointer(ptr gdnative.Pointer) ColorPickerButton {
func newColorPickerButtonFromPointer(ptr gdnative.Pointer) ColorPickerButton {
owner := gdnative.NewObjectFromPointer(ptr)
obj := ColorPickerButton{}
obj.SetBaseObject(owner)
return obj
}
/*
Encapsulates a [ColorPicker] making it accesible by pressing a button, pressing the button will toggle the [ColorPicker] visibility
*/
type ColorPickerButton struct {
Button
owner gdnative.Object
}
func (o *ColorPickerButton) BaseClass() string {
return "ColorPickerButton"
}
/*
Undocumented
Args: [{ false arg0 Color}], Returns: void
*/
func (o *ColorPickerButton) X_ColorChanged(arg0 gdnative.Color) {
//log.Println("Calling ColorPickerButton.X_ColorChanged()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 1, 1)
ptrArguments[0] = gdnative.NewPointerFromColor(arg0)
// Get the method bind
methodBind := gdnative.NewMethodBind("ColorPickerButton", "_color_changed")
// Call the parent method.
// void
retPtr := gdnative.NewEmptyVoid()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
}
/*
Undocumented
Args: [], Returns: Color
*/
func (o *ColorPickerButton) GetPickColor() gdnative.Color {
//log.Println("Calling ColorPickerButton.GetPickColor()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 0, 0)
// Get the method bind
methodBind := gdnative.NewMethodBind("ColorPickerButton", "get_pick_color")
// Call the parent method.
// Color
retPtr := gdnative.NewEmptyColor()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
// If we have a return type, convert it from a pointer into its actual object.
ret := gdnative.NewColorFromPointer(retPtr)
return ret
}
/*
Returns the [code]ColorPicker[/code] that this [code]ColorPickerButton[/code] toggles.
Args: [], Returns: ColorPicker
*/
func (o *ColorPickerButton) GetPicker() ColorPickerImplementer {
//log.Println("Calling ColorPickerButton.GetPicker()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 0, 0)
// Get the method bind
methodBind := gdnative.NewMethodBind("ColorPickerButton", "get_picker")
// Call the parent method.
// ColorPicker
retPtr := gdnative.NewEmptyObject()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
// If we have a return type, convert it from a pointer into its actual object.
ret := newColorPickerFromPointer(retPtr)
// Check to see if we already have an instance of this object in our Go instance registry.
if instance, ok := InstanceRegistry.Get(ret.GetBaseObject().ID()); ok {
return instance.(ColorPickerImplementer)
}
// Check to see what kind of class this is and create it. This is generally used with
// GetNode().
className := ret.GetClass()
if className != "ColorPicker" {
actualRet := getActualClass(className, ret.GetBaseObject())
return actualRet.(ColorPickerImplementer)
}
return &ret
}
/*
Returns the control's [PopupPanel] which allows you to connect to Popup Signals. This allows you to handle events when the ColorPicker is shown or hidden.
Args: [], Returns: PopupPanel
*/
func (o *ColorPickerButton) GetPopup() PopupPanelImplementer {
//log.Println("Calling ColorPickerButton.GetPopup()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 0, 0)
// Get the method bind
methodBind := gdnative.NewMethodBind("ColorPickerButton", "get_popup")
// Call the parent method.
// PopupPanel
retPtr := gdnative.NewEmptyObject()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
// If we have a return type, convert it from a pointer into its actual object.
ret := newPopupPanelFromPointer(retPtr)
// Check to see if we already have an instance of this object in our Go instance registry.
if instance, ok := InstanceRegistry.Get(ret.GetBaseObject().ID()); ok {
return instance.(PopupPanelImplementer)
}
// Check to see what kind of class this is and create it. This is generally used with
// GetNode().
className := ret.GetClass()
if className != "PopupPanel" {
actualRet := getActualClass(className, ret.GetBaseObject())
return actualRet.(PopupPanelImplementer)
}
return &ret
}
/*
Undocumented
Args: [], Returns: bool
*/
func (o *ColorPickerButton) IsEditingAlpha() gdnative.Bool {
//log.Println("Calling ColorPickerButton.IsEditingAlpha()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 0, 0)
// Get the method bind
methodBind := gdnative.NewMethodBind("ColorPickerButton", "is_editing_alpha")
// Call the parent method.
// bool
retPtr := gdnative.NewEmptyBool()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
// If we have a return type, convert it from a pointer into its actual object.
ret := gdnative.NewBoolFromPointer(retPtr)
return ret
}
/*
Undocumented
Args: [{ false show bool}], Returns: void
*/
func (o *ColorPickerButton) SetEditAlpha(show gdnative.Bool) {
//log.Println("Calling ColorPickerButton.SetEditAlpha()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 1, 1)
ptrArguments[0] = gdnative.NewPointerFromBool(show)
// Get the method bind
methodBind := gdnative.NewMethodBind("ColorPickerButton", "set_edit_alpha")
// Call the parent method.
// void
retPtr := gdnative.NewEmptyVoid()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
}
/*
Undocumented
Args: [{ false color Color}], Returns: void
*/
func (o *ColorPickerButton) SetPickColor(color gdnative.Color) {
//log.Println("Calling ColorPickerButton.SetPickColor()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 1, 1)
ptrArguments[0] = gdnative.NewPointerFromColor(color)
// Get the method bind
methodBind := gdnative.NewMethodBind("ColorPickerButton", "set_pick_color")
// Call the parent method.
// void
retPtr := gdnative.NewEmptyVoid()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
}
// ColorPickerButtonImplementer is an interface that implements the methods
// of the ColorPickerButton class.
type ColorPickerButtonImplementer interface {
ButtonImplementer
X_ColorChanged(arg0 gdnative.Color)
GetPickColor() gdnative.Color
GetPicker() ColorPickerImplementer
GetPopup() PopupPanelImplementer
IsEditingAlpha() gdnative.Bool
SetEditAlpha(show gdnative.Bool)
SetPickColor(color gdnative.Color)
}