예제 #1
0
파일: others.go 프로젝트: sqp/godock
// lost focus, setting back default text and color if needed.
func onTextDefaultFocusOut(widget *gtk.Entry, _ *gdk.Event, data textDefaultData) {
	text, _ := widget.GetText()
	data.key.IsDefault = text == ""
	if data.key.IsDefault {
		widget.HandlerBlock(data.cbID)
		widget.SetText(data.text)
		widget.HandlerUnblock(data.cbID)

		context, _ := widget.GetStyleContext()
		context.AddClass("DefaultValue")
	}
}
예제 #2
0
func getText(entry *gtk.Entry) string {
	text, _ := entry.GetText()
	return text
}