func newLabel(text string) Label { l := &label{ controlSingleObject: newControlSingleObject(C.newLabel()), } l.SetText(text) return l }
func finishNewLabel(text string, standalone bool) *label { l := &label{ _id: C.newLabel(), standalone: standalone, } l.SetText(text) return l }