コード例 #1
0
ファイル: pango-font.go プロジェクト: rosatolen/coyim
//PangoWeight          pango_font_description_get_weight        (const PangoFontDescription *desc) G_GNUC_PURE;
func (v *FontDescription) GetWeight() Weight {
	c := C.pango_font_description_get_weight(v.native())
	return Weight(c)
}
コード例 #2
0
ファイル: pango.go プロジェクト: pauldub/go-gtk3
func (self *FontDescription) GetWeight() int {
	return int(C.pango_font_description_get_weight(self.object))
}