예제 #1
0
파일: pango.go 프로젝트: norisatir/go-gtk3
func (self *FontDescription) GetFamily() string {
	s := C.pango_font_description_get_family(self.object)
	if s != nil {
		return gobject.GoString(unsafe.Pointer(s))
	}
	return ""
}
예제 #2
0
파일: pango.go 프로젝트: norisatir/go-gtk3
func (self *FontDescription) ToFilename() string {
	s := C.pango_font_description_to_filename(self.object)

	if s != nil {
		return gobject.GoString(unsafe.Pointer(s))
	}
	return ""
}
예제 #3
0
파일: gdk3.go 프로젝트: jkeys089/go-gtk3
func (self Atom) Name() string {
	if self.object == nil {
		return ""
	}

	s := C.gdk_atom_name(*self.object)
	return gobject.GoString(unsafe.Pointer(s))
}
예제 #4
0
파일: button.go 프로젝트: napsy/go-gtk3
func (self *Button) GetLabel() string {
	l := C.gtk_button_get_label(self.object)
	return gobject.GoString(unsafe.Pointer(l))
}
예제 #5
0
파일: widget.go 프로젝트: napsy/go-gtk3
func (self *Widget) GetName() string {
	n := gobject.GetProperty(self, "name")
	defer n.Free()
	return gobject.GoString(n.GetPtr())
}
예제 #6
0
파일: entry.go 프로젝트: napsy/go-gtk3
func (self *Entry) GetText() string {
	l := C.gtk_entry_get_text(self.object)
	return gobject.GoString(unsafe.Pointer(l))
}
예제 #7
0
파일: label.go 프로젝트: napsy/go-gtk3
func (self *Label) GetCurrentURI() string {
	uri := C.gtk_label_get_current_uri(self.object)
	return gobject.GoString(unsafe.Pointer(&uri))
}
예제 #8
0
파일: label.go 프로젝트: napsy/go-gtk3
func (self *Label) GetLabel() string {
	l := C.gtk_label_get_label(self.object)
	return gobject.GoString(unsafe.Pointer(&l))
}
예제 #9
0
파일: label.go 프로젝트: napsy/go-gtk3
func (self *Label) GetText() string {
	txt := C.gtk_label_get_text(self.object)
	return gobject.GoString(unsafe.Pointer(txt))
}
예제 #10
0
파일: window.go 프로젝트: napsy/go-gtk3
func (self *Window) GetTitle() string {
	t := gobject.GetProperty(self, "title")
	defer t.Free()
	return gobject.GoString(t.GetPtr())
}
예제 #11
0
파일: frame.go 프로젝트: napsy/go-gtk3
func (self *Frame) GetLabel() string {
	l := C.gtk_frame_get_label(self.object)
	return gobject.GoString(unsafe.Pointer(l))
}