File: data_init.go

package info (click to toggle)
golang-github-twstrike-gotk3adapter 0.0~git20170505.0.901a95d%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,232 kB
  • sloc: ruby: 478; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package pangoa

import (
	"github.com/gotk3/gotk3/pango"
	"github.com/twstrike/gotk3adapter/pangoi"
)

func init() {
	pangoi.PANGO_SCALE = pango.PANGO_SCALE

	pangoi.UNDERLINE_NONE = int(pango.UNDERLINE_NONE)
	pangoi.UNDERLINE_SINGLE = int(pango.UNDERLINE_SINGLE)
	pangoi.UNDERLINE_DOUBLE = int(pango.UNDERLINE_DOUBLE)
	pangoi.UNDERLINE_LOW = int(pango.UNDERLINE_LOW)
	pangoi.UNDERLINE_ERROR = int(pango.UNDERLINE_ERROR)
}