VideoTools/third_party/gotk3/pango/pango-attributes_since_1_44.go
Stu d4efa91ce1 Add vendored gotk3 GTK3 bindings for Go
Vendor gotk3 library to ensure consistent GTK3 bindings across
environments and simplify dependency management.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-15 05:40:43 -05:00

19 lines
385 B
Go

// +build !pango_1_36,!pango_1_38,!pango_1_40,!pango_1_42
package pango
// #include <pango/pango.h>
// #include "pango.go.h"
import "C"
var (
ATTR_INSERT_HYPHENS AttrType = C.PANGO_ATTR_INSERT_HYPHENS
)
func AttrInsertHyphensNew(insertHyphens bool) *Attribute {
c := C.pango_attr_insert_hyphens_new(gbool(insertHyphens))
attr := new(Attribute)
attr.internal = c
return attr
}