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
|
package pangoa
import (
"github.com/gotk3/gotk3/pango"
"github.com/twstrike/gotk3adapter/gliba"
)
func init() {
gliba.AddWrapper(WrapLocal)
gliba.AddUnwrapper(UnwrapLocal)
}
func WrapLocal(o interface{}) (interface{}, bool) {
switch oo := o.(type) {
case *pango.FontDescription:
val := wrapFontDescriptionSimple(oo)
if val == nil {
return nil, true
}
return val, true
default:
return nil, false
}
}
func UnwrapLocal(o interface{}) (interface{}, bool) {
switch oo := o.(type) {
case *fontDescription:
val := unwrapFontDescription(oo)
if val == nil {
return nil, true
}
return val, true
default:
return nil, false
}
}
|